|
Graphics.UI.Gtk.MenuComboToolbar.ComboBoxEntry | Portability | portable (depends on GHC) | Stability | provisional | Maintainer | gtk2hs-users@lists.sourceforge.net |
|
|
|
|
|
Description |
A text entry field with a dropdown list
- Module available since Gtk+ version 2.4
|
|
Synopsis |
|
|
|
|
Detail
|
|
A ComboBoxEntry is a widget that allows the user to choose from a list
of valid choices or enter a different value. It is very similar to a
ComboBox, but it displays the selected value in an entry to allow
modifying it.
In contrast to a ComboBox, the underlying model of a ComboBoxEntry must
always have a text column (see comboBoxEntrySetTextColumn), and the entry
will show the content of the text column in the selected row. To get the
text from the entry, use comboBoxEntryGetActiveText.
The changed signal will be
emitted while typing into a ComboBoxEntry, as well as when selecting an
item from the ComboBoxEntry's list. Use comboBoxGetActive or
comboBoxGetActiveIter to discover whether an item was actually selected
from the list.
Connect to the activate signal of the Entry (use binGetChild) to detect
when the user actually finishes entering text.
|
|
Class Hierarchy
|
|
| GObject
| +----Object
| +----Widget
| +----Container
| +----Bin
| +----ComboBox
| +----ComboBoxEntry
|
|
Types
|
|
|
|
|
|
|
|
|
|
|
|
|
Constructors
|
|
|
Creates a new ComboBoxEntry which has a Entry as child. After
construction, you should set a model using comboBoxSetModel and a
text column using comboBoxEntrySetTextColumn.
|
|
|
Creates a new ComboBoxEntry with a store containing strings.
See comboBoxEntrySetModelText.
|
|
comboBoxEntryNewWithModel | Source |
|
|
|
Methods
|
|
|
Set a model box that holds strings.
This function stores a Graphics.UI.Gtk.ModelView.ListStore with the
widget and sets the model to the list store. The widget can contain only
strings. The model can be retrieved with comboBoxGetModel. The list
store can be retrieved with comboBoxGetModelText.
Any exisiting model or renderers are removed before setting the new text
model.
In order to respond to new texts that the user enters, it is necessary to
connect to the Graphics.UI.Gtk.Entry.Entry.entryActivate signal of the
contained Graphics.UI.Gtk.Entry.Entry.Entry an insert the text into the
text model which can be retrieved with
comboBoxGetModelText.
Note that the functions comboBoxAppendText, comboBoxInsertText,
comboBoxPrependText, comboBoxRemoveText and comboBoxGetActiveText
can be called on a combo box only once comboBoxEntrySetModelText is
called.
|
|
comboBoxEntrySetTextColumn | Source |
|
:: ComboBoxEntryClass self | | => self | textColumn - A column in model to get the strings from.
| -> ColumnId row String | | -> IO () | | Sets the model column should be use to get strings from to
be textColumn.
|
|
|
comboBoxEntryGetTextColumn | Source |
|
:: ComboBoxEntryClass self | | => self | returns A column in the data source model of entryBox.
| -> IO (ColumnId row String) | | Returns the column which is used to get the strings from.
|
|
|
|
Retrieve the text currently in the entry.
- Returns Nothing if no text is selected or entered.
- Availabe in Gtk 2.6 or higher.
|
|
Attributes
|
|
|
A column in the data source model to get the strings from.
Allowed values: >= 0
Default value: Graphics.UI.Gtk.ModelView.CustomStore.invalidColumnId
|
|
Produced by Haddock version 2.6.0 |