20 lines
270 B
C
20 lines
270 B
C
|
|
#ifndef ULINEEDIT_H
|
||
|
|
#define ULINEEDIT_H
|
||
|
|
|
||
|
|
#include <QLineEdit>
|
||
|
|
|
||
|
|
class ULineEdit : public QLineEdit
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit ULineEdit(QWidget* aParent);
|
||
|
|
~ULineEdit();
|
||
|
|
|
||
|
|
protected:
|
||
|
|
void mouseReleaseEvent(QMouseEvent* aEvent);
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // ULINEEDIT_H
|