Lines Matching refs:combo

22 void XAP_makeGtkComboBoxText(GtkComboBox * combo, GType secondary)  in XAP_makeGtkComboBoxText()  argument
31 gtk_combo_box_set_model(combo, GTK_TREE_MODEL(store)); in XAP_makeGtkComboBoxText()
33 gtk_cell_layout_clear(GTK_CELL_LAYOUT(combo)); in XAP_makeGtkComboBoxText()
35 gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(combo), cell, TRUE); in XAP_makeGtkComboBoxText()
36 gtk_cell_layout_set_attributes(GTK_CELL_LAYOUT(combo), cell, in XAP_makeGtkComboBoxText()
40 void XAP_makeGtkComboBoxText2(GtkComboBox * combo, GType secondary, in XAP_makeGtkComboBoxText2() argument
45 gtk_combo_box_set_model(combo, GTK_TREE_MODEL(store)); in XAP_makeGtkComboBoxText2()
47 gtk_cell_layout_clear(GTK_CELL_LAYOUT(combo)); in XAP_makeGtkComboBoxText2()
49 gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(combo), cell, TRUE); in XAP_makeGtkComboBoxText2()
50 gtk_cell_layout_set_attributes(GTK_CELL_LAYOUT(combo), cell, in XAP_makeGtkComboBoxText2()
54 void XAP_populateComboBoxWithIndex(GtkComboBox * combo, in XAP_populateComboBoxWithIndex() argument
57 GtkListStore *store = GTK_LIST_STORE(gtk_combo_box_get_model(combo)); in XAP_populateComboBoxWithIndex()
66 void XAP_appendComboBoxText(GtkComboBox* combo, const char* text) in XAP_appendComboBoxText() argument
69 GtkListStore *store = GTK_LIST_STORE(gtk_combo_box_get_model(combo)); in XAP_appendComboBoxText()
74 void XAP_appendComboBoxTextAndInt(GtkComboBox * combo, const char * text, in XAP_appendComboBoxTextAndInt() argument
78 GtkListStore *store = GTK_LIST_STORE(gtk_combo_box_get_model(combo)); in XAP_appendComboBoxTextAndInt()
83 void XAP_appendComboBoxTextAndString(GtkComboBox * combo, const char * text, in XAP_appendComboBoxTextAndString() argument
87 GtkListStore *store = GTK_LIST_STORE(gtk_combo_box_get_model(combo)); in XAP_appendComboBoxTextAndString()
92 void XAP_appendComboBoxTextAndStringString(GtkComboBox * combo, in XAP_appendComboBoxTextAndStringString() argument
98 GtkListStore *store = GTK_LIST_STORE(gtk_combo_box_get_model(combo)); in XAP_appendComboBoxTextAndStringString()
103 void XAP_appendComboBoxTextAndIntString(GtkComboBox * combo, in XAP_appendComboBoxTextAndIntString() argument
109 GtkListStore *store = GTK_LIST_STORE(gtk_combo_box_get_model(combo)); in XAP_appendComboBoxTextAndIntString()
114 int XAP_comboBoxGetActiveInt(GtkComboBox * combo) in XAP_comboBoxGetActiveInt() argument
118 gtk_combo_box_get_active_iter(combo, &iter); in XAP_comboBoxGetActiveInt()
119 GtkTreeModel *store = gtk_combo_box_get_model(combo); in XAP_comboBoxGetActiveInt()
124 std::string XAP_comboBoxGetActiveText(GtkComboBox * combo) in XAP_comboBoxGetActiveText() argument
128 gtk_combo_box_get_active_iter(combo, &iter); in XAP_comboBoxGetActiveText()
129 GtkTreeModel *store = gtk_combo_box_get_model(combo); in XAP_comboBoxGetActiveText()
134 bool XAP_comboBoxSetActiveFromIntCol(GtkComboBox * combo, in XAP_comboBoxSetActiveFromIntCol() argument
138 GtkTreeModel *store = gtk_combo_box_get_model(combo); in XAP_comboBoxSetActiveFromIntCol()
144 gtk_combo_box_set_active_iter(combo, &iter); in XAP_comboBoxSetActiveFromIntCol()