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

HTk.Menuitems.MenuCheckButton

Description

HTk's menu checkbutton. A simple checkbutton inside a menu associated with a polymorphic variable.

Synopsis

Documentation

data MenuCheckButton Source

The MenuCheckButton datatype.

Instances

Eq MenuCheckButton

Internal.

Synchronized MenuCheckButton

You can synchronize on a menu checkbutton.

GUIObject MenuCheckButton

Internal.

HasEnable MenuCheckButton

A menu checkbutton is a stateful object, it can be enabled or disabled.

HasJustify MenuCheckButton

A menu checkbutton has a configureable text justification.

HasUnderline MenuCheckButton

You can set the index of a text character to underline.

HasFont MenuCheckButton

You can specify the font of a menu checkbutton.

HasBorder MenuCheckButton

A menu checkbutton has a configureable border.

HasSize MenuCheckButton

You can specify the size of a menu checkbutton.

HasColour MenuCheckButton

A menu checkbutton has a normal foreground and background colour and an active/disabled foreground and background colour.

HasCommand MenuCheckButton

When a menu checkbutton is clicked, a corresponding event is invoked.

HasVariable MenuCheckButton

The polymorphic variable the menu checkbutton's value is associated with.

HasBitMap MenuCheckButton

A menu checkbutton can contain a bitmap (instead of text or an image).

HasPhoto MenuCheckButton

A menu checkbutton can contain an image (instead of text or a bitmap).

HasAccelerator MenuCheckButton

A menu checkbutton has an optional text to display as a reminder about a keystroke binding.

MenuItem MenuCheckButton

A menu checkbutton is a menu item (any menu item instantiates the abstract class MenuItem).

HasIndicator MenuCheckButton

You can display an indicator with a menu checkbutton.

GUIValue v => HasText MenuCheckButton v

A menu checkbutton can contain text (instead of an image or bitmap).

GUIValue v => HasValue MenuCheckButton v

A menu checkbutton has a value, that corresponds to a polymorphic TkVariable.

createMenuCheckButtonSource

Arguments

:: Menu

the parent menu.

-> [Config MenuCheckButton]

the list of configuration options for this menu checkbutton.

-> IO MenuCheckButton

A menu checkbutton.

Constructs a new menu checkbutton and returns a handler.