Subversion Repositories seema-scanner

Rev

Rev 25 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

/*
 *
 SLStudio - Platform for Real-Time  Structured Light
 (c) 2013 -- 2014 Jakob Wilm, DTU, Kgs.Lyngby, Denmark
 *
*/

#ifndef SMPreferenceDialog_H
#define SMPreferenceDialog_H

#include <QDialog>
#include <QSettings>

namespace Ui {
    class SMPreferenceDialog;
}

class SMPreferenceDialog : public QDialog{
    Q_OBJECT
    
    public:
        explicit SMPreferenceDialog(QWidget *parent = 0);
        ~SMPreferenceDialog();

    private slots:
        void on_buttonBox_accepted();
        void on_triggerHardwareRadioButton_clicked();
        void on_triggerSoftwareRadioButton_clicked();
        void on_patternHorizontalCheckBox_clicked();
        void on_patternVerticalCheckBox_clicked();

private:
        Ui::SMPreferenceDialog *ui;
        QSettings settings;
};

#endif // SMPreferenceDialog_H