Subversion Repositories seema-scanner

Rev

Rev 25 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 jakw 1
/*
2
 *
3
 SLStudio - Platform for Real-Time  Structured Light
4
 (c) 2013 -- 2014 Jakob Wilm, DTU, Kgs.Lyngby, Denmark
5
 *
6
*/
7
 
8
#ifndef SMPreferenceDialog_H
9
#define SMPreferenceDialog_H
10
 
11
#include <QDialog>
12
#include <QSettings>
13
 
14
namespace Ui {
15
    class SMPreferenceDialog;
16
}
17
 
18
class SMPreferenceDialog : public QDialog{
19
    Q_OBJECT
20
 
21
    public:
22
        explicit SMPreferenceDialog(QWidget *parent = 0);
23
        ~SMPreferenceDialog();
24
 
25
    private slots:
26
        void on_buttonBox_accepted();
27
        void on_triggerHardwareRadioButton_clicked();
28
        void on_triggerSoftwareRadioButton_clicked();
29
        void on_patternHorizontalCheckBox_clicked();
30
        void on_patternVerticalCheckBox_clicked();
31
 
32
private:
33
        Ui::SMPreferenceDialog *ui;
34
        QSettings settings;
35
};
36
 
37
#endif // SMPreferenceDialog_H