cabecdd538174a4def04da4ad9cd947f8c74e9e7
[impuzzle] / src / statisticsdialog.h
1 #ifndef STATISTICSDIALOG_H
2 #define STATISTICSDIALOG_H
3
4 #include <QDialog>
5
6 class QLabel;
7 class QVBoxLayout;
8 class QHBoxLayout;
9 class QPushButton;
10
11 class StatisticsDialog : public QDialog
12 {
13     Q_OBJECT
14
15 public:
16     StatisticsDialog(QWidget *parent = 0);
17
18 private slots:
19     void updateContent();
20     void resetClicked();
21
22 private:
23     QLabel *label_;
24     QPushButton *resetButton_;
25     QPushButton *doneButton_;
26     QVBoxLayout *mainLayout_;
27     QHBoxLayout *buttonLayout_;
28 };
29
30 #endif