summaryrefslogtreecommitdiffstats
path: root/examples2/tut1.py
blob: 43649bf5336e5cc0310a4d3bd8b010d56089493e (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 qt import *


a = TQApplication(sys.argv)

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

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