![]() |
![]() |
A combo is a compound widget which crosses a text entry area and a pull down list. It may allow text entry or it may just allow list values depending on the settings.
Access members allow altering of the widget components.
Public Member Functions | ||||
Combo () | ||||
void | disable_activate () | |||
const Entry* | get_entry () const | |||
Entry* | get_entry () | |||
const ComboDropDown* | get_list () const | |||
ComboDropDown* | get_list () | |||
Glib::ListHandle<Glib::ustring> | get_popdown_strings () const | |||
const GtkCombo* | gobj () const | |||
Provides access to the underlying C GtkObject. | ||||
GtkCombo* | gobj () | |||
Provides access to the underlying C GtkObject. | ||||
void | remove_item_string (Gtk::Item& item) | |||
void | set_case_sensitive (bool val=true) | |||
Sets list case sensitive Determines if the list items and text comparisons for set_use_arrows_always() should be case sensitive. | ||||
void | set_item_string (Gtk::Item& item, const Glib::ustring& item_value) | |||
Set the current entry Glib::ustring Call this function on an item if it isn't a label or you want it to have a different value to be displayed in the entry. | ||||
void | set_popdown_strings (const Glib::ListHandle<Glib::ustring>& strings) | |||
Insert a list of items. | ||||
void | set_use_arrows (bool arrows_on=true) | |||
Set arrows keys to change value Up and down will scroll through the list items. | ||||
void | set_use_arrows_always (bool arrows_always=true) | |||
Set arrows keys to change if value not in list Up and down will scroll through the list items but only change the current value if the text does not match a list item. | ||||
void | set_value_in_list (bool value=true, bool empty=false) | |||
Allow direct text entry Whether the text in the entry must be or not be in the list. | ||||
virtual | ~Combo () | |||
Related Functions | ||||
(Note that these are not member functions.) | ||||
Gtk::Combo* | wrap (GtkCombo* object, bool take_copy=false) | |||
|
virtual Gtk::Combo::~Combo | ( | ) | [virtual] |
Gtk::Combo::Combo | ( | ) |
void Gtk::Combo::disable_activate | ( | ) |
const Entry* Gtk::Combo::get_entry | ( | ) | const |
Entry* Gtk::Combo::get_entry | ( | ) |
const ComboDropDown* Gtk::Combo::get_list | ( | ) | const |
ComboDropDown* Gtk::Combo::get_list | ( | ) |
Glib::ListHandle<Glib::ustring> Gtk::Combo::get_popdown_strings | ( | ) | const |
const GtkCombo* Gtk::Combo::gobj | ( | ) | const [inline] |
GtkCombo* Gtk::Combo::gobj | ( | ) | [inline] |
void Gtk::Combo::remove_item_string | ( | Gtk::Item& | item | ) |
void Gtk::Combo::set_case_sensitive | ( | bool | val = true |
) |
Sets list case sensitive Determines if the list items and text comparisons for set_use_arrows_always() should be case sensitive.
void Gtk::Combo::set_item_string | ( | Gtk::Item& | item, | |
const Glib::ustring & | item_value | |||
) |
Set the current entry Glib::ustring Call this function on an item if it isn't a label or you want it to have a different value to be displayed in the entry.
void Gtk::Combo::set_popdown_strings | ( | const Glib::ListHandle< Glib::ustring > & | strings | ) |
Insert a list of items.
void Gtk::Combo::set_use_arrows | ( | bool | arrows_on = true |
) |
Set arrows keys to change value Up and down will scroll through the list items.
Useful when there is a small list of value that the list must have.
arrows_on | true indicates the arrow keys scroll. |
void Gtk::Combo::set_use_arrows_always | ( | bool | arrows_always = true |
) |
Set arrows keys to change if value not in list Up and down will scroll through the list items but only change the current value if the text does not match a list item.
Useful when there is a small list of value that the list must have.
arrows_always | true indicates the value will change. |
void Gtk::Combo::set_value_in_list | ( | bool | value = true , |
|
bool | empty = false | |||
) |
Allow direct text entry Whether the text in the entry must be or not be in the list.
value | Set to true if the value must be in list. | |
empty | Set to true if the text area is allowed to be empty. |
Gtk::Combo* wrap | ( | GtkCombo * | object, | |
bool | take_copy = false | |||
) | [related] |
object | The C instance |
take_copy | False if the result should take ownership of the C instance. True if it should take a new copy or ref. |