¤ terminalF, cmdTerminalF, et al

Types

terminalF :: FontName -> Int -> Int -> F String a
cmdTerminalF :: FontName -> Int -> Int -> F TerminalCmd a
data TerminalCmd = TermText String | TermAppend String | TermClear

Synopsis

terminalF fname nrows ncols

Description

terminalF is an embryo to a terminal window. Currently, it can only show and scroll lines of text. There is no visible cursor, and no cursor control.

Input

Lines of text to be displayed.

Output

Nothing.

Arguments

fname :: FontName
Name of the font to use for text. Fonts can be examined by using the command xfontsel. (This argument is likely to disappear in the near future. It will be replaced by some resource mechanism.)
nrows :: Int
The number of rows
ncols :: Int
The number of colums

See Also

displayF, moreF.