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

Safe HaskellNone
LanguageHaskell98

HTk.Widgets.ComboBox

Description

HTk's ComboBox. Only available when using tixwish. However this module needs to go in the uni-htk-widgets package because it depends on it.

Synopsis

Documentation

data GUIValue a => ComboBox a Source

The ComboBox datatype. A ComboBox is a so called mega widget composed of an entry widget and a list box. Both subwidgets are accessible by themselves.

Instances

GUIValue a => Eq (ComboBox a) 
GUIValue a => Destroyable (ComboBox a)

A combo box widget can be destroyed.

GUIValue a => Synchronized (ComboBox a)

You can synchronize on a combo box widget.

GUIValue a => GUIObject (ComboBox a)

Internal.

GUIValue a => HasEnable (ComboBox a)

A combo box widget is a stateful widget, it can be enabled or disabled.

GUIValue a => HasBorder (ComboBox a)

A combo box widget has a configureable border.

GUIValue a => HasSize (ComboBox a)

You can specify the size of a combo box widget-

GUIValue a => HasColour (ComboBox a)

A combo box widget has a background colour.

GUIValue a => HasAnchor (ComboBox a)

A combo box widget has a text anchor.

GUIValue a => Widget (ComboBox a)

A combo box has standard widget properties (focus, cursor, ...).

(GUIValue a, GUIValue [a]) => HasValue (ComboBox a) [a]

The value of a combo box is the list of the displayed objects (these are instances of class GUIValue and therefore instances of class Show).

newComboBox Source

Arguments

:: (GUIValue a, Container par) 
=> par

the list of configuration options for this combo box.

-> Bool

true if the user should be allowed to type into the entry of the ComboBox.

-> [Config (ComboBox a)] 
-> IO (ComboBox a)

A combo box.

Constructs a new combo box and returns a handler.

pick :: GUIValue a => Int -> Config (ComboBox a) Source

Sets the index item in the listbox to be the current value of the ComboBox.

entrySubwidget :: GUIValue a => ComboBox a -> Entry a Source

Retrieve the entry subwidget of a combo box.

listBoxSubwidget :: GUIValue a => ComboBox a -> ListBox a Source

Retrieve the list box subwidget of a combo box.