test-kivy-app/kivy_venv/lib/python3.11/site-packages/kivymd/uix/card/card.py

931 lines
27 KiB
Python
Raw Normal View History

2024-09-15 12:12:16 +00:00
"""
Components/Card
===============
.. seealso::
2024-09-15 17:57:02 +00:00
`Material Design 3 spec, Cards <https://m3.material.io/components/cards/overview>`_
2024-09-15 12:12:16 +00:00
.. rubric:: Cards contain content and actions about a single subject.
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/cards.png
:align: center
`KivyMD` provides the following card classes for use:
- MDCard_
- MDCardSwipe_
.. note:: :class:`~MDCard` inherited from
:class:`~kivy.uix.boxlayout.BoxLayout`. You can use all parameters and
attributes of the :class:`~kivy.uix.boxlayout.BoxLayout` class in the
:class:`~MDCard` class.
.. MDCard:
2024-09-15 17:57:02 +00:00
2024-09-15 12:12:16 +00:00
MDCard
------
2024-09-15 17:57:02 +00:00
There are three types of cards: elevated, filled, and outlined:
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/available-cards.png
:align: center
1. Elevated card
2. Filled card
3. Outlined card
Example
-------
2024-09-15 12:12:16 +00:00
.. tabs::
.. tab:: Declarative KV and imperative python styles
.. code-block:: python
from kivy.lang import Builder
from kivy.properties import StringProperty
from kivymd.app import MDApp
from kivymd.uix.card import MDCard
KV = '''
2024-09-15 17:57:02 +00:00
<MyCard>
padding: "4dp"
2024-09-15 12:12:16 +00:00
size_hint: None, None
2024-09-15 17:57:02 +00:00
size: "240dp", "100dp"
2024-09-15 12:12:16 +00:00
MDRelativeLayout:
MDIconButton:
icon: "dots-vertical"
pos_hint: {"top": 1, "right": 1}
MDLabel:
text: root.text
adaptive_size: True
color: "grey"
pos: "12dp", "12dp"
bold: True
MDScreen:
2024-09-15 17:57:02 +00:00
theme_bg_color: "Custom"
md_bg_color: self.theme_cls.backgroundColor
2024-09-15 12:12:16 +00:00
MDBoxLayout:
id: box
adaptive_size: True
2024-09-15 17:57:02 +00:00
spacing: "12dp"
2024-09-15 12:12:16 +00:00
pos_hint: {"center_x": .5, "center_y": .5}
'''
2024-09-15 17:57:02 +00:00
class MyCard(MDCard):
'''Implements a material card.'''
2024-09-15 12:12:16 +00:00
text = StringProperty()
class Example(MDApp):
def build(self):
return Builder.load_string(KV)
def on_start(self):
2024-09-15 17:57:02 +00:00
for style in ("elevated", "filled", "outlined"):
2024-09-15 12:12:16 +00:00
self.root.ids.box.add_widget(
2024-09-15 17:57:02 +00:00
MyCard(style=style, text=style.capitalize())
2024-09-15 12:12:16 +00:00
)
Example().run()
.. tab:: Declarative python styles
.. code-block:: python
from kivymd.app import MDApp
from kivymd.uix.boxlayout import MDBoxLayout
from kivymd.uix.button import MDIconButton
from kivymd.uix.card import MDCard
from kivymd.uix.label import MDLabel
from kivymd.uix.relativelayout import MDRelativeLayout
from kivymd.uix.screen import MDScreen
2024-09-15 17:57:02 +00:00
class MyCard(MDCard):
'''Implements a material card.'''
2024-09-15 12:12:16 +00:00
class Example(MDApp):
def build(self):
return (
MDScreen(
MDBoxLayout(
id="box",
adaptive_size=True,
2024-09-15 17:57:02 +00:00
spacing="12dp",
2024-09-15 12:12:16 +00:00
pos_hint={"center_x": 0.5, "center_y": 0.5},
2024-09-15 17:57:02 +00:00
),
theme_bg_color="Custom",
md_bg_color=self.theme_cls.backgroundColor,
2024-09-15 12:12:16 +00:00
)
)
def on_start(self):
2024-09-15 17:57:02 +00:00
for style in ("elevated", "filled", "outlined"):
2024-09-15 12:12:16 +00:00
self.root.ids.box.add_widget(
2024-09-15 17:57:02 +00:00
MyCard(
2024-09-15 12:12:16 +00:00
MDRelativeLayout(
MDIconButton(
icon="dots-vertical",
pos_hint={"top": 1, "right": 1}
),
MDLabel(
text=style.capitalize(),
adaptive_size=True,
pos=("12dp", "12dp"),
),
),
style=style,
2024-09-15 17:57:02 +00:00
padding="4dp",
size_hint=(None, None),
size=("240dp", "100dp"),
ripple_behavior=True,
2024-09-15 12:12:16 +00:00
)
)
Example().run()
2024-09-15 17:57:02 +00:00
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/card-usage.png
:align: center
Elevated
--------
.. code-block:: kv
MDCard
style: "elevated"
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/card-elevated.png
:align: center
Filled
------
.. code-block:: kv
MDCard
style: "filled"
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/card-filled.png
:align: center
Outlined
--------
.. code-block:: kv
MDCard
style: "outlined"
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/card-outlined.png
:align: center
Customization of card
=====================
.. code-block:: kv
from kivy.lang import Builder
from kivymd.app import MDApp
KV = '''
MDScreen:
theme_bg_color: "Custom"
md_bg_color: self.theme_cls.backgroundColor
MDCard:
style: "elevated"
pos_hint: {"center_x": .5, "center_y": .5}
padding: "4dp"
size_hint: None, None
size: "240dp", "100dp"
# Sets custom properties.
theme_shadow_color: "Custom"
shadow_color: "green"
theme_bg_color: "Custom"
md_bg_color: "white"
md_bg_color_disabled: "grey"
theme_shadow_offset: "Custom"
shadow_offset: (1, -2)
theme_shadow_softness: "Custom"
shadow_softness: 1
theme_elevation_level: "Custom"
elevation_level: 2
MDRelativeLayout:
MDIconButton:
icon: "dots-vertical"
pos_hint: {"top": 1, "right": 1}
MDLabel:
text: "Elevated"
adaptive_size: True
color: "grey"
pos: "12dp", "12dp"
bold: True
'''
class Example(MDApp):
def build(self):
self.theme_cls.primary_palette = "Green"
return Builder.load_string(KV)
Example().run()
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/card-customization.png
2024-09-15 12:12:16 +00:00
:align: center
.. MDCardSwipe:
2024-09-15 17:57:02 +00:00
2024-09-15 12:12:16 +00:00
MDCardSwipe
-----------
To create a card with `swipe-to-delete` behavior, you must create a new class
that inherits from the :class:`~MDCardSwipe` class:
.. code-block:: kv
<SwipeToDeleteItem>
size_hint_y: None
height: content.height
MDCardSwipeLayerBox:
MDCardSwipeFrontBox:
OneLineListItem:
id: content
text: root.text
_no_ripple_effect: True
.. code-block:: python
class SwipeToDeleteItem(MDCardSwipe):
text = StringProperty()
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/sceleton-mdcard-swiper.png
:align: center
2024-09-15 17:57:02 +00:00
Example
-------
2024-09-15 12:12:16 +00:00
.. tabs::
.. tab:: Declarative KV and imperative python styles
.. code-block:: python
from kivy.lang import Builder
from kivy.properties import StringProperty
from kivymd.app import MDApp
from kivymd.uix.card import MDCardSwipe
KV = '''
2024-09-15 17:57:02 +00:00
<SwipeToDeleteItem>:
2024-09-15 12:12:16 +00:00
size_hint_y: None
height: content.height
MDCardSwipeLayerBox:
2024-09-15 17:57:02 +00:00
padding: "8dp"
MDIconButton:
icon: "trash-can"
pos_hint: {"center_y": .5}
on_release: app.remove_item(root)
2024-09-15 12:12:16 +00:00
MDCardSwipeFrontBox:
OneLineListItem:
id: content
text: root.text
_no_ripple_effect: True
MDScreen:
2024-09-15 17:57:02 +00:00
MDScrollView:
2024-09-15 12:12:16 +00:00
2024-09-15 17:57:02 +00:00
MDList:
id: md_list
padding: 0
2024-09-15 12:12:16 +00:00
'''
class SwipeToDeleteItem(MDCardSwipe):
text = StringProperty()
class Example(MDApp):
2024-09-15 17:57:02 +00:00
def __init__(self, **kwargs):
super().__init__(**kwargs)
2024-09-15 12:12:16 +00:00
self.theme_cls.theme_style = "Dark"
self.theme_cls.primary_palette = "Orange"
2024-09-15 17:57:02 +00:00
self.screen = Builder.load_string(KV)
2024-09-15 12:12:16 +00:00
2024-09-15 17:57:02 +00:00
def build(self):
return self.screen
def remove_item(self, instance):
self.screen.ids.md_list.remove_widget(instance)
2024-09-15 12:12:16 +00:00
2024-09-15 17:57:02 +00:00
def on_start(self):
2024-09-15 12:12:16 +00:00
for i in range(20):
2024-09-15 17:57:02 +00:00
self.screen.ids.md_list.add_widget(
2024-09-15 12:12:16 +00:00
SwipeToDeleteItem(text=f"One-line item {i}")
)
Example().run()
.. tab:: Declarative python styles
.. code-block:: python
from kivymd.app import MDApp
from kivymd.uix.card import (
MDCardSwipe, MDCardSwipeLayerBox, MDCardSwipeFrontBox
)
from kivymd.uix.list import MDList, OneLineListItem
from kivymd.uix.screen import MDScreen
from kivymd.uix.scrollview import MDScrollView
class Example(MDApp):
def build(self):
self.theme_cls.theme_style = "Dark"
self.theme_cls.primary_palette = "Orange"
return (
MDScreen(
2024-09-15 17:57:02 +00:00
MDScrollView(
MDList(
id="md_list",
padding=0,
2024-09-15 12:12:16 +00:00
),
2024-09-15 17:57:02 +00:00
id="scroll",
scroll_timeout=100,
2024-09-15 12:12:16 +00:00
),
)
)
def on_start(self):
'''Creates a list of cards.'''
for i in range(20):
2024-09-15 17:57:02 +00:00
self.root.ids.scroll.ids.md_list.add_widget(
2024-09-15 12:12:16 +00:00
MDCardSwipe(
MDCardSwipeLayerBox(),
MDCardSwipeFrontBox(
OneLineListItem(
id="content",
text=f"One-line item {i}",
_no_ripple_effect=True,
)
),
size_hint_y=None,
2024-09-15 17:57:02 +00:00
height="48dp",
2024-09-15 12:12:16 +00:00
)
)
Example().run()
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/list-mdcard-swipe.gif
:align: center
Binding a swipe to one of the sides of the screen
-------------------------------------------------
.. code-block:: kv
<SwipeToDeleteItem>
# By default, the parameter is "left"
anchor: "right"
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/mdcard-swipe-anchor-right.gif
:align: center
.. Note:: You cannot use the left and right swipe at the same time.
Swipe behavior
--------------
.. code-block:: kv
<SwipeToDeleteItem>
# By default, the parameter is "hand"
2024-09-15 17:57:02 +00:00
type_swipe: "hand" # "auto"
2024-09-15 12:12:16 +00:00
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/hand-mdcard-swipe.gif
:align: center
Removing an item using the ``type_swipe = "auto"`` parameter
------------------------------------------------------------
The map provides the :attr:`MDCardSwipe.on_swipe_complete` event.
You can use this event to remove items from a list:
.. tabs::
.. tab:: Declarative KV styles
.. code-block:: kv
<SwipeToDeleteItem>:
on_swipe_complete: app.on_swipe_complete(root)
.. tab:: Declarative python styles
.. code-block:: kv
.. code-block:: python
MDCardSwipe(
...
on_swipe_complete=self.on_swipe_complete,
)
.. tabs::
.. tab:: Imperative python styles
.. code-block:: python
def on_swipe_complete(self, instance):
self.root.ids.md_list.remove_widget(instance)
.. tab:: Decralative python styles
.. code-block:: python
def on_swipe_complete(self, instance):
self.root.ids.box.ids.scroll.ids.md_list.remove_widget(instance)
2024-09-15 17:57:02 +00:00
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/auto-mdcard-swipe.gif
2024-09-15 12:12:16 +00:00
:align: center
2024-09-15 17:57:02 +00:00
2024-09-15 12:12:16 +00:00
Add content to the bottom layer of the card
-------------------------------------------
To add content to the bottom layer of the card,
use the :class:`~MDCardSwipeLayerBox` class.
.. code-block:: kv
<SwipeToDeleteItem>:
MDCardSwipeLayerBox:
padding: "8dp"
MDIconButton:
icon: "trash-can"
pos_hint: {"center_y": .5}
on_release: app.remove_item(root)
2024-09-15 17:57:02 +00:00
.. image:: https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/kivymddoc/mdcard-swipe-content.png
2024-09-15 12:12:16 +00:00
:align: center
"""
2024-09-15 17:57:02 +00:00
from __future__ import annotations
2024-09-15 12:12:16 +00:00
__all__ = (
"MDCard",
"MDCardSwipe",
"MDCardSwipeFrontBox",
"MDCardSwipeLayerBox",
)
import os
from kivy.animation import Animation
from kivy.clock import Clock
from kivy.lang import Builder
from kivy.metrics import dp
from kivy.properties import (
BooleanProperty,
NumericProperty,
OptionProperty,
StringProperty,
VariableListProperty,
2024-09-15 17:57:02 +00:00
ColorProperty,
2024-09-15 12:12:16 +00:00
)
2024-09-15 17:57:02 +00:00
from kivy.uix.behaviors import ButtonBehavior
2024-09-15 12:12:16 +00:00
from kivy.uix.boxlayout import BoxLayout
from kivymd import uix_path
from kivymd.theming import ThemableBehavior
from kivymd.uix import MDAdaptiveWidget
from kivymd.uix.behaviors import (
CommonElevationBehavior,
DeclarativeBehavior,
RectangularRippleBehavior,
2024-09-15 17:57:02 +00:00
BackgroundColorBehavior,
2024-09-15 12:12:16 +00:00
)
2024-09-15 17:57:02 +00:00
from kivymd.uix.behaviors.state_layer_behavior import StateLayerBehavior
2024-09-15 12:12:16 +00:00
from kivymd.uix.boxlayout import MDBoxLayout
from kivymd.uix.relativelayout import MDRelativeLayout
with open(
os.path.join(uix_path, "card", "card.kv"), encoding="utf-8"
) as kv_file:
2024-09-15 17:57:02 +00:00
Builder.load_string(kv_file.read(), filename="MDCard.kv")
2024-09-15 12:12:16 +00:00
class MDCard(
DeclarativeBehavior,
MDAdaptiveWidget,
ThemableBehavior,
BackgroundColorBehavior,
CommonElevationBehavior,
2024-09-15 17:57:02 +00:00
RectangularRippleBehavior,
StateLayerBehavior,
ButtonBehavior,
2024-09-15 12:12:16 +00:00
BoxLayout,
):
"""
Card class.
For more information, see in the
2024-09-15 17:57:02 +00:00
:class:`~kivymd.uix.behaviors.declarative_behavior.DeclarativeBehavior` and
2024-09-15 12:12:16 +00:00
:class:`~kivymd.uix.MDAdaptiveWidget` and
:class:`~kivymd.theming.ThemableBehavior` and
2024-09-15 17:57:02 +00:00
:class:`~kivymd.uix.behaviors.backgroundcolor_behavior.BackgroundColorBehavior` and
:class:`~kivymd.uix.behaviors.elevation.CommonElevationBehavior` and
:class:`~kivymd.uix.behaviors.ripple_behavior.RectangularRippleBehavior` and
:class:`~kivymd.uix.behaviors.state_layer_behavior.StateLayerBehavior` and
:class:`~kivy.uix.behaviors.ButtonBehavior` and
2024-09-15 12:12:16 +00:00
:class:`~kivy.uix.boxlayout.BoxLayout` and
classes documentation.
"""
ripple_behavior = BooleanProperty(False)
"""
Use ripple effect for card.
:attr:`ripple_behavior` is a :class:`~kivy.properties.BooleanProperty`
and defaults to `False`.
"""
2024-09-15 17:57:02 +00:00
radius = VariableListProperty([dp(16), dp(16), dp(16), dp(16)])
2024-09-15 12:12:16 +00:00
"""
Card radius by default.
.. versionadded:: 1.0.0
:attr:`radius` is an :class:`~kivy.properties.VariableListProperty`
2024-09-15 17:57:02 +00:00
and defaults to `[dp(16), dp(16), dp(16), dp(16)]`.
2024-09-15 12:12:16 +00:00
"""
2024-09-15 17:57:02 +00:00
style = OptionProperty("filled", options=("filled", "elevated", "outlined"))
2024-09-15 12:12:16 +00:00
"""
Card type.
.. versionadded:: 1.0.0
Available options are: 'filled', 'elevated', 'outlined'.
:attr:`style` is an :class:`~kivy.properties.OptionProperty`
2024-09-15 17:57:02 +00:00
and defaults to `None`.
"""
md_bg_color_disabled = ColorProperty(None)
2024-09-15 12:12:16 +00:00
"""
2024-09-15 17:57:02 +00:00
The background color in (r, g, b, a) or string format of the card when
the card is disabled.
2024-09-15 12:12:16 +00:00
2024-09-15 17:57:02 +00:00
:attr:`md_bg_color_disabled` is a :class:`~kivy.properties.ColorProperty`
and defaults to `None`.
"""
2024-09-15 12:12:16 +00:00
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
Clock.schedule_once(
lambda x: self.on_ripple_behavior(0, self.ripple_behavior)
)
2024-09-15 17:57:02 +00:00
def on_press(self, *args) -> None:
"""Fired when the button is pressed."""
self._on_press(args)
def on_release(self, *args) -> None:
"""
Fired when the button is released
(i.e. the touch/click that pressed the button goes away).
"""
self._on_release(args)
def on_ripple_behavior(self, interval: int | float, value: bool) -> None:
"""Fired when the :attr:`ripple_behavior` value changes."""
self.ripple_effect = not self.ripple_effect
def set_properties_widget(self) -> None:
"""Fired `on_release/on_press/on_enter/on_leave` events."""
super().set_properties_widget()
if not self.disabled:
if self._state == self.state_hover and self.focus_behavior:
self._elevation_level = self.elevation_level
self._shadow_softness = self.shadow_softness
self._bg_color = self.md_bg_color
if self.style in ["filled", "outlined"]:
if self.theme_elevation_level == "Primary":
self.elevation_level = 0
if self.theme_shadow_softness == "Primary":
self.shadow_softness = 0
else:
if self.theme_elevation_level == "Primary":
self.elevation_level = 2
if self.theme_shadow_softness == "Primary":
self.shadow_softness = dp(4)
if self.theme_shadow_offset == "Primary":
self.shadow_offset = [0, -2]
elif self._state == self.state_press:
if self.theme_elevation_level == "Primary":
self.elevation_level = 1
if self.theme_shadow_softness == "Primary":
self.shadow_softness = 0
elif not self._state:
if self.theme_elevation_level == "Primary":
self.elevation_level = 1
if self.theme_shadow_softness == "Primary":
self.shadow_softness = 0
if self.theme_shadow_offset == "Primary":
self.shadow_offset = [0, -2]
self.md_bg_color = self._bg_color
2024-09-15 12:12:16 +00:00
class MDCardSwipe(MDRelativeLayout):
"""
Card swipe class.
For more information, see in the
:class:`~kivymd.uix.relativelayout.MDRelativeLayout` class documentation.
:Events:
:attr:`on_swipe_complete`
2024-09-15 17:57:02 +00:00
Fired when a swipe of card is completed.
2024-09-15 12:12:16 +00:00
"""
open_progress = NumericProperty(0.0)
"""
Percent of visible part of side panel. The percent is specified as a
floating point number in the range 0-1. 0.0 if panel is closed and 1.0 if
panel is opened.
:attr:`open_progress` is a :class:`~kivy.properties.NumericProperty`
and defaults to `0.0`.
"""
opening_transition = StringProperty("out_cubic")
"""
The name of the animation transition type to use when animating to
the :attr:`state` `'opened'`.
:attr:`opening_transition` is a :class:`~kivy.properties.StringProperty`
and defaults to `'out_cubic'`.
"""
closing_transition = StringProperty("out_sine")
"""
The name of the animation transition type to use when animating to
the :attr:`state` 'closed'.
:attr:`closing_transition` is a :class:`~kivy.properties.StringProperty`
and defaults to `'out_sine'`.
"""
closing_interval = NumericProperty(0)
"""
Interval for closing the front layer.
.. versionadded:: 1.1.0
:attr:`closing_interval` is a :class:`~kivy.properties.NumericProperty`
and defaults to `0`.
"""
anchor = OptionProperty("left", options=("left", "right"))
"""
Anchoring screen edge for card. Available options are: `'left'`, `'right'`.
:attr:`anchor` is a :class:`~kivy.properties.OptionProperty`
and defaults to `left`.
"""
swipe_distance = NumericProperty(50)
"""
The distance of the swipe with which the movement of navigation drawer
begins.
:attr:`swipe_distance` is a :class:`~kivy.properties.NumericProperty`
and defaults to `50`.
"""
opening_time = NumericProperty(0.2)
"""
The time taken for the card to slide to the :attr:`state` `'open'`.
:attr:`opening_time` is a :class:`~kivy.properties.NumericProperty`
and defaults to `0.2`.
"""
state = OptionProperty("closed", options=("closed", "opened"))
"""
Detailed state. Sets before :attr:`state`. Bind to :attr:`state` instead
of :attr:`status`. Available options are: `'closed'`, `'opened'`.
:attr:`status` is a :class:`~kivy.properties.OptionProperty`
and defaults to `'closed'`.
"""
max_swipe_x = NumericProperty(0.3)
"""
If, after the events of :attr:`~on_touch_up` card position exceeds this
value - will automatically execute the method :attr:`~open_card`,
and if not - will automatically be :attr:`~close_card` method.
:attr:`max_swipe_x` is a :class:`~kivy.properties.NumericProperty`
and defaults to `0.3`.
"""
max_opened_x = NumericProperty("100dp")
"""
The value of the position the card shifts to when :attr:`~type_swipe`
s set to `'hand'`.
:attr:`max_opened_x` is a :class:`~kivy.properties.NumericProperty`
and defaults to `100dp`.
"""
type_swipe = OptionProperty("hand", options=("auto", "hand"))
"""
Type of card opening when swipe. Shift the card to the edge or to
a set position :attr:`~max_opened_x`. Available options are:
`'auto'`, `'hand'`.
:attr:`type_swipe` is a :class:`~kivy.properties.OptionProperty`
and defaults to `auto`.
"""
_opens_process = False
_to_closed = True
_distance = 0
def __init__(self, *args, **kwargs):
self.register_event_type("on_swipe_complete")
super().__init__(*args, **kwargs)
def on_swipe_complete(self, *args):
2024-09-15 17:57:02 +00:00
"""Fired when a swipe of card is completed."""
2024-09-15 12:12:16 +00:00
def on_anchor(
self, instance_swipe_to_delete_item, anchor_value: str
) -> None:
2024-09-15 17:57:02 +00:00
"""Fired when the value of :attr:`anchor` changes."""
2024-09-15 12:12:16 +00:00
if anchor_value == "right":
self.open_progress = 1.0
else:
self.open_progress = 0.0
def on_open_progress(
self, instance_swipe_to_delete_item, progress_value: float
) -> None:
2024-09-15 17:57:02 +00:00
"""Fired when the value of :attr:`open_progress` changes."""
2024-09-15 12:12:16 +00:00
def on_open_progress(*args):
if self.anchor == "left":
self.children[0].x = self.width * progress_value
else:
self.children[0].x = self.width * progress_value - self.width
Clock.schedule_once(on_open_progress)
def on_touch_move(self, touch):
if self.collide_point(touch.x, touch.y):
self._distance += touch.dx
expr = False
if self.anchor == "left" and touch.dx >= 0:
expr = abs(self._distance) < self.swipe_distance
elif self.anchor == "right" and touch.dx < 0:
expr = abs(self._distance) > self.swipe_distance
if expr and not self._opens_process:
self._opens_process = True
self._to_closed = False
if self._opens_process:
self.open_progress = max(
min(self.open_progress + touch.dx / self.width, 2.5), 0
)
return super().on_touch_move(touch)
def on_touch_up(self, touch):
self._distance = 0
if self.collide_point(touch.x, touch.y):
if not self._to_closed:
self._opens_process = False
2024-09-15 17:57:02 +00:00
self._complete_swipe()
2024-09-15 12:12:16 +00:00
return super().on_touch_up(touch)
def on_touch_down(self, touch):
if self.collide_point(touch.x, touch.y):
if self.state == "opened":
self._to_closed = True
Clock.schedule_once(self.close_card, self.closing_interval)
return super().on_touch_down(touch)
def open_card(self) -> None:
2024-09-15 17:57:02 +00:00
"""Animates the opening of the card."""
2024-09-15 12:12:16 +00:00
if self.type_swipe == "hand":
swipe_x = (
self.max_opened_x
if self.anchor == "left"
else -self.max_opened_x
)
else:
swipe_x = self.width if self.anchor == "left" else 0
anim = Animation(
x=swipe_x, t=self.opening_transition, d=self.opening_time
)
anim.bind(on_complete=self._on_swipe_complete)
anim.start(self.children[0])
self.state = "opened"
def close_card(self, *args) -> None:
2024-09-15 17:57:02 +00:00
"""Animates the closing of the card."""
2024-09-15 12:12:16 +00:00
anim = Animation(x=0, t=self.closing_transition, d=self.opening_time)
anim.bind(on_complete=self._reset_open_progress)
anim.start(self.children[0])
self.state = "closed"
2024-09-15 17:57:02 +00:00
def add_widget(self, widget, index=0, canvas=None):
if isinstance(widget, (MDCardSwipeFrontBox, MDCardSwipeLayerBox)):
return super().add_widget(widget)
def _complete_swipe(self) -> None:
expr = (
self.open_progress <= self.max_swipe_x
if self.anchor == "left"
else self.open_progress >= self.max_swipe_x
)
if expr:
Clock.schedule_once(self.close_card, self.closing_interval)
else:
self.open_card()
2024-09-15 12:12:16 +00:00
def _on_swipe_complete(self, *args):
self.dispatch("on_swipe_complete")
def _reset_open_progress(self, *args):
self.open_progress = 0.0 if self.anchor == "left" else 1.0
self._to_closed = False
self.dispatch("on_swipe_complete")
class MDCardSwipeFrontBox(MDCard):
"""
Card swipe front box.
For more information, see in the :class:`~MDCard` class documentation.
"""
class MDCardSwipeLayerBox(MDBoxLayout):
2024-09-15 17:57:02 +00:00
"""
Card swipe back box.
For more information, see in the :class:`~kivymd.uix.boxlayout.MDBoxLayout`
class documentation.
"""