PyQt: Difference between revisions
Brian Wilson (talk | contribs) |
Brian Wilson (talk | contribs) |
||
Line 11: | Line 11: | ||
Some tutorials: | Some tutorials: | ||
http://zetcode.com/tutorials/pyqt4/ | Creating the UI programmatically: http://zetcode.com/tutorials/pyqt4/ | ||
PyQt 3 (outdated): http://www.cs.usfca.edu/~afedosov/qttut/ | PyQt 3 (outdated): http://www.cs.usfca.edu/~afedosov/qttut/ | ||
The official documentation: http://www.riverbankcomputing.com/static/Docs/PyQt4/pyqt4ref.html | |||
== Development tools == | == Development tools == |
Revision as of 20:21, 2 September 2008
- I seek a way to design GUI interfaces for Python.
- I want one that runs cross-platform (Windows and Linux)
- I want to create apps that can run on my OpenMoko FreeRunner.
This page is about PyQt, which is a set of bindings to allow using Python with TrollTech QT
Articles and references
At DevShed: PyQT Getting Started
Some tutorials:
Creating the UI programmatically: http://zetcode.com/tutorials/pyqt4/
PyQt 3 (outdated): http://www.cs.usfca.edu/~afedosov/qttut/
The official documentation: http://www.riverbankcomputing.com/static/Docs/PyQt4/pyqt4ref.html
Development tools
I use ActiveState Komodo as my Python IDE. I recommend it highly even though it costs money. There is a CIX package for Komodo available from ActiveState.
Windows A complete Windows binary package is available from http://www.riverbankcomputing.co.uk/pyqt It includes everything you need, including the runtime, the designer, the bindings. Quite nice.
Development cycle
1 Design a user interface in QT4 Designer. Save as a .ui file (XML). 2 Generate Python code from the UI file using pyuic.
pyuic4.bat myForm.ui myForm.py
3 Create a python wrapper with the event loop in it.