// 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 QQUICKMENUBAR_P_P_H #define QQUICKMENUBAR_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 QQmlComponent; class QQuickMenuBarItem; class Q_QUICKTEMPLATES2_EXPORT QQuickMenuBarPrivate : public QQuickContainerPrivate { public: Q_DECLARE_PUBLIC(QQuickMenuBar) static QQuickMenuBarPrivate *get(QQuickMenuBar *menuBar) { return menuBar->d_func(); } QQmlListProperty menus(); QQmlListProperty contentData(); QQuickItem *beginCreateItem(QQuickMenu *menu); void completeCreateItem(); QQuickItem *createItem(QQuickMenu *menu); void toggleCurrentMenu(bool visible, bool activate); void activateItem(QQuickMenuBarItem *item); void activateNextItem(); void activatePreviousItem(); void onItemHovered(); void onItemTriggered(); void onMenuAboutToHide(); qreal getContentWidth() const override; qreal getContentHeight() const override; void itemImplicitWidthChanged(QQuickItem *item) override; void itemImplicitHeightChanged(QQuickItem *item) override; static void contentData_append(QQmlListProperty *prop, QObject *obj); static void menus_append(QQmlListProperty *prop, QQuickMenu *obj); static qsizetype menus_count(QQmlListProperty *prop); static QQuickMenu *menus_at(QQmlListProperty *prop, qsizetype index); static void menus_clear(QQmlListProperty *prop); QPalette defaultPalette() const override; bool popupMode = false; bool triggering = false; bool altPressed = false; QQmlComponent *delegate = nullptr; QPointer currentItem; QPointer windowContentItem; }; QT_END_NAMESPACE #endif // QQUICKMENUBAR_P_P_H