Table Of Contents
Source code for kivy.uix.checkbox
"""
CheckBox
========
.. versionadded:: 1.4.0
.. image:: images/checkbox.png
:align: right
:class:`CheckBox` is a specific two-state button that can be either checked or
unchecked. If the CheckBox is in a Group, it becomes a Radio button.
As with the :class:`~kivy.uix.togglebutton.ToggleButton`, only one Radio button
at a time can be selected when the :attr:`CheckBox.group` is set.
An example usage::
from kivy.uix.checkbox import CheckBox
# ...
def on_checkbox_active(checkbox, value):
if value:
print('The checkbox', checkbox, 'is activated')
else:
print('The checkbox', checkbox, 'is inactive')
checkbox = CheckBox()
checkbox.bind(activated=on_checkbox_active)
"""
__all__ = ("CheckBox",)
from kivy.properties import StringProperty, ColorProperty
from kivy.uix.behaviors import ToggleButtonBehavior
from kivy.uix.widget import Widget
[docs]
class CheckBox(ToggleButtonBehavior, Widget):
"""CheckBox class, see module documentation for more information."""
# NOTE: 'activated' property is inherited from ToggleButtonBehavior
# No need to redefine it here anymore in Kivy 3.x
background_checkbox_normal = StringProperty(
"atlas://data/images/defaulttheme/checkbox_off"
)
"""Background image of the checkbox used for the default graphical
representation when the checkbox is not activated.
.. versionadded:: 1.9.0
:attr:`background_checkbox_normal` is a
:class:`~kivy.properties.StringProperty` and defaults to
'atlas://data/images/defaulttheme/checkbox_off'.
"""
background_checkbox_down = StringProperty(
"atlas://data/images/defaulttheme/checkbox_on"
)
"""Background image of the checkbox used for the default graphical
representation when the checkbox is activated.
.. versionadded:: 1.9.0
:attr:`background_checkbox_down` is a
:class:`~kivy.properties.StringProperty` and defaults to
'atlas://data/images/defaulttheme/checkbox_on'.
"""
background_checkbox_disabled_normal = StringProperty(
"atlas://data/images/defaulttheme/checkbox_disabled_off"
)
"""Background image of the checkbox used for the default graphical
representation when the checkbox is disabled and not activated.
.. versionadded:: 1.9.0
:attr:`background_checkbox_disabled_normal` is a
:class:`~kivy.properties.StringProperty` and defaults to
'atlas://data/images/defaulttheme/checkbox_disabled_off'.
"""
background_checkbox_disabled_down = StringProperty(
"atlas://data/images/defaulttheme/checkbox_disabled_on"
)
"""Background image of the checkbox used for the default graphical
representation when the checkbox is disabled and activated.
.. versionadded:: 1.9.0
:attr:`background_checkbox_disabled_down` is a
:class:`~kivy.properties.StringProperty` and defaults to
'atlas://data/images/defaulttheme/checkbox_disabled_on'.
"""
background_radio_normal = StringProperty(
"atlas://data/images/defaulttheme/checkbox_radio_off"
)
"""Background image of the radio button used for the default graphical
representation when the radio button is not activated.
.. versionadded:: 1.9.0
:attr:`background_radio_normal` is a
:class:`~kivy.properties.StringProperty` and defaults to
'atlas://data/images/defaulttheme/checkbox_radio_off'.
"""
background_radio_down = StringProperty(
"atlas://data/images/defaulttheme/checkbox_radio_on"
)
"""Background image of the radio button used for the default graphical
representation when the radio button is activated.
.. versionadded:: 1.9.0
:attr:`background_radio_down` is a
:class:`~kivy.properties.StringProperty` and defaults to
'atlas://data/images/defaulttheme/checkbox_radio_on'.
"""
background_radio_disabled_normal = StringProperty(
"atlas://data/images/defaulttheme/checkbox_radio_disabled_off"
)
"""Background image of the radio button used for the default graphical
representation when the radio button is disabled and not activated.
.. versionadded:: 1.9.0
:attr:`background_radio_disabled_normal` is a
:class:`~kivy.properties.StringProperty` and defaults to
'atlas://data/images/defaulttheme/checkbox_radio_disabled_off'.
"""
background_radio_disabled_down = StringProperty(
"atlas://data/images/defaulttheme/checkbox_radio_disabled_on"
)
"""Background image of the radio button used for the default graphical
representation when the radio button is disabled and activated.
.. versionadded:: 1.9.0
:attr:`background_radio_disabled_down` is a
:class:`~kivy.properties.StringProperty` and defaults to
'atlas://data/images/defaulttheme/checkbox_radio_disabled_on'.
"""
color = ColorProperty([1, 1, 1, 1])
"""Color is used for tinting the default graphical representation
of checkbox and radio button (images).
Color is in the format (r, g, b, a).
.. versionadded:: 1.10.0
:attr:`color` is a
:class:`~kivy.properties.ColorProperty` and defaults to
'[1, 1, 1, 1]'.
.. versionchanged:: 2.0.0
Changed from :class:`~kivy.properties.ListProperty` to
:class:`~kivy.properties.ColorProperty`.
"""
if __name__ == "__main__":
from random import uniform
from kivy.base import runTouchApp
from kivy.uix.gridlayout import GridLayout
x = GridLayout(cols=4)
for i in range(36):
r, g, b = [uniform(0.2, 1.0) for j in range(3)]
x.add_widget(CheckBox(group="1" if i % 2 else "", color=[r, g, b, 2]))
runTouchApp(x)