Added comments
[speedfreak] / Client / accelerationstart.h
1 /*
2  * Acceleration start dialog
3  *
4  * @author      Jukka Kurttila <jukka.kurttila@fudeco.com>
5  * @copyright   (c) 2010 Speed Freak team
6  * @license     http://opensource.org/licenses/gpl-license.php GNU Public License
7  */
8 #ifndef ACCELERATIONSTART_H
9 #define ACCELERATIONSTART_H
10
11 #include <QDialog>
12 #include "accrealtimedialog.h"
13
14 namespace Ui {
15     class accelerationstart;
16 }
17
18 class accelerationstart : public QDialog {
19     Q_OBJECT
20 public:
21     accelerationstart(QWidget *parent = 0);
22     ~accelerationstart();
23
24 protected:
25     void changeEvent(QEvent *e);
26
27 private:
28     Ui::accelerationstart *ui;
29     AccRealTimeDialog* accRealTimeDialog;
30     double stopMeasureSpeed;
31
32 private slots:
33     void on_categorComboBox_currentIndexChanged(int index);
34     void on_buttonStart_clicked();
35     void on_buttonCalib_clicked();
36 };
37
38 #endif // ACCELERATIONSTART_H