1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/test/cmdwidget/rlineedit.h

18 lines
308 B
C
Raw Normal View History

2017-09-05 18:07:05 +08:00
#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