1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/demo/cmdwidget/rlineedit.h
2017-11-21 14:37:20 +08:00

18 lines
308 B
C++

#ifndef RLINEEDIT_H
#define RLINEEDIT_H
#include <QLineEdit>
class RLineEdit : public QLineEdit
{
public:
explicit RLineEdit(QWidget* parent=0);
// QWidget interface
protected:
void keyPressEvent(QKeyEvent *) override;
void focusOutEvent(QFocusEvent *) override;
};
#endif // RLINEEDIT_H