summaryrefslogtreecommitdiffstats
path: root/examples2/tut2.py
blob: 730b0477f49add50613de34b82797f6ee57c0b10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python

# TQt tutorial 2.

import sys
from python_tqt.qt import *


a = TQApplication(sys.argv)

quit = TQPushButton("Quit",None)
quit.resize(75,30)
quit.setFont(TQFont("Times",18,TQFont.Bold))

TQObject.connect(quit,SIGNAL("clicked()"),a,SLOT("quit()"))

a.setMainWidget(quit)
quit.show()
a.exec_loop()