Frame —
This container adds a frame around its contents. This is useful to logically separate items in a dialog box.
frameNew:: IO Frame |
frameGetLabel:: FrameClass f => f -> IO String |
frameSetLabel:: FrameClass f => f -> String -> IO () |
frameSetLabelAlign:: FrameClass f => f -> Float -> IO () |
frameSetLabelWidget:: (FrameClass f, WidgetClass w) => f -> w -> IO () |
frameSetShadowType:: FrameClass f => f -> ShadowType -> IO () |
Create a new frame without a label.
| frameNew |
A label can later be set by calling frameSetLabel.
Retrieve the label of the frame.
| frameGetLabel | :: f | :: IO String |
| f |
An exception is thrown if a non-Label widget was set. (EXPORTED)