// 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, implicitContentWidth + leftPadding + rightPadding) implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, implicitContentHeight + topPadding + bottomPadding) leftPadding: SafeArea.margins.left + 3 rightPadding: SafeArea.margins.right + 3 topPadding: SafeArea.margins.top + 3 bottomPadding: SafeArea.margins.bottom + 3 spacing: 10 delegate: MenuBarItem { } contentItem: Row { spacing: control.spacing Repeater { model: control.contentModel } } background: Rectangle { implicitHeight: 20 color: control.palette.button // The MenuBar shares the same color as the MenuBarItems on Windows } }