summaryrefslogtreecommitdiffstats
path: root/python/pyqt/examples3/SQL/runform2.py
blob: ba0ca4a5e7f5d8eb785944f9a1dfb9257ee90b93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python

import sys
from qt import *

from form2 import Form2
from dbconnect import createConnection

class mainWindow(Form2):
    def __init__(self,parent = None,name = None,fl = 0):
        Form2.__init__(self,parent,name,fl)

if __name__ == "__main__":
    a = QApplication(sys.argv)
    if createConnection():
        QObject.connect(a,SIGNAL("lastWindowClosed()"),a,SLOT("quit()"))
        w = mainWindow()
        a.setMainWidget(w)
        w.show()
        a.exec_loop()