| Copyright | (c) 2018 Francisco Vallarino |
|---|---|
| License | BSD-3-Clause (see the LICENSE file) |
| Maintainer | fjvallarino@gmail.com |
| Stability | experimental |
| Portability | non-portable |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Monomer.Widgets.Animation.Types
Description
Common types for animation widgets.
Synopsis
Documentation
data AnimationMsg Source #
Message animation widgets usually support. Controls animation state.
Constructors
| AnimationStart | Starts the animation from the beginning, even if it's running. |
| AnimationStop | Stops the animation if it's currently running. |
| AnimationFinished Millisecond | Indicates the animation has finished. This is usually generated by the widget itself for clean up. |
Instances
| Show AnimationMsg Source # | |
Defined in Monomer.Widgets.Animation.Types Methods showsPrec :: Int -> AnimationMsg -> ShowS # show :: AnimationMsg -> String # showList :: [AnimationMsg] -> ShowS # | |
| Eq AnimationMsg Source # | |
Defined in Monomer.Widgets.Animation.Types | |