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

Safe HaskellNone
LanguageHaskell98

HTk.Kernel.Tooltip

Synopsis

Documentation

class GUIObject w => HasTooltip w where Source #

Widgets can have tooltips (if you are using tixwish).

Methods

tooltip :: String -> w -> IO w Source #

destroyTooltip :: w -> IO () Source #

Instances

HasTooltip LabelFrame Source #

A labelled frame can have a tooltip.

HasTooltip NoteBookPage Source #

A notebook page can have a tooltip.

HasTooltip Message Source #

A message widget can have a tooltip (only displayed if you are using tixwish).

HasTooltip ScrollBar Source #

A scrollbar can have a tooltip.

HasTooltip Canvas Source #

A canvas can have a tooltip (only displayed if you are using tixwish).

HasTooltip Editor Source #

An editor widget can have a tooltip.

HasTooltip Button Source #

A button can have a tooltip.

HasTooltip Label Source #

A label widget can have a tooltip (only displayed if you are using tixwish).

HasTooltip MenuButton Source #

A menubutton can have a tooltip (only displayed if you are using tixwish).

HasTooltip (Scale a) Source #

A scale widget can have a tooltip.

Methods

tooltip :: String -> Scale a -> IO (Scale a) Source #

destroyTooltip :: Scale a -> IO () Source #

HasTooltip (ListBox a) Source #

A listbox can have a tooltip (only displayed if you are using tixwish).

HasTooltip (OptionMenu a) Source #

An option menu can have a tooltip (only displayed if you are using tixwish).

HasTooltip (Entry a) Source #

An entry can have a tooltip (only displayed if you are using tixwish).

Methods

tooltip :: String -> Entry a -> IO (Entry a) Source #

destroyTooltip :: Entry a -> IO () Source #

HasTooltip (CheckButton a) Source #

An checkbutton can have a tooltip (only displayed if you are using tixwish).

HasTooltip (RadioButton a) Source #

A radiobutton can have a tooltip.