Having some difficulty with a combo box and associated tree store.  When I do 
this, nothing shows up...
   
  GtkTreeStore *myTreeStore=gtk_tree_store_new(1, G_TYPE_STRING);
  GtkWidget *myComboBox=lookup_widget(mainWindow, "myComboBox");
  gtk_combo_box_set_model(GTK_COMBO_BOX(myComboBox), 
GTK_TREE_MODEL(myTreeStore));
   
  GtkTreeIter tempIter;
  gtk_tree_model_get_iter(GTK_TREE_MODEL(myTreeStore), &tempIter);
  gtk_tree_store_append(myTreeStore,  &iter, NULL);
  gtk_tree_store_set(myTreeStore, &iter, 0, "test", -1);
   
  I ultimately want to make more than 1 column, and I need to change the tree 
store data on the fly.  So I would like to use the treeStore instead of the 
default combo box new_text and append_text.
   
  Thanks for any help,
  Mark

        
---------------------------------
Everyone is raving about the all-new Yahoo! Mail beta.
_______________________________________________
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Reply via email to