Filled in setting class
[quandoparte] / application / settingsdialog.h
1 #ifndef SETTINGSDIALOG_H
2 #define SETTINGSDIALOG_H
3
4 #include <QDialog>
5
6 #ifdef Q_WS_MAEMO_5
7 class QMaemo5ValueButton;
8 #endif
9
10 namespace Ui {
11     class SettingsDialog;
12 }
13
14 class SettingsDialog : public QDialog
15 {
16     Q_OBJECT
17
18 public:
19     explicit SettingsDialog(QWidget *parent = 0);
20     ~SettingsDialog();
21
22 private slots:
23     void showStationChanged(bool);
24
25     void periodicUpdateToggled(bool checked);
26
27 private:
28 #ifdef Q_WS_MAEMO_5
29     QMaemo5ValueButton *updateIntervalButton;
30 #endif
31     Ui::SettingsDialog *ui;
32 };
33
34 #endif // SETTINGSDIALOG_H