mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-07 01:13:50 +02:00
* Fixed a bug in rdadmin(1) that caused new passwords to be truncated to 16 characters. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
140 lines
3.6 KiB
C++
140 lines
3.6 KiB
C++
// rdpasswd.cpp
|
|
//
|
|
// Set Password widget for Rivendell.
|
|
//
|
|
// (C) Copyright 2002-2020 Fred Gleason <fredg@paravelsystems.com>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
// published by the Free Software Foundation.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public
|
|
// License along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
//
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include "rdpasswd.h"
|
|
#include "rdtextvalidator.h"
|
|
|
|
RDPasswd::RDPasswd(QString *password,QWidget *parent)
|
|
: RDDialog(parent)
|
|
{
|
|
//
|
|
// Fix the Window Size
|
|
//
|
|
setMinimumSize(sizeHint());
|
|
setMaximumSize(sizeHint());
|
|
|
|
passwd_password=password;
|
|
setWindowTitle(tr("Change Password"));
|
|
|
|
//
|
|
// Text Validator
|
|
//
|
|
RDTextValidator *validator=new RDTextValidator(this);
|
|
|
|
//
|
|
// Password
|
|
//
|
|
passwd_password_1_edit=new QLineEdit(this);
|
|
passwd_password_1_edit->setMaxLength(RD_MAX_PASSWORD_LENGTH);
|
|
passwd_password_1_edit->setEchoMode(QLineEdit::Password);
|
|
passwd_password_1_edit->setFocus();
|
|
passwd_password_1_edit->setValidator(validator);
|
|
passwd_password_1_label=
|
|
new QLabel(passwd_password_1_edit,tr("&Password:"),this);
|
|
passwd_password_1_label->setFont(labelFont());
|
|
passwd_password_1_label->setAlignment(Qt::AlignRight|Qt::TextShowMnemonic);
|
|
|
|
//
|
|
// Confirm Password
|
|
//
|
|
passwd_password_2_edit=new QLineEdit(this);
|
|
passwd_password_2_edit->setMaxLength(RD_MAX_PASSWORD_LENGTH);
|
|
passwd_password_2_edit->setEchoMode(QLineEdit::Password);
|
|
passwd_password_2_edit->setValidator(validator);
|
|
passwd_password_2_label=
|
|
new QLabel(passwd_password_2_edit,tr("C&onfirm:"),this);
|
|
passwd_password_2_label->setFont(labelFont());
|
|
passwd_password_2_label->setAlignment(Qt::AlignRight|Qt::TextShowMnemonic);
|
|
|
|
//
|
|
// OK Button
|
|
//
|
|
passwd_ok_button=new QPushButton(this);
|
|
passwd_ok_button->setFont(buttonFont());
|
|
passwd_ok_button->setText(tr("&OK"));
|
|
passwd_ok_button->setDefault(true);
|
|
connect(passwd_ok_button,SIGNAL(clicked()),this,SLOT(okData()));
|
|
|
|
//
|
|
// Cancel Button
|
|
//
|
|
passwd_cancel_button=new QPushButton(this);
|
|
passwd_cancel_button->setFont(buttonFont());
|
|
passwd_cancel_button->setText(tr("&Cancel"));
|
|
connect(passwd_cancel_button,SIGNAL(clicked()),this,SLOT(cancelData()));
|
|
}
|
|
|
|
|
|
RDPasswd::~RDPasswd()
|
|
{
|
|
delete passwd_password_1_edit;
|
|
delete passwd_password_2_edit;
|
|
}
|
|
|
|
|
|
QSize RDPasswd::sizeHint() const
|
|
{
|
|
return QSize(450,125);
|
|
}
|
|
|
|
|
|
QSizePolicy RDPasswd::sizePolicy() const
|
|
{
|
|
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
|
|
}
|
|
|
|
|
|
void RDPasswd::okData()
|
|
{
|
|
if(passwd_password_1_edit->text()==passwd_password_2_edit->text()) {
|
|
*passwd_password=passwd_password_1_edit->text();
|
|
done(0);
|
|
}
|
|
else {
|
|
QMessageBox::warning(this,tr("Password Mismatch"),
|
|
tr("The passwords don't match,\nplease try again!"),
|
|
tr("OK"));
|
|
}
|
|
}
|
|
|
|
|
|
void RDPasswd::cancelData()
|
|
{
|
|
done(1);
|
|
}
|
|
|
|
|
|
void RDPasswd::resizeEvent(QResizeEvent *e)
|
|
{
|
|
int w=size().width();
|
|
int h=size().height();
|
|
|
|
passwd_password_1_label->setGeometry(10,13,75,19);
|
|
passwd_password_1_edit->setGeometry(90,11,w-100,19);
|
|
|
|
passwd_password_2_label->setGeometry(10,34,75,19);
|
|
passwd_password_2_edit->setGeometry(90,32,w-100,19);
|
|
|
|
passwd_ok_button->setGeometry(w-180,h-60,80,50);
|
|
passwd_cancel_button->setGeometry(w-90,h-60,80,50);
|
|
}
|