| Safe Haskell | None |
|---|---|
| Language | Haskell98 |
HTk.Kernel.Tooltip
- class GUIObject w => HasTooltip w where
- tooltip :: String -> w -> IO w
- destroyTooltip :: w -> IO ()
Documentation
class GUIObject w => HasTooltip w where Source
Widgets can have tooltips (if you are using tixwish).
Minimal complete definition
Nothing
Instances
| HasTooltip LabelFrame | A labelled frame can have a tooltip. |
| HasTooltip NoteBookPage | A notebook page can have a tooltip. |
| HasTooltip Button | A button can have a tooltip. |
| HasTooltip ScrollBar | A scrollbar can have a tooltip. |
| HasTooltip Canvas | A canvas can have a tooltip (only displayed if you are using tixwish). |
| HasTooltip Editor | An editor widget can have a tooltip. |
| HasTooltip Label | A label widget can have a tooltip (only displayed if you are using tixwish). |
| HasTooltip MenuButton | A menubutton can have a tooltip (only displayed if you are using tixwish). |
| HasTooltip Message | A message widget can have a tooltip (only displayed if you are using tixwish). |
| HasTooltip (CheckButton a) | An checkbutton can have a tooltip (only displayed if you are using tixwish). |
| HasTooltip (Entry a) | An entry can have a tooltip (only displayed if you are using tixwish). |
| HasTooltip (ListBox a) | A listbox can have a tooltip (only displayed if you are using tixwish). |
| HasTooltip (OptionMenu a) | An option menu can have a tooltip (only displayed if you are using tixwish). |
| HasTooltip (RadioButton a) | A radiobutton can have a tooltip. |
| HasTooltip (Scale a) | A scale widget can have a tooltip. |