src/Setup.cpp

changeset 15
c58b82549713
child 16
a5d8e783a7b0
equal deleted inserted replaced
14:8a304c898a75 15:c58b82549713
1 /**
2 * Setup.cpp is part of bmsapp.
3 *
4 * bmsapp is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * bmsapp is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17 #include "Setup.h"
18 #include "../ui/ui_Setup.h"
19 #include "config.h"
20 #include "bmsapp.h"
21
22
23
24 Setup::Setup(QWidget *parent) : QDialog(parent), ui(new Ui::Setup)
25 {
26 qDebug() << "Setup start";
27
28 ui->setupUi(this);
29
30 setWindowTitle( QString("BMSapp - %1 - Setup").arg(VERSIONSTRING) );
31 }
32
33
34 Setup::~Setup()
35 {
36 qDebug() << "Setup done";
37 delete ui;
38 }
39
40
41 void Setup::on_quitButton_clicked()
42 {
43 emit firstWindow();
44 }
45

mercurial