Go to the first, previous, next, last section, table of contents.

Creating a Message

* message msgString

message :: String
        -> Component (Message, DisplayHandle)

creates an instance of Message displaying msgString list of characters, breaking it up into lines along word boundaries if the string does not fit onto one line. By default, message tries to allocate a bounding box for the text with a width to height ratio of 3/2. If you want to configure this or any other option, use either mkMessage or See section Customising Messages.

* mkMessage msgString width aspect just anchor

mkMessage :: String 
          -> Int
	  -> Int
	  -> Justification
	  -> CompassDirection
	  -> Component (Message, DisplayHandle)

A fully configurable interface to the Message abstraction. The msgString is exampleted and displayed with the help of the following parameters:

Go to the first, previous, next, last section, table of contents.