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

HTk.Kernel.Resources

Description

Basic resources used with object configuration options.

Synopsis

Documentation

data State Source

The State datatype - the state of certain widgets can be normal, disabled or active.

Constructors

Disabled 
Active 
Normal 

Instances

Enum State 
Eq State 
Ord State 
Read State

Internal.

Show State

Internal.

GUIValue State

Internal.

data Justify Source

The Justify datatype - representing a text justification.

Constructors

JustLeft 
JustCenter 
JustRight 

Instances

data Relief Source

The Relief datatype - represents the relief of certain widgets.

Constructors

Groove 
Ridge 
Flat 
Sunken 
Raised 

Instances

Enum Relief 
Eq Relief 
Ord Relief 
Read Relief

Internal.

Show Relief

Internal.

GUIValue Relief

Internal.

data Anchor Source

The Anchor datatype - used for different purposes, e.g. text anchors or anchor positions of canvas items.

Instances

Enum Anchor 
Eq Anchor 
Ord Anchor 
Read Anchor

Internal.

Show Anchor

Internal.

GUIValue Anchor

Internal.

data Toggle Source

A simple Toggle datatype - used for different purposes.

Constructors

Off 
On 

Instances

Eq Toggle 
Ord Toggle 
Read Toggle

Internal.

Show Toggle

Internal.

GUIValue Toggle

Internal.

data Orientation Source

The Orientation datatype - used for different purposes.

Constructors

Horizontal 
Vertical 

data Alignment Source

The Alignment datatype - widget alignment etc.

Constructors

Top 
InCenter 
Bottom 
Baseline 

data Flexibility Source

The Flexibility datatype - used in the context of boxes (see containers).

Constructors

Rigid 
Flexible 

type CreationConfig w = IO StringSource

Internal.