Thread: Pyside Qt debs
View Single Post
Posts: 1,038 | Thanked: 737 times | Joined on Nov 2005 @ Helsinki
#2
Any examples we could use to test the bindings on the device?

ah, found:
http://qt.gitorious.org/pyside/pysid...aster/examples


At least a hello world would be nice.

Bah, here it is:
http://qt.gitorious.org/pyside/pysid...tutorial/t1.py


#!/usr/bin/env python
import sys
from PySide import QtGui
app = QtGui.QApplication(sys.argv)
hello = QtGui.QPushButton("Hello world!")
hello.resize(100, 30)
hello.show()
sys.exit(app.exec_())