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

Safe HaskellNone
LanguageHaskell98

HTk.Toolkit.Separator

Description

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

Synopsis

Documentation

newSeparator Source #

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.

newHSeparator Source #

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)

newVSeparator Source #

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)