Implemented minimal settings dialog
[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 private:
26 #ifdef Q_WS_MAEMO_5
27     QMaemo5ValueButton *updateIntervalButton;
28 #endif
29     Ui::SettingsDialog *ui;
30 };
31
32 #endif // SETTINGSDIALOG_H