// Copyright (C) 2017 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause import QtQuick import QtQuick.Controls // TODO QtObject { property string customControlName: qsTr("MenuBar & MenuBarItem") property var supportedStates: [ [] ] property Component component: MenuBar { MenuBarItem { text: qsTr("Normal") } MenuBarItem { text: qsTr("Pressed") down: true } MenuBarItem { text: qsTr("Highlighted") highlighted: true } MenuBarItem { text: qsTr("Disabled") enabled: false } } }