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.
pytqt/examples3/tut2.py

20 lines
355 B

#!/usr/bin/env python
# TQt tutorial 2.
import sys
from python_tqt 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())