GtkCombo
DEPRECATED. Text entry field with a dropdown list.
Object Hierarchy
Description
WARNING! This class has been deprecated in PHP-GTK 2 and should NOT be used in newly written code. Use GtkComboBox instead.The GtkCombo widget consists of a single-line text entry field and a drop-down list. This is similar to the select element in HTML, but with a more limited functionality. It is recomended that you use GtkComboBox instead.
Constructors
GtkCombo ();-- Creates a new combo box.
Methods
disable_activate() Â Stops the GtkCombo from showing the popup list on return key. set_case_sensitive() Â Whether the text entered is case sensitive. set_item_string() Â Sets the string representation of a particular list item. set_popdown_strings() Â Convenience function to set all of the items in the popup list. set_use_arrows() Â If the arrow can be used to step through the list. set_use_arrows_always() Â Obsolete function, does nothing. set_value_in_list() Â Whether the value entered must match one of the values in the list.
Fields
entry: Â Entry widget to type values. list: Â Dropdown list widget.