Combo —
A Combo box is a text entry field with a drop down list of predefined alternatives.
comboDisableActivate:: ComboClass c => c -> IO () |
comboGetList:: Combo -> IO List |
comboSetCaseSensitive:: ComboClass c => c -> Bool -> IO () |
comboSetPopdownStrings:: ComboClass c => c -> [String] -> IO () |
comboSetUseArrows:: ComboClass c => c -> Bool -> IO () |
comboSetUseArrowsAlways:: ComboClass c => c -> Bool -> IO () |
comboSetValueInList:: ComboClass c => c -> Bool -> Bool -> IO () |
The Combo widget allows to insert arbitrary widgets as alternatives. Due to the deprecated ListItem object we currently make no use of this feature.
Stops the GtkCombo widget from showing the popup list when the Entry emits the "activate" signal, i.e. when the Return key is pressed. This may be useful if, for example, if you want the Return key to close a dialog instead.
| comboDisableActivate | :: c | :: IO () |
Specify whether the entered text is case sensitive when it comes to matching the users input with the predefined alternatives.
| comboSetCaseSensitive | :: c | :: Bool | :: IO () |
| c | val |
Insert a set of Strings into the Combo drop down list.
| comboSetPopdownStrings | :: c | :: [String] | :: IO () |
| c | strs |
Specify if the user may use the cursor keys to navigate the list.
| comboSetUseArrows | :: c | :: Bool | :: IO () |
| c | val |