mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
18 lines
308 B
C
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
|