[pygtk] gnomeprint questions

2004-03-04 Thread Alex Roitman
Hello, I have a few questions about gnomeprint. Some of them are not specific to python bindings, but in case anybody on this list knows the answer I would greatly appreciate any help. 1. How do I set the paper size for a job? I know that it can be later selected from the menu, but I would like

Re: [pygtk] Focus and CList

2004-03-04 Thread Christian Robottom Reis
On Thu, Mar 04, 2004 at 03:52:02PM -0500, Jamey Cribbs wrote: > I have a CList with several columns on a window. When the you click on > a clist column header, it puts a dashed-line around the column header (I > guess it is making it the focused widget). Is there a way to turn this > off. I d

[pygtk] Focus and CList

2004-03-04 Thread Jamey Cribbs
I have a CList with several columns on a window. When the you click on a clist column header, it puts a dashed-line around the column header (I guess it is making it the focused widget). Is there a way to turn this off. I don't like the look of the dashed-line around the column header. Thank

Re: [pygtk] Gnome panel output

2004-03-04 Thread Peter Tennekes
Thank to thoose who helped, butI found the solution somewhere else. Putting the applet in a windew helps to detect most problems, but thoose related to the specific panel environment are not shown. What I did was simply redirecting the stdout and stderr: def redirect_out(self,file): stdo =

Re: [pygtk] Is a bug in gtk.Menu - Motion/Enter/Leave_Notify Event ???

2004-03-04 Thread Martin Grimme
Am Do, den 04.03.2004 schrieb [EMAIL PROTECTED] um 15:20: > I want to make a menubar.deselect() when the mouse leave the application > (i want avoid, that the popupmenu will still on top, if the user change > into a other application). > > Problem: When the menu is popup i get only events from

[pygtk] Is a bug in gtk.Menu - Motion/Enter/Leave_Notify Event ???

2004-03-04 Thread Martin . Zohlhuber
I want to make a menubar.deselect() when the mouse leave the application (i want avoid, that the popupmenu will still on top, if the user change into a other application). Problem: When the menu is popup i get only events from this menu. I can move the mousepointer around the toplevel window b

Re: [pygtk] Tree View Widget

2004-03-04 Thread Christian Robottom Reis
[Thomas Moore] > > Hi: > > > > I've found tutorial Chapter 14, "Tree View Widget" is empty. > > Is there any example to demonstrate how to use this widget? [Ling Li] > Following is a scratch of code in one of my program, it only uses ListStore. > I hope it will be some help. Note that the source

Re: [pygtk] Tree View Widget

2004-03-04 Thread Dave Aitel
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I used a treeview in the LinuxJournal article as well. It might be worth a read... - -dave Ling Li wrote: | Following is a scratch of code in one of my program, it only uses | ListStore. I hope it will be some help. | | class Local(): | | COL_ICON =

Re: [pygtk] FAQ 18.8: What basic pattern should I follow when using a DrawingArea?

2004-03-04 Thread Gustavo J. A. M. Carneiro
A Qui, 2004-03-04 às 09:26, Andrew P. Lentvorski, Jr. escreveu: > On Tue, 2 Mar 2004, Gustavo J. A. M. Carneiro wrote: > > > That is a sign of bad design. This only happens if you do this: > > def expose_event_cb(widget, event): > > # start some drawing > > whil

Re: [pygtk] Tree View Widget

2004-03-04 Thread Ling Li
Following is a scratch of code in one of my program, it only uses ListStore. I hope it will be some help. class Local(): COL_ICON = 0 COL_FILENAME = 1 COL_FILESIZE = 2 COL_FILETYPE = 3 COL_FILEMTIME = 4 COL_ISDIR = 5 COL_SIZE_IN_BYTES = 6 COL_MTIME = 7 def __i

Re: [pygtk] FAQ 18.8: What basic pattern should I follow when using a DrawingArea?

2004-03-04 Thread Andrew P. Lentvorski, Jr.
On Tue, 2 Mar 2004, Gustavo J. A. M. Carneiro wrote: > That is a sign of bad design. This only happens if you do this: > def expose_event_cb(widget, event): > # start some drawing > while more_work: > # do some heavy work to obtain re

[pygtk] Tree View Widget

2004-03-04 Thread Thomas Moore
Hi: I've found tutorial Chapter 14, "Tree View Widget" is empty. Is there any example to demonstrate how to use this widget? ___ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.c