GTK+ 2.19.0 released

2009-11-01 Thread Matthias Clasen
GTK+ 2.19.0 is now available for download at: ftp://ftp.gtk.org/pub/gtk/2.19/ http://download.gnome.org/sources/gtk+/2.19/ md5 sums: 3f380acb0632687d84fdf8f70b0f1d07 gtk+-2.19.0.tar.bz2 302b1dae804f30c88fbcbde36843a91c gtk+-2.19.0.tar.gz sha1 sums: b7df96eea0b01f7973c9a2e0a0d4e36a63b0feac g

Re: Need help to set a cursor/focus on treeview row!

2009-11-01 Thread Daniel B. Thurman
On 10/30/2009 05:48 PM, Daniel B. Thurman wrote: > I am learning, so please bear with me! > > I have the following code: > > def expandHome(self, model, iter=None, defaultHome=None): > ''' expand user's home directory ''' > if not defaultHome: > return > ran

Re: GtkTreeView: g_signal_handlers_unblock_by_func

2009-11-01 Thread Carlos Pereira
Tadej Borovšak wrote: Hello. Essentially adding a simple store model: store = gtk_list_store_new (1, G_TYPE_STRING); while (foo_bar != NULL) { gtk_list_store_append (store, &iter); gtk_list_store_set (store, &iter, 0, my_name, -1); } gtk_tree_view_set_model (GTK_TREE_VIEW (treeview), GT

Re: Program Crashes when Removing a Page

2009-11-01 Thread dhk
David Nečas wrote: > On Fri, Oct 30, 2009 at 06:09:16AM -0400, dhk wrote: >> I have a notebook that crashes the program when >> gtk_notebook_remove_page(GTK_NOTEBOOK(nb), page_num) is called. Each >> page of the notebook has a lot of stuff on it and the crash always >> happens on the same page. T