Sideband_CE/sbapp/kivymd/uix/button/button.kv

222 lines
6.2 KiB
Plaintext
Raw Normal View History

2022-07-07 22:16:10 +02:00
<BaseButton>
canvas:
Clear
Color:
rgba:
2022-10-02 17:16:59 +02:00
self._md_bg_color \
2022-07-07 22:16:10 +02:00
if not self.disabled else \
2022-10-02 17:16:59 +02:00
self._md_bg_color_disabled
2022-07-07 22:16:10 +02:00
RoundedRectangle:
size: self.size
pos: self.pos
source: self.source if hasattr(self, "source") else ""
radius: [root._radius, ]
Color:
rgba:
2022-10-02 17:16:59 +02:00
root._line_color \
2022-07-07 22:16:10 +02:00
if not root.disabled else \
2022-10-02 17:16:59 +02:00
(root._line_color_disabled or self._disabled_color)
2022-07-07 22:16:10 +02:00
Line:
width: root.line_width
rounded_rectangle:
2022-10-02 17:16:59 +02:00
( \
self.x, self.y, self.width, self.height, \
2022-07-07 22:16:10 +02:00
root._radius, root._radius, root._radius, root._radius, \
2022-10-02 17:16:59 +02:00
self.height \
)
2022-07-07 22:16:10 +02:00
size_hint: None, None
anchor_x: root.halign
anchor_y: root.valign
_round_rad: [self._radius] * 4
<ButtonContentsText>
lbl_txt: lbl_txt
width:
2022-10-02 17:16:59 +02:00
max( \
root._min_width, \
root.padding[0] + lbl_txt.texture_size[0] + root.padding[2] \
)
2022-07-07 22:16:10 +02:00
size_hint_min_x:
2022-10-02 17:16:59 +02:00
max( \
root._min_width, \
root.padding[0] + lbl_txt.texture_size[0] + root.padding[2] \
)
2022-07-07 22:16:10 +02:00
height:
2022-10-02 17:16:59 +02:00
max( \
root._min_height, \
root.padding[1] + lbl_txt.texture_size[1] + root.padding[3] \
)
2022-07-07 22:16:10 +02:00
size_hint_min_y:
2022-10-02 17:16:59 +02:00
max( \
root._min_height, \
root.padding[1] + lbl_txt.texture_size[1] + root.padding[3] \
)
2022-07-07 22:16:10 +02:00
MDLabel:
id: lbl_txt
text: root.text
font_size: root.font_size
font_style: root.font_style
halign: 'center'
valign: 'middle'
adaptive_size: True
-text_size: None, None
theme_text_color: root._theme_text_color
text_color: root._text_color
markup: True
disabled: root.disabled
opposite_colors: root.opposite_colors
font_name: root.font_name if root.font_name else self.font_name
<ButtonContentsIcon>
lbl_ic: lbl_ic
size: "48dp", "48dp"
padding: "12dp" if root.icon in md_icons else (0, 0, 0, 0)
# Backwards compatibility.
theme_icon_color: root.theme_icon_color or root.theme_text_color
MDIcon:
id: lbl_ic
icon: root.icon
font_size: root.icon_size if root.icon_size else self.font_size
font_name: root.font_name if root.font_name else self.font_name
opposite_colors: root.opposite_colors
text_color:
# FIXME: ValueError: None is not allowed for MDIcon.text_color.
# This is only a temporary fix and does not fix the cause of the error.
(root._icon_color if root._icon_color else root.theme_cls.text_color) \
if not root.disabled else \
2022-10-02 17:16:59 +02:00
root.theme_cls.disabled_hint_text_color \
if not root.disabled_color else \
root.disabled_color
2022-07-07 22:16:10 +02:00
on_icon:
if self.icon not in md_icons.keys(): self.size_hint = (1, 1)
theme_text_color: root._theme_icon_color
<ButtonContentsIconText>
lbl_txt: lbl_txt
lbl_ic: lbl_ic
width:
max( \
root._min_width, \
root.padding[0] \
+ lbl_ic.texture_size[0] \
+ box.spacing \
+ lbl_txt.texture_size[0] \
+ root.padding[2] \
)
size_hint_min_x:
max( \
root._min_width, \
root.padding[0] \
+ lbl_ic.texture_size[0] \
+ box.spacing \
+ lbl_txt.texture_size[0] \
+ root.padding[2] \
)
height:
max( \
root._min_height, \
root.padding[1] \
+ max(lbl_ic.texture_size[1], lbl_txt.texture_size[1]) \
+ root.padding[3] \
)
size_hint_min_y:
max( \
root._min_height, \
root.padding[1] \
+ max(lbl_ic.texture_size[1], lbl_txt.texture_size[1]) \
+ root.padding[3] \
)
MDBoxLayout:
id: box
adaptive_size: True
padding: 0
2022-10-02 17:16:59 +02:00
spacing: "8dp"
2022-07-07 22:16:10 +02:00
MDIcon:
id: lbl_ic
size_hint_x: None
pos_hint: {"center_y": .5}
icon: root.icon
opposite_colors: root.opposite_colors
font_size:
root.icon_size \
if root.icon_size else \
(18 / 14 * lbl_txt.font_size)
text_color:
root._icon_color \
if not root.disabled else \
root.theme_cls.disabled_hint_text_color
theme_text_color: root._theme_icon_color
MDLabel:
id: lbl_txt
adaptive_size: True
-text_size: None, None
pos_hint: {"center_y": .5}
halign: 'center'
valign: 'middle'
text: root.text
font_size: root.font_size
font_style: root.font_style
font_name: root.font_name if root.font_name else self.font_name
theme_text_color: root._theme_text_color
text_color: root._text_color
markup: True
disabled: root.disabled
opposite_colors: root.opposite_colors
<MDTextButton>
adaptive_size: True
color: root.theme_cls.primary_color if not root.color else root.color
opacity: 1
<BaseFloatingBottomButton>
theme_text_color: "Custom"
md_bg_color: self.theme_cls.primary_color
canvas.before:
Color:
rgba:
self.theme_cls.primary_color \
if not self._bg_color else \
self._bg_color
RoundedRectangle:
pos:
(self.x - self._canvas_width + dp(1.5)) + self._padding_right / 2, \
self.y - self._padding_right / 2 + dp(1.5)
size:
self.width + self._canvas_width - dp(3), \
self.height + self._padding_right - dp(3)
radius: [self.height / 2]
2022-10-02 17:16:59 +02:00
<MDFloatingRootButton>
2022-07-07 22:16:10 +02:00
theme_text_color: "Custom"
md_bg_color: self.theme_cls.primary_color
2022-10-02 17:16:59 +02:00
<MDFloatingLabel>
padding_x: "8dp"
padding_y: "8dp"
adaptive_size: True
theme_text_color: "Custom"
canvas.before:
2022-07-07 22:16:10 +02:00
Color:
2022-10-02 17:16:59 +02:00
rgba: self.bg_color
2022-07-07 22:16:10 +02:00
RoundedRectangle:
size: self.size
2022-10-02 17:16:59 +02:00
pos: self.pos
radius: self.radius