Hello

I am currently using the following and I am sure it is not the correct way but it seems working.

a = A-class()
gtk.main()

b = B-class()         # Started within the A class
gtk.main()

gtk.main_quit()    # end the B class

c = C-class()         # Started within the A class
gtk.main()

gtk.main_quit()    # end the C class

d = D-class()        # Started within the A class

gtk.main_quit()    # end the D class

gtk.main_quit()    # end the A class

Is there a better way to achieve this?

Thanks Paul
_______________________________________________
pygtk mailing list   [email protected]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Reply via email to