mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-01-18 11:18:36 -05:00
41 lines
1.3 KiB
C++
41 lines
1.3 KiB
C++
/******************************************************************************
|
|
Example provided by Qt
|
|
<https://doc.qt.io/qt-6/qtwidgets-layouts-flowlayout-example.html>
|
|
|
|
Copyright (C) 2016 The Qt Company Ltd.
|
|
SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
******************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <QLayout>
|
|
#include <QStyle>
|
|
|
|
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;
|
|
};
|