-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSLPreferenceDialog.h
More file actions
41 lines (28 loc) · 839 Bytes
/
SLPreferenceDialog.h
File metadata and controls
41 lines (28 loc) · 839 Bytes
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
/*
*
SLStudio - Platform for Real-Time Structured Light
(c) 2013 -- 2014 Jakob Wilm, DTU, Kgs.Lyngby, Denmark
*
*/
#ifndef SLPREFERENCEDIALOG_H
#define SLPREFERENCEDIALOG_H
#include <QDialog>
namespace Ui {
class SLPreferenceDialog;
}
class SLPreferenceDialog : public QDialog{
Q_OBJECT
public:
explicit SLPreferenceDialog(QWidget *parent = 0);
~SLPreferenceDialog();
private slots:
void on_buttonBox_accepted();
void on_triggerHardwareRadioButton_clicked();
void on_triggerSoftwareRadioButton_clicked();
void on_cameraComboBox_currentIndexChanged(const QString &arg1);
void on_patternHorizontalCheckBox_clicked();
void on_patternVerticalCheckBox_clicked();
private:
Ui::SLPreferenceDialog *ui;
};
#endif // SLPREFERENCEDIALOG_H