mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 08:04:12 +01:00 
			
		
		
		
	* Removed all CVS tags. * Removed 'const char *name' parameter from all QObject contructors.
		
			
				
	
	
		
			113 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			113 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// rdgetpasswd.cpp
 | 
						|
//
 | 
						|
// Prompt for a password.
 | 
						|
//
 | 
						|
//   (C) Copyright 2006-2007,2016 Fred Gleason <fredg@salemradiolabs.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.h>
 | 
						|
#include <qlabel.h>
 | 
						|
#include <qmessagebox.h>
 | 
						|
#include <qvalidator.h>
 | 
						|
 | 
						|
#include <rdgetpasswd.h>
 | 
						|
 | 
						|
RDGetPasswd::RDGetPasswd(QString *passwd,QWidget *parent)
 | 
						|
  : QDialog(parent,"",true)
 | 
						|
{
 | 
						|
  pw_password=passwd;
 | 
						|
 | 
						|
  //
 | 
						|
  // Fix the Window Size
 | 
						|
  //
 | 
						|
  setMinimumWidth(sizeHint().width());
 | 
						|
  setMaximumWidth(sizeHint().width());
 | 
						|
  setMinimumHeight(sizeHint().height());
 | 
						|
  setMaximumHeight(sizeHint().height());
 | 
						|
 | 
						|
  setCaption(tr("Enter Password"));
 | 
						|
 | 
						|
  //
 | 
						|
  // Create Fonts
 | 
						|
  //
 | 
						|
  QFont font=QFont("Helvetica",12,QFont::Bold);
 | 
						|
  font.setPixelSize(12);
 | 
						|
 | 
						|
  //
 | 
						|
  // Label
 | 
						|
  //
 | 
						|
  QLabel *label=new QLabel(tr("Enter password"),this);
 | 
						|
  label->setGeometry(0,5,sizeHint().width(),20);
 | 
						|
  label->setAlignment(AlignCenter);
 | 
						|
 | 
						|
  //
 | 
						|
  // Password
 | 
						|
  //
 | 
						|
  pw_password_edit=new QLineEdit(this,"pw_password_edit");
 | 
						|
  pw_password_edit->setGeometry(10,30,sizeHint().width()-20,20);
 | 
						|
  pw_password_edit->setEchoMode(QLineEdit::Password);
 | 
						|
 | 
						|
  //
 | 
						|
  //  Ok Button
 | 
						|
  //
 | 
						|
  QPushButton *ok_button=new QPushButton(this,"ok_button");
 | 
						|
  ok_button->setGeometry(sizeHint().width()-180,sizeHint().height()-60,80,50);
 | 
						|
  ok_button->setDefault(true);
 | 
						|
  ok_button->setFont(font);
 | 
						|
  ok_button->setText(tr("&OK"));
 | 
						|
  connect(ok_button,SIGNAL(clicked()),this,SLOT(okData()));
 | 
						|
 | 
						|
  //
 | 
						|
  //  Cancel Button
 | 
						|
  //
 | 
						|
  QPushButton *cancel_button=new QPushButton(this,"cancel_button");
 | 
						|
  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()));
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
RDGetPasswd::~RDGetPasswd()
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
QSize RDGetPasswd::sizeHint() const
 | 
						|
{
 | 
						|
  return QSize(190,120);
 | 
						|
} 
 | 
						|
 | 
						|
 | 
						|
QSizePolicy RDGetPasswd::sizePolicy() const
 | 
						|
{
 | 
						|
  return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void RDGetPasswd::okData()
 | 
						|
{
 | 
						|
  *pw_password=pw_password_edit->text();
 | 
						|
  done(0);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void RDGetPasswd::cancelData()
 | 
						|
{
 | 
						|
  done(-1);
 | 
						|
}
 |