// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include "widgethostconstants.h" #include #include QT_FORWARD_DECLARE_CLASS(QDesignerFormWindowInterface) QT_FORWARD_DECLARE_CLASS(QFrame) namespace SharedTools { namespace Internal { class SizeHandleRect; /* A window to embed a form window interface as follows: * * Widget * | * +---+----+ * | | * | | * Handles QVBoxLayout [margin: SELECTION_MARGIN] * | * Frame [margin: lineWidth] * | * QVBoxLayout * | * QDesignerFormWindowInterface * * Can be embedded into a QScrollArea. */ class FormResizer : public QWidget { Q_OBJECT public: FormResizer(QWidget *parent = nullptr); void updateGeometry(); void setState(SelectionHandleState st); void update(); void setFormWindow(QDesignerFormWindowInterface *fw); signals: void formWindowSizeChanged(const QRect &oldGeo, const QRect &newGeo); protected: void resizeEvent(QResizeEvent *event) override; private slots: void mainContainerChanged(); private: QSize decorationSize() const; QWidget *mainContainer(); QFrame *m_frame; typedef QVector Handles; Handles m_handles; QDesignerFormWindowInterface *m_formWindow = nullptr; }; } } // namespace SharedTools