forked from Mirrors/freeswitch
fb79c1bfe4
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16235 d0543943-73ff-0310-b7d9-9358b9ac24b2
43 lines
722 B
C++
43 lines
722 B
C++
#ifndef PREFDIALOG_H
|
|
#define PREFDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QDomDocument>
|
|
#include <QSettings>
|
|
#include <fshost.h>
|
|
|
|
class PrefPortaudio;
|
|
class PrefSofia;
|
|
class PrefAccounts;
|
|
class AccountDialog;
|
|
|
|
namespace Ui {
|
|
class PrefDialog;
|
|
}
|
|
|
|
class PrefDialog : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
PrefDialog(QWidget *parent = 0);
|
|
~PrefDialog();
|
|
|
|
protected:
|
|
void changeEvent(QEvent *e);
|
|
|
|
private slots:
|
|
void addAccountBtnClicked();
|
|
void writeConfig();
|
|
|
|
private:
|
|
void readConfig();
|
|
QSettings *_settings;
|
|
AccountDialog *_accDlg;
|
|
/* PrefAccounts *_pref_accounts;*/
|
|
Ui::PrefDialog *ui;
|
|
PrefPortaudio *_mod_portaudio;
|
|
/* PrefSofia *_mod_sofia;*/
|
|
};
|
|
|
|
|
|
#endif // PREFDIALOG_H
|