00001 #include "keyedit.h" 00002 #include <qlineedit.h> 00003 00004 KeyEdit::KeyEdit(QWidget* parent, const char* name) : 00005 QLineEdit(parent, name) 00006 { 00007 setEchoMode(Password); 00008 } 00009 00010 KeyEdit::~KeyEdit() 00011 { 00012 } 00013 00014 void KeyEdit::focusInEvent(QFocusEvent *) 00015 { 00016 setEchoMode(Normal); 00017 } 00018 00019 void KeyEdit::focusOutEvent(QFocusEvent *) 00020 { 00021 setEchoMode(Password); 00022 }
1.4.2