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/examples2/tut3.py

21 lines
314 B

#!/usr/bin/env python
# Qt tutorial 3.
import sys
from qt import *
a = QApplication(sys.argv)
box = QVBox()
box.resize(200,120)
quit = QPushButton("Quit",box)
quit.setFont(QFont("Times",18,QFont.Bold))
QObject.connect(quit,SIGNAL("clicked()"),a,SLOT("quit()"))
a.setMainWidget(box)
box.show()
a.exec_loop()