Sideband_CE/sbapp/kivymd/uix/widget.py

52 lines
1.0 KiB
Python
Raw Normal View History

2022-07-07 22:16:10 +02:00
"""
Components/Widget
=================
:class:`~kivy.uix.widget.Widget` class equivalent. Simplifies working
with some widget properties. For example:
Widget
------
2022-10-02 17:16:59 +02:00
.. code-block:: kv
2022-07-07 22:16:10 +02:00
Widget:
size_hint: .5, None
height: self.width
canvas:
Color:
rgba: app.theme_cls.primary_color
RoundedRectangle:
pos: self.pos
size: self.size
radius: [self.height / 2,]
MDWidget
--------
2022-10-02 17:16:59 +02:00
.. code-block:: kv
2022-07-07 22:16:10 +02:00
MDWidget:
size_hint: .5, None
height: self.width
radius: self.height / 2
md_bg_color: app.theme_cls.primary_color
"""
2022-10-02 17:16:59 +02:00
__all__ = ("MDWidget",)
2022-10-08 17:17:59 +02:00
from kivy.uix.widget import Widget
2023-07-10 02:49:58 +02:00
from kivymd.theming import ThemableBehavior
2022-07-07 22:16:10 +02:00
from kivymd.uix import MDAdaptiveWidget
2022-10-02 17:16:59 +02:00
from kivymd.uix.behaviors import DeclarativeBehavior
2022-07-07 22:16:10 +02:00
2023-07-10 02:49:58 +02:00
class MDWidget(DeclarativeBehavior, ThemableBehavior, MDAdaptiveWidget, Widget):
2022-07-07 22:16:10 +02:00
"""
See :class:`~kivy.uix.Widget` class documentation for more information.
.. versionadded:: 1.0.0
"""