[pygtk] glade ui with gtk

2011-05-31 Thread luis carvajal
i got pretty into the pygtk tutorial and now i want to know whats the meaning of using glade other than make the graphical design i think i don't need to make all the definitions after I got my .glade file and correct me if im wrong ; so what do i need to do to create apps using glade and pygtk?

[pygtk] hide gtk warning

2011-05-31 Thread Peter Irbizon
I am getting gtkwarning: gdk_property_change: assertion window ! =Null failed gtk.main() it is gdk bug but not fixed yet.How could I simply "not show/hide" this error warning? so user should never see it. thank you ___ pygtk mailing list pygtk@daa.com.

Re: [pygtk] Simplifying what's stored in a ListStore (was Re: Inconsistent format for "path" in TreeView callbacks)

2011-05-31 Thread Christian Becke
Am 07.05.2011 06:39, schrieb Jason Heeris: On 7 May 2011 03:24, Neil Muller wrote: On 6 May 2011 21:07, Jason Heeris wrote: Storing the object in a hidden column is fine, and what I assumed you were doing originally. Hah! Okay then, now that it's morning, I can't believe that didn't occur to

Re: [pygtk] gio.Mount.get_default_location()

2011-05-31 Thread Leon Bogaert
Hi Avi, Good guess :) I'm running Ubuntu 11.04 leon@polly:~$ dpkg -l | grep gir | grep glib ii gir1.2-glib-2.0 0.10.7-0ubuntu1 Introspection data for GLib, GObject, Gio and GModule leon@polly:~$ ls -al /usr/lib/girepository-1.0/Gio-2.0.typel

Re: [pygtk] gio.Mount.get_default_location()

2011-05-31 Thread Avi Levy
I can verify that John's instructions work on my system: >>> Gio.MountMountFlags.NONE It looks like you are running Linux, if possible what distro? For instance, I am running Ubuntu and the package containing gir bindings for gio is called gir1.0-glib-2.0 (0.9.3-0) the relevant file containing g

Re: [pygtk] gio.Mount.get_default_location()

2011-05-31 Thread Leon Bogaert
I already tried that: In [3]: Gio.MountMountFlags.NONE --- AttributeErrorTraceback (most recent call last) /home/leon/ in () AttributeError: type object 'MountMountFlags' has no attribute 'NONE' H