Warn about overwriting previously imported SMS
[retroconv] / GUI / testother.py
diff --git a/GUI/testother.py b/GUI/testother.py
new file mode 100644 (file)
index 0000000..78f8f7b
--- /dev/null
@@ -0,0 +1,15 @@
+from PyQt4.QtCore import * 
+from PyQt4.QtGui import * 
+import sys
+#import gtk
+import evolution
+
+app = QApplication(sys.argv)
+
+win = QMainWindow()
+
+win.show()
+
+path = QFileDialog.getOpenFileName(None,"Open Image", "/home/user/", "Image Files (*.png *.jpg *.bmp)");
+
+sys.exit(app.exec_())