This commit is contained in:
Herwig Birke
2018-05-03 16:16:55 +02:00
parent 9b8738956e
commit 751f066439
39 changed files with 1304 additions and 206 deletions
+19
View File
@@ -0,0 +1,19 @@
#include "clineedit.h"
cLineEdit::cLineEdit(QWidget* parent) :
QLineEdit(parent)
{
}
void cLineEdit::focusInEvent(QFocusEvent* event)
{
gotFocus(this);
QLineEdit::focusInEvent(event);
}
void cLineEdit::focusOutEvent(QFocusEvent* event)
{
lostFocus(this);
QLineEdit::focusOutEvent(event);
}