Initial version
[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:
23 #ifdef Q_WS_MAEMO_5
24     QMaemo5ValueButton *updateIntervalButton;
25 #endif
26     Ui::SettingsDialog *ui;
27 };
28
29 #endif // SETTINGSDIALOG_H