-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdialog.h
More file actions
37 lines (28 loc) · 619 Bytes
/
dialog.h
File metadata and controls
37 lines (28 loc) · 619 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef DIALOG_H
#define DIALOG_H
#include <QDialog>
#include <QSettings>
#include <QFileDialog>
#include <QDesktopServices>
namespace Ui {
class Dialog;
}
class Dialog : public QDialog
{
Q_OBJECT
public:
explicit Dialog(QWidget *parent = 0);
//QString tabname;
~Dialog();
private slots:
void on_pushButton_clicked();
void on_pushButton_2_clicked();
void on_comboBox_activated(const QString &arg1);
void on_pushButton_3_clicked();
private:
Ui::Dialog *ui;
QString host,dbname,uname,passwd;
QString dbtype;
QSettings custdbSettings;
};
#endif // DIALOG_H