summaryrefslogtreecommitdiffstats
path: root/examples3/SQL/runform1.py
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-11-29 00:31:00 -0600
committerTimothy Pearson <[email protected]>2011-11-29 00:31:00 -0600
commitb388516ca2691303a076a0764fd40bf7116fe43d (patch)
tree6f1615d1f12b325f4d1cd9c25d1519303794001a /examples3/SQL/runform1.py
downloadpytqt-b388516ca2691303a076a0764fd40bf7116fe43d.tar.gz
pytqt-b388516ca2691303a076a0764fd40bf7116fe43d.zip
Initial import of python-qt3
Diffstat (limited to 'examples3/SQL/runform1.py')
-rwxr-xr-xexamples3/SQL/runform1.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/examples3/SQL/runform1.py b/examples3/SQL/runform1.py
new file mode 100755
index 0000000..d5760ce
--- /dev/null
+++ b/examples3/SQL/runform1.py
@@ -0,0 +1,21 @@
+#!/usr/bin/env python
+
+import sys
+from qt 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 = QApplication(sys.argv)
+ if createConnection():
+ QObject.connect(a,SIGNAL("lastWindowClosed()"),a,SLOT("quit()"))
+ w = mainWindow()
+ a.setMainWidget(w)
+ w.show()
+ a.exec_loop()
+