Added functionality to change user in settingsdialog.
[speedfreak] / Client / accelerationstart.h
1 #ifndef ACCELERATIONSTART_H
2 #define ACCELERATIONSTART_H
3
4 #include <QDialog>
5 #include "accrealtimedialog.h"
6
7 namespace Ui {
8     class accelerationstart;
9 }
10
11 class accelerationstart : public QDialog {
12     Q_OBJECT
13 public:
14     accelerationstart(QWidget *parent = 0);
15     ~accelerationstart();
16
17 protected:
18     void changeEvent(QEvent *e);
19
20 private:
21     Ui::accelerationstart *ui;
22     AccRealTimeDialog* accRealTimeDialog;
23     double stopMeasureSpeed;
24
25 private slots:
26     void on_categorComboBox_currentIndexChanged(int index);
27     void on_buttonStart_clicked();
28     void on_buttonCalib_clicked();
29 };
30
31 #endif // ACCELERATIONSTART_H