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
333 B

#!/usr/bin/env python
# Qt tutorial 2.
import sys
import qt
a = qt.QApplication(sys.argv)
quit = qt.QPushButton("Quit", None)
quit.resize(75, 30)
quit.setFont(qt.QFont("Times", 18, qt.QFont.Bold))
qt.QObject.connect(quit, qt.SIGNAL("clicked()"), a, qt.SLOT("quit()"))
a.setMainWidget(quit)
quit.show()
sys.exit(a.exec_loop())