-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathcontrolswidget.h
54 lines (42 loc) · 1.06 KB
/
controlswidget.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
52
53
54
#ifndef CONTROLSWIDGET_H
#define CONTROLSWIDGET_H
#include <QWidget>
#include <QHBoxLayout>
#include <QLabel>
#include <QPushButton>
#include <QSlider>
#include <cameradatafeed.h>
class ControlsWidget : public QWidget
{
Q_OBJECT
CameraDataFeed *camera;
QVBoxLayout *controlsLayout;
QHBoxLayout * laserLayout;
QLabel * laserLabel;
QSlider * laserPower;
QHBoxLayout * ivcamLayout;
QLabel * ivcamLabel;
QSlider * ivcamSetting;
QHBoxLayout * mrtoLayout;
QLabel * mrtoLabel;
QSlider * mrtoSetting;
QHBoxLayout * filterLayout;
QLabel * filterLabel;
QSlider * filterSetting;
QHBoxLayout * confidenceLayout;
QLabel * confidenceLabel;
QSlider * confidenceSetting;
QHBoxLayout * presetLayout;
QPushButton * defaultButton;
QPushButton * accuracyButton;
QPushButton * infoButton;
public:
explicit ControlsWidget(QWidget *parent = 0);
signals:
public slots:
void setCamera(CameraDataFeed *);
void setDefaults();
void setAccuracy();
void setInfo();
};
#endif // CONTROLSWIDGET_H