[pygtk] libglade bug?

2009-05-04 Thread Rob Brown-Bayliss
Hi, I have this code being called every few minutes by a gkt timeout function: print = print Count = + str(self.check_count) self.check_count += 1 print

Re: [pygtk] libglade bug?

2009-05-04 Thread Timo
Rob Brown-Bayliss schreef: Hi, I have this code being called every few minutes by a gkt timeout function: You can try to put this in your __init__() self.label_checkbutton = self.wtree.get_widget(label_checkbutton) Then you don't need to get the widget everytime and it cannot fail. print

Re: [pygtk] libglade bug?

2009-05-04 Thread Hrvoje Niksic
Rob Brown-Bayliss wrote: print = print Count = + str(self.check_count) self.check_count += 1 print self.wtree.get_widget(label_checkbutton) print = if self.wtree.get_widget(label_checkbutton).get_active():

Re: [pygtk] libraries for Python isometric cad drawings

2009-05-04 Thread Darren Hart
On Wed, Apr 29, 2009 at 11:32 PM, Karl Ostmo kos...@gmail.com wrote: OpenGL seems like the way to go to create the orthographic projections.  For printable/SVG output, you could use gluProject and feed your 2D-projected vertices to Cairo alongside your OpenGL code. I have used GL2PS before to