Displaying Relational Data from an Xml File

2007-08-21 Thread dhkuhl
undefined ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: reorderable treeview question

2007-08-21 Thread Ferenc Gerlits
I figured it out; the problem was that by default, Glade sets the GDK_POINTER_MOTION_HINT_MASK in the event mask for TreeView widgets, which prevents the reordering from working properly. Unsetting this bit in the event mask (under Common/Events in Glade) solved the problem. It looks like

Re: Accelerator keys and popup menus?

2007-08-21 Thread Stefan Kost
hi, Gabriel Schulhof wrote: Hi! On Sun, 2007-08-19 at 23:48 +0300, Stefan Kost wrote: I read about the differences. I really want accelerators. I was able to hack it: Create a plain old regular menubar-type menu with accelerators. Then ref the submenu you want to make into a popup menu

dynamic gtk_list_store

2007-08-21 Thread Martijn Bos
Hi list, I'm wondering whether it's possible to create a gtk_list_store at runtime. Sometimes my data has (for instance) 1 column and sometimes my data has (for instance) 8 columns. (It will be read from file) As far as I have seen in he documentation, the model is designed when programming.

Re: dynamic gtk_list_store

2007-08-21 Thread Peter Clifton
On Tue, 2007-08-21 at 22:20 +0200, Martijn Bos wrote: Hi list, I'm wondering whether it's possible to create a gtk_list_store at runtime. Sometimes my data has (for instance) 1 column and sometimes my data has (for instance) 8 columns. (It will be read from file) As far as I have seen