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

Safe HaskellNone
LanguageHaskell98

HTk.Widgets.Space

Description

HTk's space widget. A simple spacer for special packing purposes.

Synopsis

Documentation

data Space Source #

The Space datatype.

Instances

Eq Space Source #

Internal.

Methods

(==) :: Space -> Space -> Bool #

(/=) :: Space -> Space -> Bool #

Destroyable Space Source #

A space widget can be destroyed.

Methods

destroy :: Space -> IO () #

Synchronized Space Source #

You can synchronize on a space widget.

Methods

synchronize :: Space -> IO b -> IO b #

GUIObject Space Source #

Internal.

HasOrientation Space Source #

The space widgets orientation can either be vertical or Horizontal.

HasColour Space Source #

A space widget has a configureable background colour.

Widget Space Source #

A radiobutton widget has standard widget properties (concerning focus, cursor).

newSpace Source #

Arguments

:: Container par 
=> par

the parent widget, which has to be a container widget (an instance of class Container).

-> Distance

the horizontal or vertical distance (depending on the space widget's orientation).

-> [Config Space]

the list of configuration options for this space widget.

-> IO Space

A space widget.

Constructs a new space widget and returns a handler.