Fixed Settings Dialog
[quandoparte] / application / settingsdialog.cpp
1 /*
2
3 Copyright (C) 2011 Luciano Montanaro <mikelima@cirulla.net>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; see the file COPYING.  If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
19
20 */
21
22 #include "settingsdialog.h"
23 #include "ui_settingsdialog.h"
24
25 #ifdef Q_WS_MAEMO_5
26 #include <QMaemo5ValueButton>
27 #endif
28
29 #include <QSettings>
30
31 SettingsDialog::SettingsDialog(QWidget *parent) :
32     QDialog(parent),
33 #ifdef Q_WS_MAEMO_5
34     updateIntervalButton(new QMaemo5ValueButton(this)),
35 #endif
36     ui(new Ui::SettingsDialog)
37 {
38     ui->setupUi(this);
39
40     QSettings settings;
41     bool showStationPreference = settings.value("StationViewPreferred",
42                                                 false).toBool();
43     ui->showLastStationCheckBox->setChecked(showStationPreference);
44     connect(ui->showLastStationCheckBox, SIGNAL(toggled(bool)),
45             SLOT(showStationChanged(bool)));
46 #if 0
47 #ifdef Q_WS_MAEMO_5
48     ui->formLayout->addWidget(updateIntervalButton);
49 #endif
50 #endif
51 }
52
53 SettingsDialog::~SettingsDialog()
54 {
55     delete ui;
56 }
57
58 void SettingsDialog::showStationChanged(bool newValue)
59 {
60     QSettings settings;
61     settings.setValue("StationViewPreferred", newValue);
62 }