Lines Matching refs:combo_box
568 GtkWidget *combo_box = static_cast<GtkWidget *>(g_object_get_data(G_OBJECT(vb), "combo_box"));
574 gtk_combo_box_set_active (GTK_COMBO_BOX(combo_box) , i);
592 GtkWidget *combo_box = static_cast<GtkWidget *>(g_object_get_data(G_OBJECT(vb), "combo_box"));
593 if (!combo_box) {
596 GtkListStore *store = GTK_LIST_STORE(gtk_combo_box_get_model(GTK_COMBO_BOX(combo_box)));
615 gtk_widget_set_sensitive (combo_box, FALSE);
628 gtk_widget_set_sensitive (combo_box, FALSE);
632 gtk_widget_set_sensitive(combo_box, TRUE);
637 gtk_combo_box_set_active (GTK_COMBO_BOX(combo_box) , 0);
705 GtkWidget *combo_box = static_cast<GtkWidget *>(g_object_get_data(G_OBJECT(vb), "combo_box"));
706 if (combo_box) {
708 if (gtk_combo_box_get_active_iter (GTK_COMBO_BOX(combo_box), &iter)) {
709 GtkListStore *store = GTK_LIST_STORE(gtk_combo_box_get_model(GTK_COMBO_BOX(combo_box)));
867 GtkWidget *combo_box = gtk_combo_box_new_with_model (GTK_TREE_MODEL (store));
870 gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), renderer, FALSE);
871 gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), renderer, "pixbuf", 0, NULL);
875 gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), renderer, TRUE);
876 gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), renderer, "text", 1, NULL);
877 gtk_widget_show(combo_box);
878 gtk_box_pack_start(GTK_BOX(vb), combo_box, FALSE, FALSE, 0);
879 g_object_set_data(G_OBJECT(vb), "combo_box", combo_box);
883 g_signal_connect(G_OBJECT(combo_box), "changed", G_CALLBACK(sp_grad_edit_combo_box_changed), vb);
1371 GtkWidget *combo_box = static_cast<GtkWidget *>(g_object_get_data(G_OBJECT(object), "combo_box"));
1372 if (combo_box) {
1374 if (gtk_combo_box_get_active_iter (GTK_COMBO_BOX(combo_box), &iter)) {
1375 GtkListStore *store = GTK_LIST_STORE(gtk_combo_box_get_model(GTK_COMBO_BOX(combo_box)));