Part of kiwi.interfaces View In Hierarchy
Method | prefill | Fills the Combo with listitems corresponding to the itemdata |
Method | append_item | Adds a single item to the Combo. |
Method | clear | Removes all items from the widget |
Method | select | |
Method | select_item_by_position | Selects an item in the combo from a integer where 0 |
Method | select_item_by_label | |
Method | select_item_by_data | |
Method | get_selected_label | |
Method | get_selected_data | |
Method | get_selected | |
Method | get_model_strings | Undocumented |
Method | get_model_items | Undocumented |
Inherited from Interface:
Method | providedBy | Undocumented |
Fills the Combo with listitems corresponding to the itemdata provided.
Parameters:
>>> [ label0, label1, label2 ]
If you require a data item to be specified for each item, use a
2-item tuple for each element. The format is as follows:
>>> [ ( label0, data0 ), (label1, data1), ... ]
Parameters | label | a string with the text to be added |
data | the data to be associated with that item |