Start acceleration measurement button changed to custom button.
[speedfreak] / Client / helpaccelerationdialog.h
1 #ifndef HELPACCELERATIONDIALOG_H
2 #define HELPACCELERATIONDIALOG_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class HelpAccelerationDialog;
8 }
9
10 class HelpAccelerationDialog : public QDialog {
11     Q_OBJECT
12 public:
13     HelpAccelerationDialog(QWidget *parent = 0);
14     ~HelpAccelerationDialog();
15
16 protected:
17     void changeEvent(QEvent *e);
18
19 private:
20     Ui::HelpAccelerationDialog *ui;
21     int pageCounter;
22
23 private slots:
24     void on_pushButtonLast_clicked();
25     void on_pushButtonNext_clicked();
26 };
27
28 #endif // HELPACCELERATIONDIALOG_H