-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfscontrolpanel.h
More file actions
61 lines (38 loc) · 1.26 KB
/
fscontrolpanel.h
File metadata and controls
61 lines (38 loc) · 1.26 KB
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
52
53
54
55
56
57
58
59
60
61
#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_laser1OnButton_clicked();
void on_laser1OffButton_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();
void on_cameraFrame(QImage frame); // This might need to be public?
// Frame ready from cv thread
void on_laserComboBox_currentIndexChanged(const QString &arg1);
void on_centerEdit_textChanged(const QString &arg1);
};
#endif // FSCONTROLPANEL_H