Wrappers for QMaemo5ValueButton to debug settings dialog standalone.
[yandex-traffic] / settingsDialog.hpp
1 #ifndef __SETTINGSDIALOG_H__
2 #define __SETTINGSDIALOG_H__
3
4 #include <QtGui>
5
6 #ifdef Q_WS_MAEMO_5
7 #include <QtMaemo5>
8 #else
9 #include "QtMaemo5Adapters.hpp"
10 #endif
11
12 #include "settings.hpp"
13
14
15 class SettingsDialog : public QDialog
16 {
17     Q_OBJECT
18
19 private:
20     QMaemo5ValueButton *displayButton;
21     QMaemo5ValueButton *updateButton;
22     QMaemo5ValueButton *alertsButton;
23
24 public:
25     SettingsDialog (Settings *settings);
26 };
27
28
29 #endif // __SETTINGSDIALOG_H__