-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdlgsetup.h
More file actions
58 lines (38 loc) · 1.04 KB
/
dlgsetup.h
File metadata and controls
58 lines (38 loc) · 1.04 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef DLGSETUP_H
#define DLGSETUP_H
#include <QDialog>
#include <QtGui>
#include "maptilesprovider.h"
#include "widget.h"
#include <QFileDialog>
namespace Ui {
class DlgSetup;
}
class DlgSetup : public QDialog
{
Q_OBJECT
public:
explicit DlgSetup(QWidget *parent = 0);
~DlgSetup();
protected:
void mousePressEvent(QMouseEvent *event);
void mouseMoveEvent(QMouseEvent *event);
private slots:
void on_exitPushButton_clicked();
void on_quxiaoPushButton_clicked();
void on_quedingPushButton_clicked();
void on_netDataToolButton_clicked();
void on_localDataToolButton_clicked();
void on_commonMapToolButton_clicked();
void on_qMapToolButton_clicked();
void on_browsePushButton_clicked();
void on_startVoiceToolButton_clicked();
void on_endVoiceToolButton_clicked();
private:
Ui::DlgSetup *ui;
QPoint dragPosition;
bool m_useNetworkDataChecked;
bool m_isSilenced;
Widget* master;
};
#endif // DLGSETUP_H