More connecting client-server functionality to GUI.
[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     QString getMeasureCategory();
17
18 protected:
19     void changeEvent(QEvent *e);
20
21 private:
22     Ui::accelerationstart *ui;
23     AccRealTimeDialog* accRealTimeDialog;
24     double stopMeasureSpeed;
25     QString measureCategory;
26
27 private slots:
28     void on_categorComboBox_currentIndexChanged(int index);
29     void on_buttonStart_clicked();
30     void on_buttonCalib_clicked();
31 };
32
33 #endif // ACCELERATIONSTART_H