BPasswd Class Reference

#include <bpasswd.h>

Inheritance diagram for BPasswd:

UIPassword

Public Member Functions

 BPasswd (QString *usuario, QString *passwd, QWidget *parent=0, const char *name=0, bool modal=FALSE, WFlags f=0)
 ~BPasswd ()

Private Slots

virtual void validar ()
virtual void returnPressedOnUser ()
virtual void returnPressedOnPasswd ()

Private Attributes

QString * Usuario
QString * Password

Detailed Description

Author:
Josep Burcion

Definition at line 24 of file bpasswd.h.


Constructor & Destructor Documentation

BPasswd::BPasswd ( QString *  usuario,
QString *  passwd,
QWidget parent = 0,
const char *  name = 0,
bool  modal = FALSE,
WFlags  f = 0 
)

Definition at line 17 of file bpasswd.cpp.

References Password, and Usuario.

00018  : UIPassword(parent,name,modal,f) {
00019 
00020     Usuario = usuario;
00021     Password = passwd;
00022     userLine->setText(*Usuario);
00023 }

BPasswd::~BPasswd (  ) 

Definition at line 39 of file bpasswd.cpp.

00039                   {
00040 }


Member Function Documentation

void BPasswd::validar (  )  [private, virtual, slot]

Definition at line 33 of file bpasswd.cpp.

References Password, and Usuario.

Referenced by returnPressedOnPasswd().

00033                       {
00034     *Usuario = userLine->text();
00035     *Password = passwdLine->text();
00036     delete this;
00037 }

void BPasswd::returnPressedOnUser (  )  [private, virtual, slot]

Definition at line 25 of file bpasswd.cpp.

00025                                   {
00026     passwdLine->setFocus();
00027 }

void BPasswd::returnPressedOnPasswd (  )  [private, virtual, slot]

Definition at line 29 of file bpasswd.cpp.

References validar().

00029                                     {
00030     validar();
00031 }


Field Documentation

QString* BPasswd::Usuario [private]

Definition at line 33 of file bpasswd.h.

Referenced by BPasswd(), and validar().

QString* BPasswd::Password [private]

Definition at line 34 of file bpasswd.h.

Referenced by BPasswd(), and validar().


The documentation for this class was generated from the following files:
Generated on Sat Dec 15 00:01:43 2007 for BulmaGes by  doxygen 1.5.1