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.
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import sys
|
|
|
|
from PyTQt.tqt 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 = TQApplication(sys.argv)
|
|
|
|
if createConnection():
|
|
|
|
TQObject.connect(a,SIGNAL("lastWindowClosed()"),a,SLOT("quit()"))
|
|
|
|
w = mainWindow()
|
|
|
|
a.setMainWidget(w)
|
|
|
|
w.show()
|
|
|
|
a.exec_loop()
|
|
|
|
|