Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

keyedit.cpp

Go to the documentation of this file.
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 }

Generated on Sat Nov 5 16:17:51 2005 for OPIE by  doxygen 1.4.2