mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02:00
36 lines
979 B
Python
Executable File
36 lines
979 B
Python
Executable File
"""
|
|
Behaviors
|
|
=========
|
|
|
|
Modules and classes implementing various behaviors for buttons etc.
|
|
"""
|
|
|
|
from .backgroundcolor_behavior import (
|
|
BackgroundColorBehavior,
|
|
SpecificBackgroundColorBehavior,
|
|
)
|
|
|
|
# flake8: NOQA
|
|
from .declarative_behavior import DeclarativeBehavior
|
|
from .elevation import (
|
|
CircularElevationBehavior,
|
|
CommonElevationBehavior,
|
|
FakeCircularElevationBehavior,
|
|
FakeRectangularElevationBehavior,
|
|
RectangularElevationBehavior,
|
|
RoundedRectangularElevationBehavior,
|
|
)
|
|
from .motion_behavior import (
|
|
MotionDialogBehavior,
|
|
MotionShackBehavior,
|
|
MotionDropDownMenuBehavior,
|
|
)
|
|
from .magic_behavior import MagicBehavior
|
|
from .ripple_behavior import CircularRippleBehavior, RectangularRippleBehavior
|
|
from .rotate_behavior import RotateBehavior
|
|
from .scale_behavior import ScaleBehavior
|
|
from .stencil_behavior import StencilBehavior
|
|
from .touch_behavior import TouchBehavior
|
|
|
|
from .hover_behavior import HoverBehavior # isort:skip
|