signal callback delegate or function to connect
string callback(string path, gtk.combo_box.ComboBox comboBox)
path the GtkTreePath string from the combo box's current model to format text for (optional)
comboBox the instance the signal is connected to (optional)
Returns a newly allocated string representing path for the current GtkComboBox model.
Yes.After to execute callback after default handler, No.After to execute before (default)
Signal ID
Connect to FormatEntryText signal.
For combo boxes that are created with an entry (See GtkComboBox:has-entry).
A signal which allows you to change how the text displayed in a combo box's entry is displayed.
Connect a signal handler which returns an allocated string representing path. That string will then be used to set the text in the combo box's entry. The default signal handler uses the text from the GtkComboBox::entry-text-column model column.
Here's an example signal handler which fetches data from the model and displays it in the entry.