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

HTk.Toolkit.Separator

Description

Separators for widgets. It is just a frame with a given relief and borderwidth etc.

Synopsis

Documentation

data Separator Source

The Separator datatype.

Instances

Eq Separator 
Destroyable Separator

A separator can be destroyed.

GUIObject Separator

Internal.

HasOrientation Separator

A spearator widget has an orientation (Horizontal or Vertical)

HasBorder Separator

A separator widget has a configureable border.

HasSize Separator

You can specify the size of a separator widget.

newSeparatorSource

Arguments

:: Container par 
=> par

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

-> [Config Separator]

the list of configuration options for this separator.

-> IO Separator

a separator widget.

Constructs a new separator widget and returns it as a value.

newHSeparatorSource

Arguments

:: Container par 
=> par

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

-> IO Separator

a separator widget.

Constructs a new horizontal separator widget and returns it as a value. (no packing needed)

newVSeparatorSource

Arguments

:: Container par 
=> par

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

-> IO Separator

a separator widget.

Constructs a new vertical separator widget and returns it as a value. (no packing needed)