Make orientation switch explicit on Symbian, too.
[dorian] / devtools.h
1 #ifndef DEVTOOLS_H
2 #define DEVTOOLS_H
3
4 #include "dyalog.h"
5
6 class QWidget;
7
8 /** Display developer tools. */
9 class DevTools: public Dyalog
10 {
11     Q_OBJECT
12
13 public:
14     explicit DevTools(QWidget *parent = 0);
15
16 public slots:
17     void onClear();
18     void onLevelButtonClicked(int level);
19     void onTraceToFileToggled(bool enable);
20 };
21
22 #endif // DEVTOOLS_H