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.
20 lines
339 B
20 lines
339 B
#!/usr/bin/env python
|
|
|
|
# TQt tutorial 2.
|
|
|
|
import sys
|
|
import qt
|
|
|
|
|
|
a = qt.TQApplication(sys.argv)
|
|
|
|
quit = qt.TQPushButton("Quit", None)
|
|
quit.resize(75, 30)
|
|
quit.setFont(qt.TQFont("Times", 18, qt.TQFont.Bold))
|
|
|
|
qt.TQObject.connect(quit, qt.SIGNAL("clicked()"), a, qt.SLOT("quit()"))
|
|
|
|
a.setMainWidget(quit)
|
|
quit.show()
|
|
sys.exit(a.exec_loop())
|