uni-htk-2.2.1.2: Graphical User Interface for Haskell Programs

Safe HaskellNone
LanguageHaskell98

HTk.Toolkit.TextDisplay

Description

A simple window to display uneditable, scrollable text (e.g. error logs)

Synopsis

Documentation

createTextDisplayExt Source

Arguments

:: String

the title of the window

-> String

the text to be displayed

-> [Config Editor]

configuration options for the text editor

-> IO ()

action to be executed when the window is closed

-> IO (Toplevel, Editor)

the window in which the text is displayed

Display some (longish) text in an uneditable, scrollable editor. Returns immediately-- the display is forked off to separate thread.

createTextDisplay Source

Arguments

:: String

the title of the window

-> String

the text to be displayed

-> [Config Editor]

configuration options for the text editor

-> IO () 

Display some (longish) text in an uneditable, scrollable editor. Simplified version of createTextDisplayExt