Fred Gleason bc71c07c90 2021-02-24 Fred Gleason <fredg@paravelsystems.com>
* Fixed a memory leak in 'RDSchedCodesDialog'.
	* Fixed a memory leaks in rdadmin(1).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
2021-02-24 20:42:17 -05:00

123 lines
3.1 KiB
C++

// login.cpp
//
// Login widget for RDAdmin.
//
// (C) Copyright 2002-2021 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 <QPushButton>
#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(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);
//
// 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(tr("Password:"),this);
login_password_label->setGeometry(10,31,85,19);
login_password_label->setFont(labelFont());
login_password_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
}
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);
}