Subversion Repositories seema-scanner

Rev

Rev 244 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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