Manatee.Toolkit.Widget.Interactivebar
- data Interactivebar = Interactivebar {}
- type InteractivebarTitle = String
- type InteractivebarEntryStatus = EditableStatus
- type InteractivebarStatus = (InteractivebarTitle, InteractivebarEntryStatus)
- interactivebarNew :: IO Interactivebar
- interactivebarClone :: BoxClass box => box -> Interactivebar -> IO Interactivebar
- interactivebarSetTitle :: Interactivebar -> String -> IO ()
- interactivebarSetContent :: Interactivebar -> String -> IO ()
- interactivebarShow :: BoxClass box => box -> Interactivebar -> IO ()
- interactivebarExit :: BoxClass box => box -> Interactivebar -> IO ()
- interactivebarIsVisible :: Interactivebar -> IO Bool
- interactivebarSetStatus :: Interactivebar -> InteractivebarStatus -> IO ()
- interactivebarGetStatus :: Interactivebar -> IO (Maybe InteractivebarStatus)
Documentation
data Interactivebar Source
Constructors
Interactivebar | |
Fields |
type InteractivebarTitle = StringSource
interactivebarNew :: IO InteractivebarSource
Create new interactivebar.
interactivebarClone :: BoxClass box => box -> Interactivebar -> IO InteractivebarSource
Clone interactivebar.
interactivebarSetTitle :: Interactivebar -> String -> IO ()Source
Set title.
interactivebarSetContent :: Interactivebar -> String -> IO ()Source
Set content.
interactivebarShow :: BoxClass box => box -> Interactivebar -> IO ()Source
Show interactivebar.
interactivebarExit :: BoxClass box => box -> Interactivebar -> IO ()Source
Exit interactivebar.
interactivebarIsVisible :: Interactivebar -> IO BoolSource
Is visible.
interactivebarSetStatus :: Interactivebar -> InteractivebarStatus -> IO ()Source
Set status.
interactivebarGetStatus :: Interactivebar -> IO (Maybe InteractivebarStatus)Source
Get interactivebar status. Return Nothing if interactivebar is not visible.