]> Shamusworld >> Repos - schematic/blob - src/sqlsettingsdialog.h
Switched to ODBC driver for connections to MySQL database
[schematic] / src / sqlsettingsdialog.h
1 #ifndef __SQLSETTINGSDIALOG_H__
2 #define __SQLSETTINGSDIALOG_H__
3
4 #include <QtGui>
5
6 class SQLSettingsDialog: public QDialog
7 {
8         Q_OBJECT
9
10         public:
11                 SQLSettingsDialog(QWidget * parent = 0);
12                 ~SQLSettingsDialog();
13
14         private:
15 //              QLabel * title;
16                 QPushButton * testButton;
17                 QDialogButtonBox * buttonBox;
18
19         public:
20                 QLineEdit * edit1;
21                 QLineEdit * edit2;
22                 QLineEdit * edit3;
23                 QLineEdit * edit4;
24                 QLineEdit * edit5;
25 };
26
27 #endif  // __SQLSETTINGSDIALOG_H__