mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-13 21:49:53 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16164 d0543943-73ff-0310-b7d9-9358b9ac24b2
33 lines
517 B
C++
33 lines
517 B
C++
#ifndef PREFDIALOG_H
|
|
#define PREFDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QDomDocument>
|
|
#include <QSettings>
|
|
#include <fshost.h>
|
|
|
|
namespace Ui {
|
|
class PrefDialog;
|
|
}
|
|
|
|
class PrefDialog : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
PrefDialog(QWidget *parent = 0);
|
|
~PrefDialog();
|
|
|
|
protected:
|
|
void changeEvent(QEvent *e);
|
|
|
|
private slots:
|
|
void configAccepted();
|
|
|
|
private:
|
|
void getPaDevlist(void);
|
|
Ui::PrefDialog *ui;
|
|
QDomDocument _xmlPaDevList;
|
|
QSettings *_settings;
|
|
};
|
|
|
|
#endif // PREFDIALOG_H
|