Fred Gleason 93d9ab14f7 2020-11-29 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdadmin(1) that caused new passwords to be
	truncated to 16 characters.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
2020-11-29 19:42:02 -05:00

140 lines
3.4 KiB
C++

// login.cpp
//
// Login widget for RDAdmin.
//
// (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 <math.h>
#include <qstring.h>
#include <qpushbutton.h>
#include <qlineedit.h>
#include <qlabel.h>
#include <qpainter.h>
#include <qmessagebox.h>
#include <rdtextvalidator.h>
#include <login.h>
Login::Login(QString *username,QString *password,QWidget *parent)
: RDDialog(parent)
{
//
// Fix the Window Size
//
setMinimumSize(sizeHint());
setMaximumSize(sizeHint());
setWindowTitle("RDAdmin");
login_name=username;
login_password=password;
//
// Text Validator
//
RDTextValidator *validator=new RDTextValidator(this);
//
// OK Button
//
QPushButton *ok_button=new QPushButton(this);
ok_button->setGeometry(10,60,100,55);
ok_button->setFont(buttonFont());
ok_button->setText(tr("&OK"));
ok_button->setDefault(true);
connect(ok_button,SIGNAL(clicked()),this,SLOT(okData()));
//
// CANCEL Button
//
QPushButton *cancel_button=new QPushButton(this);
cancel_button->setGeometry(120,60,100,55);
cancel_button->setFont(buttonFont());
cancel_button->setText(tr("&Cancel"));
connect(cancel_button,SIGNAL(clicked()),this,SLOT(cancelData()));
//
// Login Name
//
login_name_edit=new QLineEdit(this);
login_name_edit->setGeometry(100,10,100,19);
login_name_edit->setMaxLength(RD_MAX_PASSWORD_LENGTH);
login_name_edit->setFocus();
login_name_edit->setValidator(validator);
QLabel *login_name_label=new QLabel(login_name_edit,tr("User &Name:"),this);
login_name_label->setFont(labelFont());
login_name_label->setGeometry(10,10,85,19);
login_name_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter|Qt::TextShowMnemonic);
//
// Login Password
//
login_password_edit=new QLineEdit(this);
login_password_edit->setGeometry(100,31,100,19);
login_password_edit->setMaxLength(16);
login_password_edit->setEchoMode(QLineEdit::Password);
login_password_edit->setValidator(validator);
QLabel *login_password_label=
new QLabel(login_password_edit,tr("&Password:"),this);
login_password_label->setGeometry(10,31,85,19);
login_password_label->setFont(labelFont());
login_password_label->
setAlignment(Qt::AlignRight|Qt::AlignVCenter|Qt::TextShowMnemonic);
}
Login::~Login()
{
delete login_name_edit;
delete login_password_edit;
}
QSize Login::sizeHint() const
{
return QSize(230,125);
}
QSizePolicy Login::sizePolicy() const
{
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
}
void Login::okData()
{
*login_name=login_name_edit->text();
*login_password=login_password_edit->text();
done(true);
}
void Login::cancelData()
{
done(false);
}
void Login::paintEvent(QPaintEvent *paintevent)
{
QPainter *p=new QPainter(this);
p->end();
}