Re: [pygtk] Subclassing GtkWidget in PyGTK

2004-06-10 Thread Johan Dahlin
(sorry that I missed this mail, thanks to christian for reminding me, try to put me on the cc list in the future) tis 2004-06-08 klockan 09.33 skrev David M. Cook: On Fri, Jun 04, 2004 at 01:35:37PM +0200, Johan Dahlin wrote: That demonstrates how to subclass a GtkWidget in PyGTK. What

[pygtk] When will 2.4 be official?

2004-06-10 Thread Jonathon McKitrick
I've been using it for a while, and I was wondering when it will be announced. jm -- My other computer is your Windows box. ___ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ:

Re: [pygtk] When will 2.4 be official?

2004-06-10 Thread Johan Dahlin
tor 2004-06-10 klockan 16.02 skrev Jonathon McKitrick: I've been using it for a while, and I was wondering when it will be announced. Lot's of people has asked that recently. I don't consider it stable enough to replace 2.2.0 yet. Maybe 1 month, maybe 3. No definite plan. But it certainly

Re: [pygtk] When will 2.4 be official?

2004-06-10 Thread Tom Cato Amundsen
On Thu, Jun 10, 2004 at 04:11:37PM +0200, Johan Dahlin wrote: tor 2004-06-10 klockan 16.02 skrev Jonathon McKitrick: I've been using it for a while, and I was wondering when it will be announced. Lot's of people has asked that recently. I don't consider it stable enough to replace 2.2.0

[pygtk] Reading gtk.gdk.GC values

2004-06-10 Thread Steve Chaplin
How can the values a gtk.gdk.GC be read? Using 'gc.get_values()' gives the error AttributeError: 'gtk.gdk.GCX11' object has no attribute 'get_values' Using 'gc.foreground' gives the error AttributeError: 'gtk.gdk.GCX11' object has no attribute 'foreground' Steve

Re: [pygtk] Reading gtk.gdk.GC values

2004-06-10 Thread John Finlay
Steve Chaplin wrote: How can the values a gtk.gdk.GC be read? Using 'gc.get_values()' gives the error AttributeError: 'gtk.gdk.GCX11' object has no attribute 'get_values' Using 'gc.foreground' gives the error AttributeError: 'gtk.gdk.GCX11' object has no attribute 'foreground' I'm assuming you

[pygtk] Problem getting splash screen to work right.

2004-06-10 Thread Jonathon McKitrick
Here is what I want to happen: I want the splash to come up, with no other windows. When everything is done loading, I want the splash to disappear. Then, I want the ready-to-use main window to appear. I cannot get the splash to appear SEPARATE from the main window. They are either both there,

[pygtk] software to help automate glade/pygtk development

2004-06-10 Thread Dave Reed
Sorry this didn't go through the first time. There have been a number of questions on this list about using Glade/pygtk together. I have written some software that produces a skeleton of your program's code with empty callbacks/signal handlers based on the contents of the glade XML file. I wrote

Re: [pygtk] Reading gtk.gdk.GC values

2004-06-10 Thread Steve Chaplin
On Fri, 2004-06-11 at 04:59, John Finlay wrote: I'm assuming you are using PyGTK 2.3.91 or later and are using gtk.gdk.Drawable.new_gc() to create the GC. The lack of attributes would appear to be an unintended side-effect of the change to add new types on the fly (bug #129032) - in this