// mysql_login.cpp // // mySQL Administrative Login widget for RDDbConfig // // (C) Copyright 2002-2018 Fred Gleason // // 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 #include #include #include #include #include #include #include #include #include #include #include #include #include "mysql_login.h" MySqlLogin::MySqlLogin(QString msg,QString *hostname,QString *dbname,QString *username,QString *password, QWidget *parent) : QDialog(parent,"",true) { setCaption(tr("mySQL Admin")); login_host=hostname; login_dbname=dbname; login_name=username; login_password=password; // // Create Fonts // QFont font=QFont("Helvetica",12,QFont::Normal); font.setPixelSize(12); // // Message Label // RDLabel *label=new RDLabel(msg,this); label->setFont(font); label->setGeometry(10,10,sizeHint().width()-20,sizeHint().height()-130); label->setAlignment(Qt::AlignCenter); // // MySql Host Name // login_host_edit=new QLineEdit(this); login_host_edit->setFont(font); login_host_edit->setGeometry(100,sizeHint().height()-150,200,19); login_host_edit->setMaxLength(64); login_host_edit->setText(*login_host); login_host_edit->setFocus(); QLabel *login_host_label=new QLabel(login_host_edit,tr("&Hostname:"),this); login_host_label->setFont(font); login_host_label->setGeometry(10,sizeHint().height()-150,85,19); login_host_label->setAlignment(Qt::AlignRight|Qt::ShowPrefix); // // MySql Database Name // login_dbname_edit=new QLineEdit(this); login_dbname_edit->setFont(font); login_dbname_edit->setGeometry(100,sizeHint().height()-130,200,19); login_dbname_edit->setMaxLength(64); login_dbname_edit->setText(*login_dbname); login_dbname_edit->setFocus(); QLabel *login_dbname_label=new QLabel(login_dbname_edit,tr("&Database:"),this); login_dbname_label->setFont(font); login_dbname_label->setGeometry(10,sizeHint().height()-130,85,19); login_dbname_label->setAlignment(Qt::AlignRight|Qt::ShowPrefix); // // MySql Login Name // login_name_edit=new QLineEdit(this); login_name_edit->setFont(font); login_name_edit->setGeometry(100,sizeHint().height()-110,100,19); login_name_edit->setMaxLength(16); login_name_edit->setFocus(); QLabel *login_name_label=new QLabel(login_name_edit,tr("User&name:"),this); login_name_label->setFont(font); login_name_label->setGeometry(10,sizeHint().height()-109,85,19); login_name_label->setAlignment(Qt::AlignRight|Qt::ShowPrefix); // // MySql Login Password // login_password_edit=new QLineEdit(this); login_password_edit->setFont(font); login_password_edit->setGeometry(100,sizeHint().height()-90,100,19); login_password_edit->setMaxLength(16); login_password_edit->setEchoMode(QLineEdit::Password); QLabel *login_password_label=new QLabel(login_password_edit,tr("&Password:"),this); login_password_label->setFont(font); login_password_label->setGeometry(10,sizeHint().height()-88,85,19); login_password_label->setAlignment(Qt::AlignRight|Qt::ShowPrefix); // // OK Button // QPushButton *ok_button=new QPushButton(this); ok_button->setGeometry(sizeHint().width()-180,sizeHint().height()-60,80,50); ok_button->setFont(font); 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(sizeHint().width()-90,sizeHint().height()-60, 80,50); cancel_button->setFont(font); cancel_button->setText(tr("&Cancel")); connect(cancel_button,SIGNAL(clicked()),this,SLOT(cancelData())); } MySqlLogin::~MySqlLogin() { delete login_name_edit; delete login_password_edit; } QSize MySqlLogin::sizeHint() const { return QSize(360,210); } QSizePolicy MySqlLogin::sizePolicy() const { return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed); } void MySqlLogin::okData() { *login_host=login_host_edit->text(); *login_dbname=login_dbname_edit->text(); *login_name=login_name_edit->text(); *login_password=login_password_edit->text(); done(0); } void MySqlLogin::cancelData() { done(1); }