|
| Graphics.UI.Gtk.MenuComboToolbar.CheckMenuItem |
|
|
|
|
| Description |
| This widget implements a MenuItem with a check next to it.
|
|
| Synopsis |
|
|
|
| Documentation |
|
| data CheckMenuItem |
|
|
| class MenuItemClass o => CheckMenuItemClass o |
|
|
| checkMenuItemNew :: IO CheckMenuItem |
| Create a new MenuItem with a check next to it.
|
|
| checkMenuItemNewWithLabel :: String -> IO CheckMenuItem |
| Create a new CheckMenuItem with a Label inside.
|
|
| checkMenuItemNewWithMnemonic :: String -> IO CheckMenuItem |
| Create a new CheckMenuItem with a Label inside. Underscores in the
label string indicate the mnemonic for the menu item.
|
|
| checkMenuItemSetActive :: CheckMenuItemClass mi => mi -> Bool -> IO () |
| Sets the active state of the menu item's check box.
|
|
| checkMenuItemGetActive :: CheckMenuItemClass mi => mi -> IO Bool |
| Returns whether the check menu item is active.
|
|
| checkMenuItemToggled :: CheckMenuItemClass mi => mi -> IO () |
| Emits the toggled signal.
|
|
| checkMenuItemSetInconsistent :: CheckMenuItemClass mi => mi -> Bool -> IO () |
| Set the state of the menu item check to `inconsistent'.
|
|
| checkMenuItemGetInconsistent :: CheckMenuItemClass mi => mi -> IO Bool |
| Query if the menu check is inconsistent (inbetween).
|
|
| checkMenuItemGetDrawAsRadio :: CheckMenuItemClass mi => mi -> IO Bool |
| Returns whether the menu item is drawn like a RadioMenuItem.
|
|
| checkMenuItemSetDrawAsRadio :: CheckMenuItemClass mi => mi -> Bool -> IO () |
| Sets whether the menu item is drawn like a RadioMenuItem.
|
|
| Produced by Haddock version 0.6 |