How do I export GUI mockups to Python GUI code (e.g. wxpython)?
I want to take my mockups and export them to code using any python GUI library (wxpython, pyqt, etc). For example, this capability already exists for mockups->HTML/Javascript here:
http://www.balsamiq.com/products/mockups/community
I need a fast, easy, high level mockup tool like balsamiq, not a slow, low level tool like boa construct开发者_高级运维or.
Is there any combination of mockups/exporter tools like this for python?
You can use the Qt Designer
tool to do your mock-ups and then use the pyuic4
command line tool to convert the .pro
file into Python code.
Here are some references if you get stuck:
http://diotavelli.net/PyQtWiki/Creating_GUI_Applications_with_PyQt_and_Qt_Designer
http://wiki.python.org/moin/JonathanGardnerPyQtTutorial
精彩评论