aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols/qquickmenubar/data/hoverAfterClosingWithEscape.qml
blob: 998a6387dde59f7ff60f692728b4f51c4b0e4a5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick
import QtQuick.Controls

ApplicationWindow {
    width: 300
    height: 300

    MenuBar {
        objectName: "menuBar"

        Menu {
            title: qsTr("File")

            MenuItem {
                text: qsTr("New")
            }
        }

        Menu {
            title: qsTr("Edit")

            MenuItem {
                text: qsTr("Undo")
            }
        }

        Menu {
            title: qsTr("View")

            MenuItem {
                text: qsTr("Center")
            }
        }

        Menu {
            title: qsTr("Tools")

            MenuItem {
                text: qsTr("Options")
            }
        }
    }
}