ScrolledWindow —
ScrolledWindow is a container that adds scroll bars to its child. Some widgets have native scrolling support, in which case the scrolling action is performed by the child itself (e.g. a TreeView widget does this by only moving the table part and not the titles of a table). If a widget does not support native scrolling it can be put into a ScrolledWindow widget.
scrolledWindowNew:: Maybe Adjustment -> Maybe Adjustment -> IO ScrolledWindow |
scrolledWindowAddWithViewport:: (ScrolledWindowClass w, WidgetClass wid) => w -> wid -> IO () |
scrolledWindowGetHAdjustment:: ScrolledWindowClass w => w -> IO Adjustment |
scrolledWindowGetVAdjustment:: ScrolledWindowClass w => w -> IO Adjustment |
scrolledWindowSetHAdjustment:: ScrolledWindowClass w => w -> Adjustment -> IO () |
scrolledWindowSetPlacement:: ScrolledWindowClass w => w -> CornerType -> IO () |
scrolledWindowSetPolicy:: ScrolledWindowClass w => w -> PolicyType -> PolicyType -> IO () |
scrolledWindowSetShadowType:: ScrolledWindowClass w => w -> ShadowType -> IO () |
scrolledWindowSetVAdjustment:: ScrolledWindowClass w => w -> Adjustment -> IO () |
Create a new ScrolledWindow.
| scrolledWindowNew | :: Maybe Adjustment | :: Maybe Adjustment | :: IO ScrolledWindow |
| hAdj | vAdj |
Add a child widget without native scrolling support to this ScrolledWindow.
| scrolledWindowAddWithViewport | :: w | :: wid | :: IO () |
| w | wid |
Retrieve the horizontal Adjustment of the ScrolledWindow.
| scrolledWindowGetHAdjustment | :: w | :: IO Adjustment |
| w |
Retrieve the vertical Adjustment of the ScrolledWindow.
| scrolledWindowGetVAdjustment | :: w | :: IO Adjustment |
| w |
Set the horizontal Adjustment of the ScrolledWindow.
| scrolledWindowSetHAdjustment | :: w | :: Adjustment | :: IO () |
| w | adj |
Specify where the scrollbars should be placed.
| scrolledWindowSetPlacement | :: w | :: CornerType | :: IO () |
| w | ct |
Specify if the scrollbars should vanish if the child size is sufficiently small.
| scrolledWindowSetPolicy | :: w | :: PolicyType | :: PolicyType | :: IO () |
| w | hPol | vPol |
Specify if and how an outer frame should be drawn around the child.
| scrolledWindowSetShadowType | :: w | :: ShadowType | :: IO () |
| w | st |
Set the vertical Adjustment of the ScrolledWindow.
| scrolledWindowSetVAdjustment | :: w | :: Adjustment | :: IO () |
| w | adj |