2010-01-07 18:00:34 -05:00
|
|
|
#ifndef ACCOUNTDIALOG_H
|
|
|
|
#define ACCOUNTDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class AccountDialog;
|
|
|
|
}
|
|
|
|
|
2010-01-07 19:41:10 -05:00
|
|
|
class QSettings;
|
|
|
|
|
2010-01-07 18:00:34 -05:00
|
|
|
class AccountDialog : public QDialog {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
AccountDialog(QWidget *parent = 0);
|
|
|
|
~AccountDialog();
|
|
|
|
|
2010-01-07 19:12:54 -05:00
|
|
|
private slots:
|
|
|
|
void writeConfig();
|
|
|
|
|
2010-01-07 18:00:34 -05:00
|
|
|
protected:
|
|
|
|
void changeEvent(QEvent *e);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::AccountDialog *ui;
|
2010-01-07 19:41:10 -05:00
|
|
|
QSettings *_settings;
|
2010-01-07 18:00:34 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ACCOUNTDIALOG_H
|