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
319 B
20 lines
319 B
#!/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()
|