feat: 添加ElaWidgetTool库
This commit is contained in:
31
ElaWidgetTools/ElaLineEdit.h
Normal file
31
ElaWidgetTools/ElaLineEdit.h
Normal file
@@ -0,0 +1,31 @@
|
||||
#ifndef ELALINEEDIT_H
|
||||
#define ELALINEEDIT_H
|
||||
|
||||
#include <QLineEdit>
|
||||
|
||||
#include "ElaProperty.h"
|
||||
|
||||
class ElaLineEditPrivate;
|
||||
class ELA_EXPORT ElaLineEdit : public QLineEdit
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_Q_CREATE(ElaLineEdit)
|
||||
Q_PROPERTY_CREATE_Q_H(int, BorderRadius)
|
||||
Q_PROPERTY_CREATE_Q_H(bool, IsClearButtonEnable)
|
||||
public:
|
||||
explicit ElaLineEdit(QWidget* parent = nullptr);
|
||||
~ElaLineEdit() override;
|
||||
|
||||
Q_SIGNALS:
|
||||
Q_SIGNAL void focusIn(QString text);
|
||||
Q_SIGNAL void focusOut(QString text);
|
||||
Q_SIGNAL void wmFocusOut(QString text);
|
||||
|
||||
protected:
|
||||
void focusInEvent(QFocusEvent* event) override;
|
||||
void focusOutEvent(QFocusEvent* event) override;
|
||||
void paintEvent(QPaintEvent* event) override;
|
||||
void contextMenuEvent(QContextMenuEvent* event) override;
|
||||
};
|
||||
|
||||
#endif // ELALINEEDIT_H
|
||||
Reference in New Issue
Block a user