Lines Matching refs:store
182 Glib::RefPtr<Gtk::ListStore> store = fontlister->get_font_list();
183 gtk_tree_view_set_model (GTK_TREE_VIEW(fsel->family_treeview), GTK_TREE_MODEL (Glib::unwrap (store)));
299 // We need our own copy of the style list store since the font-family
302 // TODO: add store to SPFontSelector struct and reuse.
321 // Create our own store of styles for selected font-family and find index of best style match
324 GtkListStore *store = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_STRING); // Where is this deleted?
327 gtk_list_store_append (store, &iter);
328 gtk_list_store_set (store, &iter,
338 // Attach store to tree view. Can trigger style changed signal (but not FONT_SET):
339 gtk_tree_view_set_model (GTK_TREE_VIEW (fsel->style_treeview), GTK_TREE_MODEL (store));
368 GtkListStore *store = GTK_LIST_STORE(gtk_combo_box_get_model (GTK_COMBO_BOX(fsel->size)));
369 gtk_list_store_clear(store);