forked from Mirrors/freeswitch
0b4a7b63a5
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16297 d0543943-73ff-0310-b7d9-9358b9ac24b2
51 lines
1014 B
C++
51 lines
1014 B
C++
#include <QtGui>
|
|
#include "prefdialog.h"
|
|
#include "ui_prefdialog.h"
|
|
#include "prefportaudio.h"
|
|
#include "prefsofia.h"
|
|
#include "prefaccounts.h"
|
|
|
|
PrefDialog::PrefDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::PrefDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
_settings = new QSettings();
|
|
connect(this, SIGNAL(accepted()), this, SLOT(writeConfig()));
|
|
|
|
_pref_accounts = new PrefAccounts(ui);
|
|
_mod_portaudio = new PrefPortaudio(ui, this);
|
|
_mod_sofia = new PrefSofia(ui, this);
|
|
readConfig();
|
|
}
|
|
|
|
PrefDialog::~PrefDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void PrefDialog::writeConfig()
|
|
{
|
|
_mod_portaudio->writeConfig();
|
|
_mod_sofia->writeConfig();
|
|
}
|
|
|
|
void PrefDialog::changeEvent(QEvent *e)
|
|
{
|
|
QDialog::changeEvent(e);
|
|
switch (e->type()) {
|
|
case QEvent::LanguageChange:
|
|
ui->retranslateUi(this);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
void PrefDialog::readConfig()
|
|
{
|
|
_pref_accounts->readConfig();
|
|
_mod_portaudio->readConfig();
|
|
_mod_sofia->readConfig();
|
|
}
|