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

HTk.Menuitems.MenuRadioButton

Description

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

Synopsis

Documentation

data MenuRadioButton Source

The MenuRadioButton datatype.

Instances

Eq MenuRadioButton 
Synchronized MenuRadioButton

You can synchronize on a menu radiobutton.

GUIObject MenuRadioButton

Internal.

HasEnable MenuRadioButton

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

HasJustify MenuRadioButton

A menu radiobutton has a configureable text justification.

HasUnderline MenuRadioButton

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

HasFont MenuRadioButton

You can specify the font of a menu radiobutton.

HasBorder MenuRadioButton

A menu radiobutton has a configureable border.

HasSize MenuRadioButton

You can specify the size of a menu radiobutton.

HasColour MenuRadioButton

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

HasCommand MenuRadioButton

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

HasVariable MenuRadioButton

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

HasBitMap MenuRadioButton

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

HasPhoto MenuRadioButton

You can specify the size of a menu radiobutton.

HasAccelerator MenuRadioButton

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

MenuItem MenuRadioButton

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

HasIndicator MenuRadioButton

You can display an indicator with a menu radiobutton.

GUIValue v => HasText MenuRadioButton v

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

GUIValue v => HasValue MenuRadioButton v

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

createMenuRadioButtonSource

Arguments

:: Menu

the parent menu.

-> [Config MenuRadioButton]

the list of configuration options for this menu radiobutton.

-> IO MenuRadioButton

A menu radiobutton.

Constructs a new menu radiobutton and returns a handler.