ยค shellF

Shell (top level) windows

Types

shellF :: String -> F c d -> F c d

Synopsis

shellF title fudget

Description

shellF is the normal way to create a shell window (a top level window) for an application. An argument fudgets determines the contents of the shell window.

Input

connected directly to the interior fudget.

Output

connected directly to the interior fudget.

Arguments

title :: String
The window title. Appears in the title bar attached to the window by the window manager. .
fudget :: F c d
The interior fudget.

Example

 shellF "Hello" (labelF "Hello, world!")

See Also

Customisable version: shellF'.

Underlying implementation: XCreateSimpleWindow in the Xlib Programming Manual .