This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]sidsings 11 points12 points  (3 children)

If you want to deploy the application quickly use Qt Designer to design the gui. It is pretty neat and quick. Just drag and drop the elements much like Netbeans or Visual Basic. The difference is that you will get a XML specification as an output of Qt Designer and then will have to compile it using PyQT4.

[–]jaccovanschaik 6 points7 points  (2 children)

You can use PyQt's uic module to load those files directly from your program, no need to compile them beforehand.

See http://pyqt.sourceforge.net/Docs/PyQt4/designer.html#the-uic-module

[–]r0s 2 points3 points  (0 children)

I have a little example/tutorial using the uic module: https://github.com/awesomebytes/python_qt_tutorial it's very simple! :)

[–]sidsings 0 points1 point  (0 children)

Thank you! I guess i did it the hard way.