ยค oldScrollF, oldVscrollF, et al

Types

oldScrollF :: Bool -> (Point, Point) -> F b d -> F b d
oldVscrollF :: Bool -> (Point, Point) -> F b d -> F b d
oldHscrollF :: Bool -> (Point, Point) -> F b d -> F b d

Synopsis

oldScrollF grabkeys limits fudget

Description

oldScrollF shows a scrolling area with attached horizontal and vertical scroll bars, in which a fudget with a potentially very large window can be shown.

oldVscrollF shows a scrolling area with an attached vertical scroll bar, in which a fudget with a potentially very tall window can be shown.

oldHscrollF shows a scrolling area with an attached horizontal scroll bar, in which a fudget with a potentially very wide window can be shown.

Arguments

grabkeys :: Bool
True means that the page up and page down keys will be grabbed and that the scroll bars will not accept keyboard focus. This makes the scroll bars easier to control from the keyboard but does not work if there is more than one scrolling area in the same shell window.

limits :: (Point, Point)
Initial minimum and maximum size of the scrolling area. The initial size of scrolling area will be the size of the contained fudget, subject to the given limits.
fudget :: F b d
the contained fudget.

See Also

scrollF, shellF, moreF.