Re: [pygtk] Difference between image format

2004-04-23 Thread Gustavo J. A. M. Carneiro
A Sex, 2004-04-23 às 03:14, jromero escreveu: Which is the difference between the objects GtkImage, GtkPixbuf, GtkPixmap and GtkDrawabl? Any? GtkImage - gtk widget that draws an image GtkPixbuf - doesn't exist, it is called GdkPixbuf, which is a client-side object that holds an image

Re: [pygtk] autoconf for a pygtk application

2004-04-23 Thread nf
On Wed, 2004-04-21 at 16:33, John (J5) Palmieri wrote: On Wed, 2004-04-21 at 06:39, nf wrote: Hi list, I'm writing the following application http://www.scheinwelt.at/~norbertf/wbumount/ to help people with their umount - device is busy problems. Unfortunately i am new to the whole

[pygtk] Accel group - Toolbar

2004-04-23 Thread jromero
I am doing a Imageviewer with PyGTK. Just I have do the toolbar. Now, I want to do an 'accel group': associating shortkeys to buttons of the toolbar. It is possible? And, can be the same shortkey of the menu and toolbar? Thanks ___ pygtk mailing

Re: [pygtk] How do I exit?

2004-04-23 Thread Johan Dahlin
Why doesn't it exit if I hit Ctl-C? It just sits there. I have to hit Ctl-Z then kill %1. My glib_version is (2, 2, 2). I'm running on Solaris 9 should that make a difference. For gtk.main a special timeout handler is installed so python events aren't starved. Basically the mainloops just

Re: [pygtk] How do I exit?

2004-04-23 Thread Skip Montanaro
Why doesn't it exit if I hit Ctl-C? It just sits there. I have to hit Ctl-Z then kill %1. My glib_version is (2, 2, 2). I'm running on Solaris 9 should that make a difference. ... Johan So, use gtk.main() or file a bug against GMainLoop.main() Maybe Johan just

Re: [pygtk] How do I exit?

2004-04-23 Thread Skip Montanaro
Jan Or simply take a look at the FAQ: Jan http://www.async.com.br/faq/pygtk/index.py?req=showfile=faq20.003.htp Signals... ack! pfft! Thanks for the reminder to check the FAQ, but I like the solution I posted better. Skip ___ pygtk mailing

Re: [pygtk] How do I exit?

2004-04-23 Thread Skip Montanaro
Skip Signals... ack! pfft! Thanks for the reminder to check the FAQ, Skip but I like the solution I posted better. Except it's not working in the context of the larger application... :-( Skip ___ pygtk mailing list [EMAIL PROTECTED]

[pygtk] TreeModelFilter example?

2004-04-23 Thread Don Allingham
Is there an example of how to use the TreeModelFilter? It does not seem to work in the same manner as TreeModelSort. model = gtk.TreeModelFilter(mymodel) will fail with a NotImplementedError: gtk.TreeModelFilter is an abstract widget However, I can't seem to use it like a GenericTreeModel

Re: [pygtk] TreeModelFilter example?

2004-04-23 Thread John Finlay
Don Allingham wrote: Is there an example of how to use the TreeModelFilter? It does not seem to work in the same manner as TreeModelSort. model = gtk.TreeModelFilter(mymodel) will fail with a NotImplementedError: gtk.TreeModelFilter is an abstract widget However, I can't seem to use it