chore: 格式化ElaWidgetTools代码
This commit is contained in:
@@ -7,27 +7,26 @@
|
||||
|
||||
#include "ElaProperty.h"
|
||||
class ElaFlowLayoutPrivate;
|
||||
class ELA_EXPORT ElaFlowLayout : public QLayout
|
||||
{
|
||||
class ELA_EXPORT ElaFlowLayout : public QLayout {
|
||||
Q_OBJECT
|
||||
Q_Q_CREATE(ElaFlowLayout)
|
||||
public:
|
||||
explicit ElaFlowLayout(QWidget* parent, int margin = -1, int hSpacing = -1, int vSpacing = -1);
|
||||
explicit ElaFlowLayout(QWidget *parent, int margin = -1, int hSpacing = -1, int vSpacing = -1);
|
||||
explicit ElaFlowLayout(int margin = -1, int hSpacing = -1, int vSpacing = -1);
|
||||
~ElaFlowLayout();
|
||||
|
||||
void addItem(QLayoutItem* item) override;
|
||||
int horizontalSpacing() const;
|
||||
int verticalSpacing() const;
|
||||
void addItem(QLayoutItem *item) override;
|
||||
int horizontalSpacing() const;
|
||||
int verticalSpacing() const;
|
||||
Qt::Orientations expandingDirections() const override;
|
||||
bool hasHeightForWidth() const override;
|
||||
int heightForWidth(int) const override;
|
||||
int count() const override;
|
||||
QLayoutItem* itemAt(int index) const override;
|
||||
QSize minimumSize() const override;
|
||||
void setGeometry(const QRect& rect) override;
|
||||
QSize sizeHint() const override;
|
||||
QLayoutItem* takeAt(int index) override;
|
||||
bool hasHeightForWidth() const override;
|
||||
int heightForWidth(int) const override;
|
||||
int count() const override;
|
||||
QLayoutItem *itemAt(int index) const override;
|
||||
QSize minimumSize() const override;
|
||||
void setGeometry(const QRect &rect) override;
|
||||
QSize sizeHint() const override;
|
||||
QLayoutItem *takeAt(int index) override;
|
||||
|
||||
void setIsAnimation(bool isAnimation);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user