PDA

View Full Version : Python GUI creator



python
January 27th, 2005, 08:03 PM
Does anyone know of any Delphi-style python form creator? Something like pythonworks?

I have a big A-level database project on my hands. Not sure I wanna tk the thing by hand. Doesn't have to be tk though.

EdCrypt
January 27th, 2005, 09:37 PM
Maybe you shold try Glade. It generates a xml file (.glade) that can be used in your project.


import gtk, gtk.glade

dic = { "gtk_main_quit" : gtk.main_quit }

gladefile = gtk.glade.XML("empty.glade")
gladefile.signal_autoconnect(dic)

gtk.main()

More in the PyGTK Site (http://pygtk.org)

Quest-Master
January 27th, 2005, 11:14 PM
Maybe you shold try Glade. It generates a xml file (.glade) that can be used in your project.


import gtk, gtk.glade

dic = { "gtk_main_quit" : gtk.main_quit }

gladefile = gtk.glade.XML("empty.glade")
gladefile.signal_autoconnect(dic)

gtk.main()

More in the PyGTK Site (http://pygtk.org)
wxGlade is also a nice choice in case you want to use wxWidgets instead of GTK (cross-platform).

python
January 28th, 2005, 12:34 AM
wxGlade is also a nice choice in case you want to use wxWidgets instead of GTK (cross-platform).
That's cool. Problem solved really. When I heard we had to do our projects in Delphi, I point blank refused ;-) This is going to make it a lot easier. Thanks a lot.