Subversion Repositories seema-scanner

Rev

Rev 25 | Rev 244 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 25 Rev 70
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
        void on_patternHorizontalCheckBox_clicked();
-
 
24
        void on_patternVerticalCheckBox_clicked();
-
 
-
 
23
 
25
 
24
 
26
private:
25
private:
27
        Ui::SMPreferenceDialog *ui;
26
        Ui::SMPreferenceDialog *ui;
28
        QSettings settings;
27
        QSettings settings;
29
};
28
};
30
 
29
 
31
#endif // SMPreferenceDialog_H
30
#endif // SMPreferenceDialog_H
32
 
31