2022-07-07 22:16:10 +02:00
|
|
|
"""
|
|
|
|
Components/SelectionControls
|
|
|
|
============================
|
|
|
|
|
|
|
|
.. seealso::
|
|
|
|
|
|
|
|
`Material Design spec, Selection controls <https://material.io/components/selection-controls>`_
|
|
|
|
|
|
|
|
.. rubric:: Selection controls allow the user to select options.
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/selection-controll.png
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
`KivyMD` provides the following selection controls classes for use:
|
|
|
|
|
|
|
|
- MDCheckbox_
|
|
|
|
- MDSwitch_
|
|
|
|
|
|
|
|
.. MDCheckbox:
|
|
|
|
MDCheckbox
|
|
|
|
----------
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
from kivy.lang import Builder
|
|
|
|
|
|
|
|
from kivymd.app import MDApp
|
|
|
|
|
|
|
|
|
|
|
|
KV = '''
|
|
|
|
MDFloatLayout:
|
|
|
|
|
|
|
|
MDCheckbox:
|
|
|
|
size_hint: None, None
|
|
|
|
size: "48dp", "48dp"
|
|
|
|
pos_hint: {'center_x': .5, 'center_y': .5}
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
class Test(MDApp):
|
|
|
|
def build(self):
|
|
|
|
return Builder.load_string(KV)
|
|
|
|
|
|
|
|
|
|
|
|
Test().run()
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/checkbox.gif
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
.. Note:: Be sure to specify the size of the checkbox. By default, it is
|
|
|
|
``(dp(48), dp(48))``, but the ripple effect takes up all the available
|
|
|
|
space.
|
|
|
|
|
|
|
|
Control state
|
|
|
|
-------------
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
MDCheckbox:
|
|
|
|
on_active: app.on_checkbox_active(*args)
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
def on_checkbox_active(self, checkbox, value):
|
|
|
|
if value:
|
|
|
|
print('The checkbox', checkbox, 'is active', 'and', checkbox.state, 'state')
|
|
|
|
else:
|
|
|
|
print('The checkbox', checkbox, 'is inactive', 'and', checkbox.state, 'state')
|
|
|
|
|
|
|
|
MDCheckbox with group
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
from kivy.lang import Builder
|
|
|
|
|
|
|
|
from kivymd.app import MDApp
|
|
|
|
|
|
|
|
KV = '''
|
|
|
|
<Check@MDCheckbox>:
|
|
|
|
group: 'group'
|
|
|
|
size_hint: None, None
|
|
|
|
size: dp(48), dp(48)
|
|
|
|
|
|
|
|
|
|
|
|
MDFloatLayout:
|
|
|
|
|
|
|
|
Check:
|
|
|
|
active: True
|
|
|
|
pos_hint: {'center_x': .4, 'center_y': .5}
|
|
|
|
|
|
|
|
Check:
|
|
|
|
pos_hint: {'center_x': .6, 'center_y': .5}
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
class Test(MDApp):
|
|
|
|
def build(self):
|
|
|
|
return Builder.load_string(KV)
|
|
|
|
|
|
|
|
|
|
|
|
Test().run()
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/checkbox-group.gif
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
.. MDSwitch:
|
|
|
|
MDSwitch
|
|
|
|
--------
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
from kivy.lang import Builder
|
|
|
|
|
|
|
|
from kivymd.app import MDApp
|
|
|
|
|
|
|
|
KV = '''
|
|
|
|
MDFloatLayout:
|
|
|
|
|
|
|
|
MDSwitch:
|
|
|
|
pos_hint: {'center_x': .5, 'center_y': .5}
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
class Test(MDApp):
|
|
|
|
def build(self):
|
|
|
|
return Builder.load_string(KV)
|
|
|
|
|
|
|
|
|
|
|
|
Test().run()
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/md-switch.gif
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
.. Note:: For :class:`~MDSwitch` size is not required. By default it is
|
|
|
|
``(dp(36), dp(48))``, but you can increase the width if you want.
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
MDSwitch:
|
|
|
|
width: dp(64)
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/md-switch_width.png
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
.. Note:: Control state of :class:`~MDSwitch` same way as in
|
|
|
|
:class:`~MDCheckbox`.
|
2022-10-02 17:16:59 +02:00
|
|
|
|
|
|
|
MDSwitch in M3 style
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
from kivy.lang import Builder
|
|
|
|
|
|
|
|
from kivymd.app import MDApp
|
|
|
|
|
|
|
|
KV = '''
|
|
|
|
MDScreen:
|
|
|
|
|
|
|
|
MDSwitch:
|
|
|
|
pos_hint: {'center_x': .5, 'center_y': .5}
|
|
|
|
active: True
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
class Test(MDApp):
|
|
|
|
def build(self):
|
|
|
|
self.theme_cls.material_style = "M3"
|
|
|
|
return Builder.load_string(KV)
|
|
|
|
|
|
|
|
|
|
|
|
Test().run()
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/checkbox-m3.gif
|
|
|
|
:align: center
|
2022-07-07 22:16:10 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
__all__ = ("MDCheckbox", "MDSwitch")
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
from kivy.animation import Animation
|
|
|
|
from kivy.clock import Clock
|
|
|
|
from kivy.lang import Builder
|
|
|
|
from kivy.metrics import dp, sp
|
|
|
|
from kivy.properties import (
|
|
|
|
BooleanProperty,
|
|
|
|
ColorProperty,
|
|
|
|
ListProperty,
|
|
|
|
StringProperty,
|
|
|
|
)
|
2022-10-02 17:16:59 +02:00
|
|
|
from kivy.uix.behaviors import ToggleButtonBehavior
|
2022-07-07 22:16:10 +02:00
|
|
|
from kivy.uix.floatlayout import FloatLayout
|
|
|
|
|
|
|
|
from kivymd import uix_path
|
|
|
|
from kivymd.theming import ThemableBehavior
|
2022-10-08 17:17:59 +02:00
|
|
|
from kivymd.uix.behaviors import CircularRippleBehavior, CommonElevationBehavior
|
2022-10-02 17:16:59 +02:00
|
|
|
from kivymd.uix.floatlayout import MDFloatLayout
|
2022-07-07 22:16:10 +02:00
|
|
|
from kivymd.uix.label import MDIcon
|
|
|
|
|
|
|
|
with open(
|
|
|
|
os.path.join(uix_path, "selectioncontrol", "selectioncontrol.kv"),
|
|
|
|
encoding="utf-8",
|
|
|
|
) as kv_file:
|
|
|
|
Builder.load_string(kv_file.read())
|
|
|
|
|
|
|
|
|
|
|
|
class MDCheckbox(CircularRippleBehavior, ToggleButtonBehavior, MDIcon):
|
|
|
|
active = BooleanProperty(False)
|
|
|
|
"""
|
|
|
|
Indicates if the checkbox is active or inactive.
|
|
|
|
|
|
|
|
:attr:`active` is a :class:`~kivy.properties.BooleanProperty`
|
|
|
|
and defaults to `False`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
checkbox_icon_normal = StringProperty("checkbox-blank-outline")
|
|
|
|
"""
|
|
|
|
Background icon of the checkbox used for the default graphical
|
|
|
|
representation when the checkbox is not pressed.
|
|
|
|
|
|
|
|
:attr:`checkbox_icon_normal` is a :class:`~kivy.properties.StringProperty`
|
|
|
|
and defaults to `'checkbox-blank-outline'`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
checkbox_icon_down = StringProperty("checkbox-marked")
|
|
|
|
"""
|
|
|
|
Background icon of the checkbox used for the default graphical
|
|
|
|
representation when the checkbox is pressed.
|
|
|
|
|
|
|
|
:attr:`checkbox_icon_down` is a :class:`~kivy.properties.StringProperty`
|
|
|
|
and defaults to `'checkbox-marked'`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
radio_icon_normal = StringProperty("checkbox-blank-circle-outline")
|
|
|
|
"""
|
|
|
|
Background icon (when using the ``group`` option) of the checkbox used for
|
|
|
|
the default graphical representation when the checkbox is not pressed.
|
|
|
|
|
|
|
|
:attr:`radio_icon_normal` is a :class:`~kivy.properties.StringProperty`
|
|
|
|
and defaults to `'checkbox-blank-circle-outline'`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
radio_icon_down = StringProperty("checkbox-marked-circle")
|
|
|
|
"""
|
|
|
|
Background icon (when using the ``group`` option) of the checkbox used for
|
|
|
|
the default graphical representation when the checkbox is pressed.
|
|
|
|
|
|
|
|
:attr:`radio_icon_down` is a :class:`~kivy.properties.StringProperty`
|
|
|
|
and defaults to `'checkbox-marked-circle'`.
|
|
|
|
"""
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
color_active = ColorProperty(None)
|
2022-07-07 22:16:10 +02:00
|
|
|
"""
|
2022-10-02 17:16:59 +02:00
|
|
|
Color when the checkbox is in the active state.
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. versionadded:: 1.0.0
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
MDCheckbox:
|
|
|
|
color_active: "red"
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/checkbox-color-active.png
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
:attr:`color_active` is a :class:`~kivy.properties.ColorProperty`
|
2022-07-07 22:16:10 +02:00
|
|
|
and defaults to `None`.
|
|
|
|
"""
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
color_inactive = ColorProperty(None)
|
2022-07-07 22:16:10 +02:00
|
|
|
"""
|
2022-10-02 17:16:59 +02:00
|
|
|
Color when the checkbox is in the inactive state.
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. versionadded:: 1.0.0
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
MDCheckbox:
|
|
|
|
color_inactive: "blue"
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/checkbox-color-inactive.png
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
:attr:`color_inactive` is a :class:`~kivy.properties.ColorProperty`
|
2022-07-07 22:16:10 +02:00
|
|
|
and defaults to `None`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
disabled_color = ColorProperty(None)
|
|
|
|
"""
|
2022-10-02 17:16:59 +02:00
|
|
|
Color when the checkbox is in the disabled state.
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
MDCheckbox:
|
|
|
|
disabled_color: "lightgrey"
|
|
|
|
disabled: True
|
|
|
|
active: True
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/checkbox-disabled-color.png
|
|
|
|
:align: center
|
2022-07-07 22:16:10 +02:00
|
|
|
|
|
|
|
:attr:`disabled_color` is a :class:`~kivy.properties.ColorProperty`
|
|
|
|
and defaults to `None`.
|
|
|
|
"""
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
# Deprecated property.
|
|
|
|
|
|
|
|
selected_color = ColorProperty(None, deprecated=True)
|
|
|
|
"""
|
|
|
|
Color when the checkbox is in the active state.
|
|
|
|
|
|
|
|
.. deprecated:: 1.0.0
|
|
|
|
Use :attr:`color_active` instead.
|
|
|
|
|
|
|
|
:attr:`selected_color` is a :class:`~kivy.properties.ColorProperty`
|
|
|
|
and defaults to `None`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
unselected_color = ColorProperty(None, deprecated=True)
|
|
|
|
"""
|
|
|
|
Color when the checkbox is in the inactive state.
|
|
|
|
|
|
|
|
.. deprecated:: 1.0.0
|
|
|
|
Use :attr:`color_inactive` instead.
|
|
|
|
|
|
|
|
:attr:`unselected_color` is a :class:`~kivy.properties.ColorProperty`
|
|
|
|
and defaults to `None`.
|
|
|
|
"""
|
|
|
|
|
2022-07-07 22:16:10 +02:00
|
|
|
_current_color = ColorProperty([0.0, 0.0, 0.0, 0.0])
|
|
|
|
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
self.check_anim_out = Animation(font_size=0, duration=0.1, t="out_quad")
|
|
|
|
self.check_anim_in = Animation(
|
|
|
|
font_size=sp(24), duration=0.1, t="out_quad"
|
|
|
|
)
|
|
|
|
super().__init__(**kwargs)
|
2022-10-02 17:16:59 +02:00
|
|
|
self.color_active = self.theme_cls.primary_color
|
|
|
|
self.color_inactive = self.theme_cls.secondary_text_color
|
2022-07-07 22:16:10 +02:00
|
|
|
self.disabled_color = self.theme_cls.divider_color
|
2022-10-02 17:16:59 +02:00
|
|
|
self._current_color = self.color_inactive
|
2022-07-07 22:16:10 +02:00
|
|
|
self.check_anim_out.bind(
|
|
|
|
on_complete=lambda *x: self.check_anim_in.start(self)
|
|
|
|
)
|
|
|
|
self.bind(
|
|
|
|
checkbox_icon_normal=self.update_icon,
|
|
|
|
checkbox_icon_down=self.update_icon,
|
|
|
|
radio_icon_normal=self.update_icon,
|
|
|
|
radio_icon_down=self.update_icon,
|
|
|
|
group=self.update_icon,
|
2022-10-02 17:16:59 +02:00
|
|
|
color_active=self.update_color,
|
|
|
|
color_inactive=self.update_color,
|
2022-07-07 22:16:10 +02:00
|
|
|
disabled_color=self.update_color,
|
|
|
|
disabled=self.update_color,
|
|
|
|
state=self.update_color,
|
|
|
|
)
|
2022-10-08 17:17:59 +02:00
|
|
|
self.theme_cls.bind(
|
|
|
|
theme_style=self.update_primary_color,
|
|
|
|
primary_color=self.update_primary_color,
|
|
|
|
)
|
2022-07-07 22:16:10 +02:00
|
|
|
self.update_icon()
|
|
|
|
self.update_color()
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
def update_primary_color(self, instance, value) -> None:
|
2022-07-07 22:16:10 +02:00
|
|
|
if value in ("Dark", "Light"):
|
|
|
|
if not self.disabled:
|
|
|
|
self.color = self.theme_cls.primary_color
|
|
|
|
else:
|
|
|
|
self.color = self.disabled_color
|
|
|
|
else:
|
2022-10-02 17:16:59 +02:00
|
|
|
self.color_active = value
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
def update_icon(self, *args) -> None:
|
2022-07-07 22:16:10 +02:00
|
|
|
if self.state == "down":
|
|
|
|
self.icon = (
|
|
|
|
self.radio_icon_down if self.group else self.checkbox_icon_down
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
self.icon = (
|
|
|
|
self.radio_icon_normal
|
|
|
|
if self.group
|
|
|
|
else self.checkbox_icon_normal
|
|
|
|
)
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
def update_color(self, *args) -> None:
|
2022-07-07 22:16:10 +02:00
|
|
|
if self.disabled:
|
|
|
|
self._current_color = self.disabled_color
|
|
|
|
elif self.state == "down":
|
2022-10-02 17:16:59 +02:00
|
|
|
self._current_color = self.color_active
|
2022-07-07 22:16:10 +02:00
|
|
|
else:
|
2022-10-02 17:16:59 +02:00
|
|
|
self._current_color = self.color_inactive
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
def on_state(self, *args) -> None:
|
2022-07-07 22:16:10 +02:00
|
|
|
if self.state == "down":
|
|
|
|
self.check_anim_in.cancel(self)
|
|
|
|
self.check_anim_out.start(self)
|
|
|
|
self.update_icon()
|
|
|
|
if self.group:
|
|
|
|
self._release_group(self)
|
|
|
|
self.active = True
|
|
|
|
else:
|
|
|
|
self.check_anim_in.cancel(self)
|
|
|
|
if not self.group:
|
|
|
|
self.check_anim_out.start(self)
|
|
|
|
self.update_icon()
|
|
|
|
self.active = False
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
def on_active(self, *args) -> None:
|
2022-07-07 22:16:10 +02:00
|
|
|
self.state = "down" if self.active else "normal"
|
|
|
|
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
class ThumbIcon(MDIcon):
|
|
|
|
"""
|
|
|
|
Implements icon for the :class:`~Thumb` widget.
|
|
|
|
|
|
|
|
.. versionadded:: 1.0.0
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2022-07-07 22:16:10 +02:00
|
|
|
class Thumb(
|
2022-10-08 17:17:59 +02:00
|
|
|
CommonElevationBehavior,
|
2022-07-07 22:16:10 +02:00
|
|
|
CircularRippleBehavior,
|
2022-10-02 17:16:59 +02:00
|
|
|
MDFloatLayout,
|
2022-07-07 22:16:10 +02:00
|
|
|
):
|
|
|
|
"""
|
2022-10-02 17:16:59 +02:00
|
|
|
Implements a thumb for the :class:`~MDSwitch` widget.
|
2022-07-07 22:16:10 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
def _set_ellipse(self, instance, value):
|
|
|
|
self.ellipse.size = (self._ripple_rad, self._ripple_rad)
|
|
|
|
if self.ellipse.size[0] > self.width * 1.5 and not self._fading_out:
|
|
|
|
self.fade_out()
|
|
|
|
self.ellipse.pos = (
|
|
|
|
self.center_x - self._ripple_rad / 2.0,
|
|
|
|
self.center_y - self._ripple_rad / 2.0,
|
|
|
|
)
|
|
|
|
self.stencil.pos = (
|
|
|
|
self.center_x - (self.width * self.ripple_scale) / 2,
|
|
|
|
self.center_y - (self.height * self.ripple_scale) / 2,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
class MDSwitch(ThemableBehavior, FloatLayout):
|
2022-07-07 22:16:10 +02:00
|
|
|
active = BooleanProperty(False)
|
|
|
|
"""
|
|
|
|
Indicates if the switch is active or inactive.
|
|
|
|
|
|
|
|
:attr:`active` is a :class:`~kivy.properties.BooleanProperty`
|
|
|
|
and defaults to `False`.
|
|
|
|
"""
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
icon_active = StringProperty()
|
|
|
|
"""
|
|
|
|
Thumb icon when the switch is in the active state (only M3 style).
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. versionadded:: 1.0.0
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. code-block:: kv
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
MDSwitch:
|
|
|
|
active: True
|
|
|
|
icon_active: "check"
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/switch-icon-active.png
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
:attr:`icon_active` is a :class:`~kivy.properties.StringProperty`
|
|
|
|
and defaults to `''`.
|
2022-07-07 22:16:10 +02:00
|
|
|
"""
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
icon_inactive = StringProperty()
|
2022-07-07 22:16:10 +02:00
|
|
|
"""
|
2022-10-02 17:16:59 +02:00
|
|
|
Thumb icon when the switch is in an inactive state (only M3 style).
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. versionadded:: 1.0.0
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. code-block:: kv
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
MDSwitch:
|
|
|
|
icon_inactive: "close"
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/switch-icon-inactive.png
|
|
|
|
:align: center
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
:attr:`icon_inactive` is a :class:`~kivy.properties.StringProperty`
|
|
|
|
and defaults to `''`.
|
2022-07-07 22:16:10 +02:00
|
|
|
"""
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
icon_active_color = ColorProperty(None)
|
2022-07-07 22:16:10 +02:00
|
|
|
"""
|
2022-10-02 17:16:59 +02:00
|
|
|
Thumb icon color when the switch is in the active state (only M3 style).
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. versionadded:: 1.0.0
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
MDSwitch:
|
|
|
|
active: True
|
|
|
|
icon_active: "check"
|
|
|
|
icon_active_color: "white"
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/switch-icon-active-color.png
|
|
|
|
:align: center
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
:attr:`icon_active_color` is a :class:`~kivy.properties.ColorProperty`
|
|
|
|
and defaults to `None`.
|
2022-07-07 22:16:10 +02:00
|
|
|
"""
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
icon_inactive_color = ColorProperty(None)
|
2022-07-07 22:16:10 +02:00
|
|
|
"""
|
2022-10-02 17:16:59 +02:00
|
|
|
Thumb icon color when the switch is in an inactive state (only M3 style).
|
|
|
|
|
|
|
|
.. versionadded:: 1.0.0
|
|
|
|
|
|
|
|
.. code-block:: kv
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
MDSwitch:
|
|
|
|
icon_inactive: "close"
|
|
|
|
icon_inactive_color: "grey"
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/switch-icon-inactive-color.png
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
:attr:`icon_inactive_color` is a :class:`~kivy.properties.ColorProperty`
|
|
|
|
and defaults to `None`.
|
2022-07-07 22:16:10 +02:00
|
|
|
"""
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
thumb_color_active = ColorProperty(None)
|
2022-07-07 22:16:10 +02:00
|
|
|
"""
|
2022-10-02 17:16:59 +02:00
|
|
|
The color of the thumb when the switch is active.
|
|
|
|
|
|
|
|
.. versionadded:: 1.0.0
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
MDSwitch:
|
|
|
|
active: True
|
|
|
|
thumb_color_active: "brown"
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/switch-thumb-color-active.png
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
:attr:`thumb_color_active` is an :class:`~kivy.properties.ColorProperty`
|
|
|
|
and default to `None`.
|
2022-07-07 22:16:10 +02:00
|
|
|
"""
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
thumb_color_inactive = ColorProperty(None)
|
2022-07-07 22:16:10 +02:00
|
|
|
"""
|
2022-10-02 17:16:59 +02:00
|
|
|
The color of the thumb when the switch is inactive.
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. versionadded:: 1.0.0
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. code-block:: kv
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
MDSwitch:
|
|
|
|
thumb_color_inactive: "brown"
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/switch-thumb-color-inactive.png
|
|
|
|
:align: center
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
:attr:`thumb_color_inactive` is an :class:`~kivy.properties.ColorProperty`
|
|
|
|
and default to `None`.
|
|
|
|
"""
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
thumb_color_disabled = ColorProperty(None)
|
|
|
|
"""
|
|
|
|
The color of the thumb when the switch is in the disabled state.
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. code-block:: kv
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
MDSwitch:
|
|
|
|
active: True
|
|
|
|
thumb_color_disabled: "brown"
|
|
|
|
disabled: True
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/switch-thumb-color-disabled.png
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
:attr:`thumb_color_disabled` is an :class:`~kivy.properties.ColorProperty`
|
|
|
|
and default to `None`.
|
|
|
|
"""
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
track_color_active = ColorProperty(None)
|
|
|
|
"""
|
|
|
|
The color of the track when the switch is active.
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
MDSwitch:
|
|
|
|
active: True
|
|
|
|
track_color_active: "red"
|
2022-07-07 22:16:10 +02:00
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/switch-track-color-active.png
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
:attr:`track_color_active` is an :class:`~kivy.properties.ColorProperty`
|
|
|
|
and default to `None`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
track_color_inactive = ColorProperty(None)
|
|
|
|
"""
|
|
|
|
The color of the track when the switch is inactive.
|
|
|
|
|
|
|
|
.. versionadded:: 1.0.0
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
MDSwitch:
|
|
|
|
track_color_inactive: "red"
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/switch-track-color-inactive.png
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
:attr:`track_color_inactive` is an :class:`~kivy.properties.ColorProperty`
|
|
|
|
and default to `None`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
track_color_disabled = ColorProperty(None)
|
|
|
|
"""
|
|
|
|
The color of the track when the switch is in the disabled state.
|
|
|
|
|
|
|
|
.. code-block:: kv
|
|
|
|
|
|
|
|
MDSwitch:
|
|
|
|
track_color_disabled: "lightgrey"
|
|
|
|
disabled: True
|
|
|
|
|
|
|
|
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/switch-track-color-disabled.png
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
:attr:`track_color_disabled` is an :class:`~kivy.properties.ColorProperty`
|
|
|
|
and default to `None`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
_thumb_pos = ListProperty([0, 0])
|
|
|
|
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
super().__init__(**kwargs)
|
|
|
|
self.bind(icon_active=self.set_icon, icon_inactive=self.set_icon)
|
|
|
|
self.size_hint = (None, None)
|
|
|
|
self.size = (dp(36), dp(48))
|
|
|
|
Clock.schedule_once(self._check_style)
|
|
|
|
Clock.schedule_once(lambda x: self._update_thumb_pos(animation=False))
|
|
|
|
Clock.schedule_once(lambda x: self.on_active(self, self.active))
|
|
|
|
|
|
|
|
def set_icon(self, instance_switch, icon_value: str) -> None:
|
|
|
|
def set_icon(*args):
|
|
|
|
icon = icon_value if icon_value else "blank"
|
|
|
|
self.ids.thumb.ids.icon.icon = icon
|
|
|
|
|
|
|
|
Clock.schedule_once(set_icon, 0.2)
|
|
|
|
|
|
|
|
def on_active(self, instance_switch, active_value: bool) -> None:
|
|
|
|
if self.theme_cls.material_style == "M3" and self.widget_style != "ios":
|
|
|
|
size = (
|
|
|
|
(
|
|
|
|
(dp(16), dp(16))
|
|
|
|
if not self.icon_inactive
|
|
|
|
else (dp(24), dp(24))
|
|
|
|
)
|
|
|
|
if not active_value
|
|
|
|
else (dp(24), dp(24))
|
|
|
|
)
|
|
|
|
icon = "blank"
|
|
|
|
color = (0, 0, 0, 0)
|
|
|
|
|
|
|
|
if self.icon_active and active_value:
|
|
|
|
icon = self.icon_active
|
|
|
|
color = (
|
|
|
|
self.icon_active_color
|
|
|
|
if self.icon_active_color
|
|
|
|
else self.theme_cls.text_color
|
|
|
|
)
|
|
|
|
elif self.icon_inactive and not active_value:
|
|
|
|
icon = self.icon_inactive
|
|
|
|
color = (
|
|
|
|
self.icon_inactive_color
|
|
|
|
if self.icon_inactive_color
|
|
|
|
else self.theme_cls.text_color
|
|
|
|
)
|
|
|
|
|
|
|
|
Animation(size=size, t="out_quad", d=0.2).start(self.ids.thumb)
|
|
|
|
Animation(color=color, t="out_quad", d=0.2).start(
|
|
|
|
self.ids.thumb.ids.icon
|
|
|
|
)
|
|
|
|
self.set_icon(self, icon)
|
|
|
|
|
|
|
|
self._update_thumb_pos()
|
|
|
|
|
|
|
|
# FIXME: If you move the cursor from the switch during the
|
|
|
|
# `on_touch_down` event, the animation of returning the thumb to
|
|
|
|
# the previous size does not work. The following code fixes this.
|
|
|
|
def on_thumb_down(self) -> None:
|
|
|
|
"""
|
|
|
|
Called at the on_touch_down event of the :class:`~Thumb` object.
|
|
|
|
Indicates the state of the switch "on/off" by an animation of
|
|
|
|
increasing the size of the thumb.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if self.widget_style != "ios" and self.theme_cls.material_style == "M3":
|
|
|
|
if self.active:
|
|
|
|
size = (dp(28), dp(28))
|
|
|
|
pos = (
|
|
|
|
self.ids.thumb.pos[0] - dp(2),
|
|
|
|
self.ids.thumb.pos[1] - dp(1.8),
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
size = (dp(26), dp(26))
|
|
|
|
pos = (
|
|
|
|
(
|
|
|
|
self.ids.thumb.pos[0] - dp(5),
|
|
|
|
self.ids.thumb.pos[1] - dp(5),
|
|
|
|
)
|
|
|
|
if not self.icon_inactive
|
|
|
|
else (
|
|
|
|
self.ids.thumb.pos[0] + dp(1),
|
|
|
|
self.ids.thumb.pos[1] - dp(1),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
Animation(size=size, pos=pos, t="out_quad", d=0.2).start(
|
|
|
|
self.ids.thumb
|
|
|
|
)
|
2022-07-07 22:16:10 +02:00
|
|
|
|
|
|
|
def _update_thumb_pos(self, *args, animation=True):
|
|
|
|
if self.active:
|
2022-10-02 17:16:59 +02:00
|
|
|
_thumb_pos = (
|
|
|
|
self.width
|
|
|
|
- (
|
|
|
|
dp(14)
|
|
|
|
if self.widget_style == "ios"
|
|
|
|
or self.theme_cls.material_style == "M2"
|
|
|
|
else dp(28)
|
|
|
|
),
|
|
|
|
self.height / 2
|
|
|
|
- (
|
|
|
|
dp(12)
|
|
|
|
if self.widget_style == "ios"
|
|
|
|
or self.theme_cls.material_style == "M2"
|
|
|
|
else dp(16)
|
|
|
|
),
|
|
|
|
)
|
2022-07-07 22:16:10 +02:00
|
|
|
else:
|
2022-10-02 17:16:59 +02:00
|
|
|
_thumb_pos = (
|
|
|
|
0 if not self.icon_inactive else dp(-14),
|
|
|
|
self.height / 2
|
|
|
|
- (
|
|
|
|
dp(12)
|
|
|
|
if self.widget_style == "ios"
|
|
|
|
or self.theme_cls.material_style == "M2"
|
|
|
|
else dp(16)
|
|
|
|
),
|
|
|
|
)
|
2022-07-07 22:16:10 +02:00
|
|
|
Animation.cancel_all(self, "_thumb_pos")
|
2022-10-02 17:16:59 +02:00
|
|
|
|
2022-07-07 22:16:10 +02:00
|
|
|
if animation:
|
|
|
|
Animation(_thumb_pos=_thumb_pos, duration=0.2, t="out_quad").start(
|
|
|
|
self
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
self._thumb_pos = _thumb_pos
|
|
|
|
|
2022-10-02 17:16:59 +02:00
|
|
|
def _check_style(self, *args):
|
|
|
|
if self.widget_style == "ios" or self.theme_cls.material_style == "M2":
|
|
|
|
self.set_icon(self, "")
|