forked from Mirrors/freeswitch
18d33240b8
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16298 d0543943-73ff-0310-b7d9-9358b9ac24b2
38 lines
593 B
C++
38 lines
593 B
C++
#ifndef ACCOUNTDIALOG_H
|
|
#define ACCOUNTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class AccountDialog;
|
|
}
|
|
|
|
class QSettings;
|
|
|
|
class AccountDialog : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
AccountDialog(QString accId, QWidget *parent = 0);
|
|
~AccountDialog();
|
|
void clear();
|
|
void setAccId(QString);
|
|
|
|
signals:
|
|
void gwAdded();
|
|
|
|
private slots:
|
|
void writeConfig();
|
|
void addExtraParam();
|
|
void remExtraParam();
|
|
|
|
protected:
|
|
void changeEvent(QEvent *e);
|
|
|
|
private:
|
|
QString _accId;
|
|
Ui::AccountDialog *ui;
|
|
QSettings *_settings;
|
|
};
|
|
|
|
#endif // ACCOUNTDIALOG_H
|