mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef FLOWLAYOUT_H
|
|
#define FLOWLAYOUT_H
|
|
|
|
#include <QLayout>
|
|
#include <QRect>
|
|
#include <QStyle>
|
|
//! [0]
|
|
class FlowLayout : public QLayout
|
|
{
|
|
public:
|
|
explicit FlowLayout(QWidget *parent, int margin = -1, int hSpacing = -1, int vSpacing = -1);
|
|
explicit FlowLayout(int margin = -1, int hSpacing = -1, int vSpacing = -1);
|
|
~FlowLayout();
|
|
|
|
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;
|
|
|
|
private:
|
|
int doLayout(const QRect &rect, bool testOnly) const;
|
|
int smartSpacing(QStyle::PixelMetric pm) const;
|
|
|
|
QList<QLayoutItem *> itemList;
|
|
int m_hSpace;
|
|
int m_vSpace;
|
|
};
|
|
//! [0]
|
|
|
|
#endif // FLOWLAYOUT_H
|