Is there anyone who has experience in developing application's GUI with
Glade and writing its body in Python?
If yes, please contact me in private to help me get started.
The reason for my request is that the following code did not work for me:
import gtk
import gtk.glade
def some_handler(widget):
pass
xml = gtk.glade.XML('filename.glade')
widget = xml.get_widget('widgetname')
xml.autoconnect({
'some_handler': some_handler
})
gtk.main()
And the failure was that xml doesn't have the method autoconnect (I used
the correct .glade filename for my project in the gtk.glade.XML() call).
My configuration:
Red Hat 8.0
Python 2.2.1
Glade-2 1.1.1
Googling the stuff didn't yield me further enlightenment.
Thanks,
--- Omer
My opinions, as expressed in this E-mail message, are mine alone.
They do not represent the official policy of any organization with which
I may be affiliated in any way.
WARNING TO SPAMMERS: at http://www.zak.co.il/spamwarning.html
=================================================================
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]