Subversion Repositories seema-scanner

Rev

Rev 244 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 jakw 1
 
2
#ifndef SMPreferenceDialog_H
3
#define SMPreferenceDialog_H
4
 
5
#include <QDialog>
6
#include <QSettings>
7
 
8
namespace Ui {
9
    class SMPreferenceDialog;
10
}
11
 
12
class SMPreferenceDialog : public QDialog{
13
    Q_OBJECT
14
 
15
    public:
16
        explicit SMPreferenceDialog(QWidget *parent = 0);
17
        ~SMPreferenceDialog();
18
 
19
    private slots:
20
        void on_buttonBox_accepted();
21
        void on_triggerHardwareRadioButton_clicked();
22
        void on_triggerSoftwareRadioButton_clicked();
23
 
70 jakw 24
 
244 jakw 25
        void on_shutterSpinBox_valueChanged(int arg1);
26
 
255 - 27
        void on_HDRCheckBox_toggled(bool checked);
28
 
9 jakw 29
private:
30
        Ui::SMPreferenceDialog *ui;
31
        QSettings settings;
32
};
33
 
34
#endif // SMPreferenceDialog_H