Name

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.

Synopsis

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 ()

Constructors

scrolledWindowNew

Create a new ScrolledWindow.

scrolledWindowNew:: Maybe Adjustment:: Maybe Adjustment:: IO ScrolledWindow
hAdjvAdj

Methods

scrolledWindowAddWithViewport

Add a child widget without native scrolling support to this ScrolledWindow.

scrolledWindowAddWithViewport:: w:: wid:: IO ()
wwid

scrolledWindowGetHAdjustment

Retrieve the horizontal Adjustment of the ScrolledWindow.

scrolledWindowGetHAdjustment:: w:: IO Adjustment
w

scrolledWindowGetVAdjustment

Retrieve the vertical Adjustment of the ScrolledWindow.

scrolledWindowGetVAdjustment:: w:: IO Adjustment
w

scrolledWindowSetHAdjustment

Set the horizontal Adjustment of the ScrolledWindow.

scrolledWindowSetHAdjustment:: w:: Adjustment:: IO ()
wadj

scrolledWindowSetPlacement

Specify where the scrollbars should be placed.

scrolledWindowSetPlacement:: w:: CornerType:: IO ()
wct

scrolledWindowSetPolicy

Specify if the scrollbars should vanish if the child size is sufficiently small.

scrolledWindowSetPolicy:: w:: PolicyType:: PolicyType:: IO ()
whPolvPol

scrolledWindowSetShadowType

Specify if and how an outer frame should be drawn around the child.

scrolledWindowSetShadowType:: w:: ShadowType:: IO ()
wst

scrolledWindowSetVAdjustment

Set the vertical Adjustment of the ScrolledWindow.

scrolledWindowSetVAdjustment:: w:: Adjustment:: IO ()
wadj