-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetupdialog.h
executable file
·77 lines (62 loc) · 2.62 KB
/
setupdialog.h
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/****************************************************************************
**
** Trolltech hereby grants a license to use the Qt/Eclipse Integration
** plug-in (the software contained herein), in binary form, solely for the
** purpose of creating code to be used with Trolltech's Qt software.
**
** Qt Designer is licensed under the terms of the GNU General Public
** License versions 2.0 and 3.0 ("GPL License"). Trolltech offers users the
** right to use certain no GPL licensed software under the terms of its GPL
** Exception version 1.2 (http://trolltech.com/products/qt/gplexception).
**
** THIS SOFTWARE IS PROVIDED BY TROLLTECH AND ITS CONTRIBUTORS (IF ANY) "AS
** IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
** TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
** PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
** OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
** EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
** PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
** PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
** LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
** NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** Since we now have the GPL exception I think that the "special exception
** is no longer needed. The license text proposed above (other than the
** special exception portion of it) is the BSD license and we have added
** the BSD license as a permissible license under the exception.
**
****************************************************************************/
#ifndef SETUPDIALOG_H
#define SETUPDIALOG_H
#include <QtWidgets/QDialog>
#include "ui_setupdialog.h"
class Option;
class SetupDialog : public QDialog
{
Q_OBJECT
public:
SetupDialog(QWidget *parent = 0);
~SetupDialog();
virtual int exec();
signals:
void applyTools();
void applyMsg();
private slots:
void on_buttonBox_clicked(QAbstractButton*);
void on_bCheckTools_clicked();
void toolChanged(QWidget*, const QString &string = QString());
void on_bDiscardTools_clicked();
void on_bDiscardMsg_clicked();
void on_bRestoreTools_clicked();
void on_bRestoreMsg_clicked();
void on_bApplyTools_clicked();
void on_bApplyMsg_clicked();
void on_cbWarnings_toggled(bool);
void on_cbQuietMode_toggled(bool b);
private:
void checkTool(Option* op, QStringList &path);
QList<Option*> toolList;
Ui::SetupDialogClass ui;
};
#endif // SETUPDIALOG_H