summaryrefslogtreecommitdiffstats
path: root/examples/widgets/layouts/borderlayout/borderlayout.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/layouts/borderlayout/borderlayout.h')
-rw-r--r--examples/widgets/layouts/borderlayout/borderlayout.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/examples/widgets/layouts/borderlayout/borderlayout.h b/examples/widgets/layouts/borderlayout/borderlayout.h
deleted file mode 100644
index c1d3ae7204..0000000000
--- a/examples/widgets/layouts/borderlayout/borderlayout.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#ifndef BORDERLAYOUT_H
-#define BORDERLAYOUT_H
-
-#include <QLayout>
-#include <QRect>
-
-class BorderLayout : public QLayout
-{
-public:
- enum Position { West, North, South, East, Center };
-
- explicit BorderLayout(QWidget *parent, const QMargins &margins = QMargins(), int spacing = -1);
- BorderLayout(int spacing = -1);
- ~BorderLayout();
-
- void addItem(QLayoutItem *item) override;
- void addWidget(QWidget *widget, Position position);
- Qt::Orientations expandingDirections() const override;
- bool hasHeightForWidth() 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 add(QLayoutItem *item, Position position);
-
-private:
- struct ItemWrapper
- {
- ItemWrapper(QLayoutItem *i, Position p) {
- item = i;
- position = p;
- }
-
- QLayoutItem *item;
- Position position;
- };
-
- enum SizeType { MinimumSize, SizeHint };
- QSize calculateSize(SizeType sizeType) const;
-
- QList<ItemWrapper *> list;
-};
-
-#endif // BORDERLAYOUT_H