 
¤ scrollShellF
Types
scrollShellF :: String -> (Point, Point) -> F a b -> F a b
Synopsis
scrollShellF title limits fudget
Description
scrollShellF creates a shell window with scroll bars.
Arguments
- title :: String
- 	The window title. Appears in the title bar attached to the window by the window
manager.
- 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 a b
- 	the contained fudget.
 
 
See Also
scrollF,
shellF.
