// Copyright (C) 2020 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QQUICKCONTAINER_P_P_H #define QQUICKCONTAINER_P_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include #include QT_BEGIN_NAMESPACE class Q_QUICKTEMPLATES2_EXPORT QQuickContainerPrivate : public QQuickControlPrivate { public: Q_DECLARE_PUBLIC(QQuickContainer) static QQuickContainerPrivate *get(QQuickContainer *container) { return container->d_func(); } void init(); void cleanup(); QQuickItem *itemAt(int index) const; void insertItem(int index, QQuickItem *item); void moveItem(int from, int to, QQuickItem *item); void removeItem(int index, QQuickItem *item); void reorderItems(); void _q_currentIndexChanged(); void itemChildAdded(QQuickItem *item, QQuickItem *child) override; void itemSiblingOrderChanged(QQuickItem *item) override; void itemParentChanged(QQuickItem *item, QQuickItem *parent) override; void itemDestroyed(QQuickItem *item) override; static void contentData_append(QQmlListProperty *prop, QObject *obj); static qsizetype contentData_count(QQmlListProperty *prop); static QObject *contentData_at(QQmlListProperty *prop, qsizetype index); static void contentData_clear(QQmlListProperty *prop); static void contentChildren_append(QQmlListProperty *prop, QQuickItem *obj); static qsizetype contentChildren_count(QQmlListProperty *prop); static QQuickItem *contentChildren_at(QQmlListProperty *prop, qsizetype index); static void contentChildren_clear(QQmlListProperty *prop); void updateContentWidth(); void updateContentHeight(); bool hasContentWidth = false; bool hasContentHeight = false; qreal contentWidth = 0; qreal contentHeight = 0; QObjectList contentData; QQmlObjectModel *contentModel = nullptr; qsizetype currentIndex = -1; bool updatingCurrent = false; QQuickItemPrivate::ChangeTypes changeTypes = Destroyed | Parent | SiblingOrder; }; QT_END_NAMESPACE #endif // QQUICKCONTAINER_P_P_H