2010-01-04 20:49:22 +00:00
|
|
|
#ifndef PREFDIALOG_H
|
|
|
|
#define PREFDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QDomDocument>
|
2010-01-05 22:16:46 +00:00
|
|
|
#include <QSettings>
|
2010-01-04 20:49:22 +00:00
|
|
|
#include <fshost.h>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class PrefDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class PrefDialog : public QDialog {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
PrefDialog(QWidget *parent = 0);
|
|
|
|
~PrefDialog();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void changeEvent(QEvent *e);
|
|
|
|
|
2010-01-05 22:16:46 +00:00
|
|
|
private slots:
|
|
|
|
void configAccepted();
|
|
|
|
|
2010-01-04 20:49:22 +00:00
|
|
|
private:
|
|
|
|
void getPaDevlist(void);
|
|
|
|
Ui::PrefDialog *ui;
|
|
|
|
QDomDocument _xmlPaDevList;
|
2010-01-05 22:16:46 +00:00
|
|
|
QSettings *_settings;
|
2010-01-04 20:49:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PREFDIALOG_H
|