blob: 8ef49083c42195c5f59b70add3853a7faaea7d0c (
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 PyTQt.tqt import *
from form1 import Form1
from dbconnect import createConnection
class mainWindow(Form1):
def __init__(self,parent = None,name = None,fl = 0):
Form1.__init__(self,parent,name,fl)
if __name__ == "__main__":
a = TQApplication(sys.argv)
if createConnection():
TQObject.connect(a,SIGNAL("lastWindowClosed()"),a,SLOT("quit()"))
w = mainWindow()
a.setMainWidget(w)
w.show()
a.exec_loop()
|