Subversion Repositories seema-scanner

Rev

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