00001 #ifndef KEYEDIT_H 00002 #define KEYEDIT_H 00003 00004 #include <qlineedit.h> 00005 00006 class KeyEdit : public QLineEdit { 00007 Q_OBJECT 00008 00009 public: 00010 KeyEdit(QWidget* parent = 0, const char* name = 0); 00011 ~KeyEdit(); 00012 00013 protected: 00014 void focusInEvent(QFocusEvent *event); 00015 void focusOutEvent(QFocusEvent *event); 00016 00017 private: 00018 }; 00019 00020 #endif 00021
1.4.2