]> Shamusworld >> Repos - schematic/blob - src/sqlsettingsdialog.h
Move DB access to NoteDialog class, new AlertDialog class.
[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                 QLabel * error1;
26                 QLabel * error2;
27 };
28
29 #endif  // __SQLSETTINGSDIALOG_H__