GUI Programming by hand not code with Python Code

Joined
Feb 4, 2010
Messages
28
Reaction score
0
Is their a program that lets you design a GUI by hand (like gambas)
not by code (like wxpython) but the commands are in python?

A program similar to gambas or vb

Gambas with python code instead of gambas code would be perfect.

Thanks in advance
 
J

Jason Scheirer

Is their a program that lets you design a GUI by hand (like gambas)
not by code (like wxpython) but the commands are in python?

A program similar to gambas or vb

Gambas with python code instead of gambas code would be perfect.

Thanks in advance

Glade for GTK, wxGlade for wxPython.
 
M

Mike Driscoll

Is their a program that lets you design a GUI by hand (like gambas)
not by code (like wxpython) but the commands are in python?

A program similar to gambas or vb

Gambas with python code instead of gambas code would be perfect.

Thanks in advance

I think Dabo also has a way to do some Visual programming too. And
there's also XRC.

See the following links for more info:

http://dabodev.com/
http://xrced.sourceforge.net/

Mike
 
S

sturlamolden

Is their a program that lets you design a GUI by hand (like gambas)
not by code (like wxpython) but the commands are in python?

A program similar to gambas or vb

Gambas with python code instead of gambas code would be perfect.

Thanks in advance

I use wxFormBuilder with wxPython. Works like a charm. Design the GUI
graphically, export it like a wx XML resource (.xrc). All you nedd to
code in Python is the event handlers and the code to bind/hook the
events.

http://sturlamolden.blogspot.com/2008/03/howto-using-wxformbuilder-with-wxpython.html

If you can accept a Windows only solution, you can use Microsoft's
IronPython with MS VisualStudio. It will be just like using VB, except
you are coding in Python. But remember that extension libraries to
CPython is generally not available for IronPython. Insted you must
rely more on .NET and COM/ActiveX objects.
 
N

Nicola Musatti

I use wxFormBuilder with wxPython. Works like a charm. Design the GUI
graphically, export it like a wx XML resource (.xrc). All you nedd to
code in Python is the event handlers and the code to bind/hook the
events.

http://sturlamolden.blogspot.com/2008/03/howto-using-wxformbuilder-wi...

I also use wxFormBuilder, but I use XRCed from wxPython 2.8.6.x to
generate an application Skeleton from my .xrc file. This version
creates explicit attributes for all the visual elements that have a
name in the xrc file.

Unfortunately the latest XRCed version requires you to annotate the
xrc in order to obtain the same effect which is not only tedious, but
as far as I can tell it also makes it impossible to round trip between
XRCed and wxFormBuilder.

Cheers,
Nicola Musatti
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,007
Latest member
obedient dusk

Latest Threads

Top