forked from Mirrors/freeswitch
36 lines
534 B
C
36 lines
534 B
C
|
#ifndef PREFDIALOG_H
|
||
|
#define PREFDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QDomDocument>
|
||
|
#include <QSettings>
|
||
|
#include <fshost.h>
|
||
|
|
||
|
class PrefPortaudio;
|
||
|
|
||
|
namespace Ui {
|
||
|
class PrefDialog;
|
||
|
}
|
||
|
|
||
|
class PrefDialog : public QDialog {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
PrefDialog(QWidget *parent = 0);
|
||
|
~PrefDialog();
|
||
|
|
||
|
protected:
|
||
|
void changeEvent(QEvent *e);
|
||
|
|
||
|
private slots:
|
||
|
void writeConfig();
|
||
|
|
||
|
private:
|
||
|
void readConfig();
|
||
|
QSettings *_settings;
|
||
|
Ui::PrefDialog *ui;
|
||
|
PrefPortaudio *_mod_portaudio;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // PREFDIALOG_H
|