Re: Python / glade fundamentals

2006-03-20 Thread Ido Yehieli
Franck: PyGG seems pretty cool, thanks for the link! -- http://mail.python.org/mailman/listinfo/python-list

Re: Python / glade fundamentals

2006-03-20 Thread Franck Pommereau
> maybe you will find it easyer to use GladeGen to generate the > skeleton of your application rather then coding it yourself. Take a > look here: http://www.linuxjournal.com/article/7421 You may also use my PyGG module: http://freshmeat.net/projects/pygg Cheers, Franck -- http://mail.python

Re: Python / glade fundamentals

2006-03-17 Thread Ido Yehieli
Hi Doug, maybe you will find it easyer to use GladeGen to generate the skeleton of your application rather then coding it yourself. Take a look here: http://www.linuxjournal.com/article/7421 Cheers, Ido Yehieli -- http://mail.python.org/mailman/listinfo/python-list

Re: Python / glade fundamentals

2006-03-17 Thread Ido Yehieli
Hi Doug, mabe you will find it easyer to use GladeGen to generate the skeleton of your application rather then coding it yourself. Take a look here: http://www.linuxjournal.com/article/7421 Cheers, Ido Yehieli -- http://mail.python.org/mailman/listinfo/python-list

Re: Python / glade fundamentals

2006-03-17 Thread Doug
OK, I have solved the problem. The reference was a help. The clue is that the events may not get passed through the parent. For reference here is the code that worked. It's good to finally get the basics working. Doug import gtk import gtk.glade def key_press(widget,event): print "keypress"

Re: Python / glade fundamentals

2006-03-16 Thread Dave Cook
On 2006-03-16, Doug <[EMAIL PROTECTED]> wrote: > Can someone tell me why I do not get a connection between the events and > the functions in the sample below. GUI window appears OK, just no > connections seem to be made. > I am new to this so may be missing something fundamental. This might be

Python / glade fundamentals

2006-03-16 Thread Doug
Hi all, Can someone tell me why I do not get a connection between the events and the functions in the sample below. GUI window appears OK, just no connections seem to be made. I am new to this so may be missing something fundamental. Thanks, Doug file pgtest.glade = http://