// Copyright (C) 2024 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 import QtQuick import QtQuick.Templates as T import QtQuick.Controls.impl T.MenuBar { id: control implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, contentWidth + leftPadding + rightPadding) implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, contentHeight + topPadding + bottomPadding) spacing: config.spacing || 0 topPadding: config.topPadding || 0 bottomPadding: config.bottomPadding || 0 leftPadding: config.leftPadding || 0 rightPadding: config.rightPadding || 0 readonly property var config: Config.controls.toolbar["normal"] || {} delegate: MenuBarItem { } contentItem: Row { spacing: control.spacing Repeater { model: control.contentModel } } background: StyleImage { imageConfig: control.config.background } }