Subversion Repositories seema-scanner

Rev

Rev 25 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed


#ifndef SMPreferenceDialog_H
#define SMPreferenceDialog_H

#include <QDialog>
#include <QSettings>

namespace Ui {
    class SMPreferenceDialog;
}

class SMPreferenceDialog : public QDialog{
    Q_OBJECT
    
    public:
        explicit SMPreferenceDialog(QWidget *parent = 0);
        ~SMPreferenceDialog();

    private slots:
        void on_buttonBox_accepted();
        void on_triggerHardwareRadioButton_clicked();
        void on_triggerSoftwareRadioButton_clicked();


private:
        Ui::SMPreferenceDialog *ui;
        QSettings settings;
};

#endif // SMPreferenceDialog_H