summaryrefslogtreecommitdiffstats
path: root/examples3/tut1.py
blob: 3e30fcc8caae87b5e7a3c3e64c09e20b9387e5e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python

# TQt tutorial 1.

import sys
from python_tqt import qt


a = qt.TQApplication(sys.argv)

hello = qt.TQPushButton("Hello world!", None)
hello.resize(100, 30)

a.setMainWidget(hello)
hello.show()
sys.exit(a.exec_loop())