Add some documentation. Fix popup button locations on Maemo. Ensure popup buttons...
[dorian] / devtools.h
1 #ifndef DEVTOOLS_H
2 #define DEVTOOLS_H
3
4 #include <QtGui>
5
6 /** Display developer tools. */
7 class DevTools: public QDialog
8 {
9     Q_OBJECT
10
11 public:
12     explicit DevTools(QWidget *parent = 0);
13
14 public slots:
15     void onClear();
16     void onLevelButtonClicked(int level);
17 };
18
19 #endif // DEVTOOLS_H