[pygtk] Can somebody explain the libglade OO paradigm?

2000-02-11 Thread Daniel Kornhauser
Hi I'm making a gnome-hello example for my pygtutorial http://laguna.fmedic.unam.mx/~daniel/pygtutorial/ and I'm stuck with the libglade example. I'm trying to do a gnome-hello like the one in my tutorial but with glade. My problem is the following: When I autoconect a handler, the handle is

Re: [pygtk] Can somebody explain the libglade OO paradigm?

2000-02-11 Thread James Henstridge
What you want is a dictionary of the method objects. The class dictionary will not do (as that contains unbound methods, where the self parameter must be explicitely passed. The instance dictionary also will not do, as it does not contain the methods either. You would want to use some code