Re: how to clear out a ComboBoxEntry



It does help, thanks. No need for me to persue this on a more difficult
plane than necessary.
thanks
shawn

On 8/18/06, Iago Rubio <iago iagorubio com> wrote:

On Thu, 2006-08-17 at 12:22 -0400, shawn bright wrote:
> Hey there,
> i am using pygtk to build an app.
> i am using a gtk ComboBoxEntry with the convienence methods
> like insert_text() , remove_text()
> Does anyone know how to completely empty one out ?
> ie, remove all entries at once ?

If you're using those calls, your combo box uses a list store as tree
model so the function below will suffice.

void remove_all (GtkComboBox *combo_box)
{
  GtkTreeModel* model;
  model = gtk_combo_box_get_model (combo_box);
  gtk_list_store_clear (GTK_LIST_STORE(model));
}

Hope this helps.
--
Iago Rubio

_______________________________________________
gtk-app-devel-list mailing list
gtk-app-devel-list gnome org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]