You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
321 B
21 lines
321 B
#!/usr/bin/env python
|
|
|
|
# TQt tutorial 3.
|
|
|
|
import sys
|
|
from qt import *
|
|
|
|
a = TQApplication(sys.argv)
|
|
|
|
box = TQVBox()
|
|
box.resize(200,120)
|
|
|
|
quit = TQPushButton("Quit",box)
|
|
quit.setFont(TQFont("Times",18,TQFont.Bold))
|
|
|
|
TQObject.connect(quit,SIGNAL("clicked()"),a,SLOT("quit()"))
|
|
|
|
a.setMainWidget(box)
|
|
box.show()
|
|
a.exec_loop()
|