mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 09:30:44 +00:00
7ec3049844
* It seems due to deficiencies in Qt's design, there will be a substantial need for these small custom subclasses just to add basic functionality that should have been present in the original. So we'll adopt a naming scheme of QFooBar -> RDFooBar for this 'almost the same widget' type subclassing, compared to more custom/changed ones.
22 lines
318 B
C++
22 lines
318 B
C++
#include "RDLineEdit.h"
|
|
|
|
RDLineEdit::RDLineEdit(QWidget *parent) : QLineEdit(parent)
|
|
{
|
|
}
|
|
|
|
RDLineEdit::~RDLineEdit()
|
|
{
|
|
}
|
|
|
|
void RDLineEdit::focusInEvent(QFocusEvent *e)
|
|
{
|
|
QLineEdit::focusInEvent(e);
|
|
emit(enter());
|
|
}
|
|
|
|
void RDLineEdit::focusOutEvent(QFocusEvent *e)
|
|
{
|
|
QLineEdit::focusOutEvent(e);
|
|
emit(leave());
|
|
}
|