Re: [pygtk] Is there a guide how to program with pygtk?

2003-03-16 Thread James Henstridge
David M. Cook wrote: On Tue, Dec 21, 2004 at 10:29:17PM -0200, Michel wrote: Hi Guys! I want to program in pygtk but I didn't find a guide, I read the faq and some examples but I want a reference guide... See FAQ item 1.7. Tell me if the pygtk is very unlike tkinter... I used

Re: [pygtk] PyGTK 2 Tutorial update

2003-03-16 Thread Kai Weber
distribution to use as an example in the tutorial. Please let me know if you have suggestions or find errors in the tutorial. I try learning pygtk with your nice tutorial. I have a question regarding the helloworld.py example. What is the reason to connect the clicked event on the button

Re: [pygtk] Any way to retrieve the title of a dialog?

2003-03-16 Thread Steve McClure
On Sat, 2003-03-15 at 21:39, James Henstridge wrote: Christian Reis wrote: On Wed, Mar 12, 2003 at 06:55:18PM -0500, Steve McClure wrote: I need to augment titles, at runtime, of dialogs created with Glade. I don't see anything in the API to do a get_title, but there is a

Re: [pygtk] Any way to retrieve the title of a dialog?

2003-03-16 Thread Steve McClure
On Sat, 2003-03-15 at 14:41, Andreas Kostyrka wrote: On Wed, Mar 12, 2003 at 06:55:18PM -0500, Steve McClure wrote: I need to augment titles, at runtime, of dialogs created with Glade. I don't see anything in the API to do a get_title, but there is a GtkWindow.title attribute in the GTK

GTK+ signals and arguments, was Re: [pygtk] Any way to retrieve thetitle of a dialog?

2003-03-16 Thread Christian Reis
On Sun, Mar 16, 2003 at 10:19:37AM -0500, Steve McClure wrote: Would anybody find it convenient if I posted a list of all the args for Gtk widgets? I had to fish it out of the source code so it might at least save you trying to write a custom script. Which source did you find it in? It's

[pygtk] I can't add a widget to another one

2003-03-16 Thread David Gil
Hi! I don't know if this is the right place to ask it. If not, please tell me where should I ask. I'm making a program with Glade+pygtk. I attach the Glade file. A piece of the program follows: from gtk import * from libglade import * f= GladeXML(DobEditor.glade, MainWindow)

Re: [pygtk] PyGTK 2 Tutorial update

2003-03-16 Thread John Finlay
Kai Weber wrote: distribution to use as an example in the tutorial. Please let me know if you have suggestions or find errors in the tutorial. I try learning pygtk with your nice tutorial. I have a question regarding the helloworld.py example. What is the reason to connect the clicked

Re: [pygtk] I can't add a widget to another one

2003-03-16 Thread Christian Reis
On Sun, Mar 16, 2003 at 07:57:37PM +0100, David Gil wrote: editor=f.get_widget(DobEditor) win.add(editor) [...] Traceback (most recent call last): File gladetest1.py, line 10, in ? win.add(editor) File /usr/lib/python2.1/site-packages/gtk.py, line 514, in add

Re: [pygtk] Is there a known bug in iter_children?

2003-03-16 Thread Eric S. Raymond
Johan Dahlin [EMAIL PROTECTED]: tor 2003-03-13 klockan 06.29 skrev Eric S. Raymond: Code: def load_record(self, parent, value): Load a record with a specified value. # This conditional works around an apparent bug. # iter_children doesn't accept None as a