71 lines
2.2 KiB
C++
71 lines
2.2 KiB
C++
#include <QDialogButtonBox>
|
|
#include <QGridLayout>
|
|
#include <QHBoxLayout>
|
|
#include <QLabel>
|
|
#include <QMessageBox>
|
|
|
|
#include "settingscache.h"
|
|
#include "dlg_edit_password.h"
|
|
|
|
DlgEditPassword::DlgEditPassword(QWidget *parent)
|
|
: QDialog(parent)
|
|
{
|
|
|
|
oldPasswordLabel = new QLabel(tr("Old password:"));
|
|
oldPasswordEdit = new QLineEdit();
|
|
|
|
if(settingsCache->servers().getSavePassword())
|
|
oldPasswordEdit->setText(settingsCache->servers().getPassword());
|
|
|
|
oldPasswordLabel->setBuddy(oldPasswordEdit);
|
|
oldPasswordEdit->setEchoMode(QLineEdit::Password);
|
|
|
|
newPasswordLabel = new QLabel(tr("New password:"));
|
|
newPasswordEdit = new QLineEdit();
|
|
newPasswordLabel->setBuddy(newPasswordLabel);
|
|
newPasswordEdit->setEchoMode(QLineEdit::Password);
|
|
|
|
newPasswordLabel2 = new QLabel(tr("Confirm new password:"));
|
|
newPasswordEdit2 = new QLineEdit();
|
|
newPasswordLabel2->setBuddy(newPasswordLabel2);
|
|
newPasswordEdit2->setEchoMode(QLineEdit::Password);
|
|
|
|
QGridLayout *grid = new QGridLayout;
|
|
grid->addWidget(oldPasswordLabel, 0, 0);
|
|
grid->addWidget(oldPasswordEdit, 0, 1);
|
|
grid->addWidget(newPasswordLabel, 1, 0);
|
|
grid->addWidget(newPasswordEdit, 1, 1);
|
|
grid->addWidget(newPasswordLabel2, 2, 0);
|
|
grid->addWidget(newPasswordEdit2, 2, 1);
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
|
|
connect(buttonBox, SIGNAL(accepted()), this, SLOT(actOk()));
|
|
connect(buttonBox, SIGNAL(rejected()), this, SLOT(actCancel()));
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout;
|
|
mainLayout->addLayout(grid);
|
|
mainLayout->addWidget(buttonBox);
|
|
setLayout(mainLayout);
|
|
|
|
setWindowTitle(tr("Change password"));
|
|
setFixedHeight(sizeHint().height());
|
|
setMinimumWidth(300);
|
|
}
|
|
|
|
void DlgEditPassword::actOk()
|
|
{
|
|
if(newPasswordEdit->text() != newPasswordEdit2->text())
|
|
{
|
|
QMessageBox::warning(this, tr("Error"), tr("The new passwords don't match."));
|
|
return;
|
|
}
|
|
|
|
// always save the password so it will be picked up by the connect dialog
|
|
settingsCache->servers().setPassword(newPasswordEdit->text());
|
|
accept();
|
|
}
|
|
|
|
void DlgEditPassword::actCancel()
|
|
{
|
|
reject();
|
|
}
|