2022-07-07 22:16:10 +02:00
|
|
|
"""
|
|
|
|
Behaviors
|
|
|
|
=========
|
|
|
|
|
|
|
|
Modules and classes implementing various behaviors for buttons etc.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from .backgroundcolor_behavior import (
|
|
|
|
BackgroundColorBehavior,
|
|
|
|
SpecificBackgroundColorBehavior,
|
|
|
|
)
|
2022-10-02 17:16:59 +02:00
|
|
|
|
|
|
|
# flake8: NOQA
|
2022-10-08 17:17:59 +02:00
|
|
|
from .declarative_behavior import DeclarativeBehavior
|
2022-07-07 22:16:10 +02:00
|
|
|
from .elevation import (
|
|
|
|
CircularElevationBehavior,
|
|
|
|
CommonElevationBehavior,
|
|
|
|
FakeCircularElevationBehavior,
|
|
|
|
FakeRectangularElevationBehavior,
|
|
|
|
RectangularElevationBehavior,
|
|
|
|
RoundedRectangularElevationBehavior,
|
|
|
|
)
|
|
|
|
from .magic_behavior import MagicBehavior
|
|
|
|
from .ripple_behavior import CircularRippleBehavior, RectangularRippleBehavior
|
2022-10-08 17:17:59 +02:00
|
|
|
from .rotate_behavior import RotateBehavior
|
|
|
|
from .scale_behavior import ScaleBehavior
|
|
|
|
from .stencil_behavior import StencilBehavior
|
2022-07-07 22:16:10 +02:00
|
|
|
from .touch_behavior import TouchBehavior
|
2022-10-02 17:16:59 +02:00
|
|
|
|
|
|
|
from .hover_behavior import HoverBehavior # isort:skip
|