Files
renderdoc/qrenderdoc/Widgets/RDLineEdit.h
T
baldurk 7ec3049844 Rename LineEditFocusWidget to RDLineEdit
* 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.
2016-10-04 19:54:24 +02:00

22 lines
309 B
C++

#pragma once
#include <QLineEdit>
class RDLineEdit : public QLineEdit
{
private:
Q_OBJECT
public:
explicit RDLineEdit(QWidget *parent = 0);
~RDLineEdit();
signals:
void enter();
void leave();
public slots:
protected:
void focusInEvent(QFocusEvent *e);
void focusOutEvent(QFocusEvent *e);
};