Lines Matching refs:store
138 gvs->store = Gtk::ListStore::create(*gvs->columns);
296 gvs->store->clear();
316 Gtk::TreeModel::Row row = *(gvs->store->append());
320 Gtk::TreeModel::Row row = *(gvs->store->append());
324 Gtk::TreeModel::Row row = *(gvs->store->append());
337 Gtk::TreeModel::Row row = *(gvs->store->append());
596 GtkListStore *store = GTK_LIST_STORE(gtk_combo_box_get_model(GTK_COMBO_BOX(combo_box)));
597 if (!store) {
600 gtk_list_store_clear(store);
603 /* Populate the combobox store */
613 gtk_list_store_append (store, &iter);
614 gtk_list_store_set (store, &iter, 0, NULL, 1, _("No stops in gradient"), 2, NULL, -1);
626 gtk_list_store_append (store, &iter);
627 gtk_list_store_set (store, &iter, 0, pb, 1, repr->attribute("id"), 2, stop, -1);
709 GtkListStore *store = GTK_LIST_STORE(gtk_combo_box_get_model(GTK_COMBO_BOX(combo_box)));
710 gtk_tree_model_get (GTK_TREE_MODEL(store), &iter, 2, &stop, -1);
866 GtkListStore *store = gtk_list_store_new (3, GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_POINTER);
867 GtkWidget *combo_box = gtk_combo_box_new_with_model (GTK_TREE_MODEL (store));
1375 GtkListStore *store = GTK_LIST_STORE(gtk_combo_box_get_model(GTK_COMBO_BOX(combo_box)));
1380 gtk_list_store_set (store, &iter, 0, pb, /*1, repr->attribute("id"),*/ 2, stop, -1);