Manatee.Toolkit.Widget.PopupWindow
- data PopupWindow = PopupWindow {}
- popupWindowDefaultHeight :: Int
- popupWindowNew :: IO PopupWindow
- popupWindowStickParent :: WidgetClass widget => PopupWindow -> widget -> IO ()
- popupWindowSetAllocation :: PopupWindow -> Rectangle -> IO ()
- popupWindowShow :: PopupWindow -> IO ()
- popupWindowHide :: PopupWindow -> IO ()
- popupWindowAdd :: WidgetClass child => PopupWindow -> child -> IO ()
- popupWindowRemove :: PopupWindow -> IO ()
- popupWindowIsVisible :: PopupWindow -> IO Bool
- popupWindowExit :: PopupWindow -> IO ()
Documentation
data PopupWindow Source
Constructors
PopupWindow | |
popupWindowDefaultHeight :: IntSource
The default height of popup window.
popupWindowNew :: IO PopupWindowSource
Create popup window.
popupWindowStickParent :: WidgetClass widget => PopupWindow -> widget -> IO ()Source
Stick popup window with parent window. Note, the widget's toplevel widget must be Window, otherwise this function with failed.
popupWindowSetAllocation :: PopupWindow -> Rectangle -> IO ()Source
Set size and position.
popupWindowShow :: PopupWindow -> IO ()Source
Show popup window.
popupWindowHide :: PopupWindow -> IO ()Source
Hide popup window.
popupWindowAdd :: WidgetClass child => PopupWindow -> child -> IO ()Source
Add child.
popupWindowRemove :: PopupWindow -> IO ()Source
Remove children.
popupWindowIsVisible :: PopupWindow -> IO BoolSource
Is visible.
popupWindowExit :: PopupWindow -> IO ()Source
Exit.