]> Shamusworld >> Repos - schematic/blobdiff - src/sqlsettingsdialog.h
Added a bunch of new functionality
[schematic] / src / sqlsettingsdialog.h
diff --git a/src/sqlsettingsdialog.h b/src/sqlsettingsdialog.h
new file mode 100644 (file)
index 0000000..e1a9c8c
--- /dev/null
@@ -0,0 +1,26 @@
+#ifndef __SQLSETTINGSDIALOG_H__
+#define __SQLSETTINGSDIALOG_H__
+
+#include <QtGui>
+
+class SQLSettingsDialog: public QDialog
+{
+       Q_OBJECT
+
+       public:
+               SQLSettingsDialog(QWidget * parent = 0);
+               ~SQLSettingsDialog();
+
+       private:
+//             QLabel * title;
+               QPushButton * testButton;
+               QDialogButtonBox * buttonBox;
+
+       public:
+               QLineEdit * edit1;
+               QLineEdit * edit2;
+               QLineEdit * edit3;
+               QLineEdit * edit4;
+};
+
+#endif // __SQLSETTINGSDIALOG_H__