forked from francisengelmann/FabScan100
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfscontrolpanel.h
51 lines (32 loc) · 985 Bytes
/
fscontrolpanel.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef FSCONTROLPANEL_H
#define FSCONTROLPANEL_H
#include "staticHeaders.h"
#include <QDialog>
namespace Ui {
class FSControlPanel;
}
class FSControlPanel : public QDialog
{
Q_OBJECT
public:
explicit FSControlPanel(QWidget *parent = 0);
~FSControlPanel();
Ui::FSControlPanel *ui;
void setLaserAngleText(double angle);
private slots:
void on_fetchFrameButton_clicked();
void on_laserOnButton_clicked();
void on_laserOffButton_clicked();
void on_checkBox_stateChanged(int arg1);
void on_stepLeftButton_clicked();
void on_stepRightButton_clicked();
void on_autoResetButton_clicked();
void on_laserEnable_stateChanged(int arg1);
void on_laserStepLeftButton_clicked();
void on_laserStepRightButton_clicked();
void on_diffImage_clicked();
void on_laserSwipeMaxEdit_returnPressed();
void on_laserSwipeMinEdit_returnPressed();
void on_pushButton_2_clicked();
};
#endif // FSCONTROLPANEL_H