Subversion Repositories seema-scanner

Rev

Rev 25 | Rev 244 | 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
 
70 jakw 24
 
9 jakw 25
private:
26
        Ui::SMPreferenceDialog *ui;
27
        QSettings settings;
28
};
29
 
30
#endif // SMPreferenceDialog_H