aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols/customization/data/styles/identified/MenuItem.qml
blob: 4ba04908ad6ff0b7f1df343c8bea8c7f1f054692 (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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Templates as T

T.MenuItem {
    id: control
    objectName: "menuitem-identified"

    arrow: Item {
        id: arrow
        objectName: "menuitem-arrow-identified"
    }

    indicator: Item {
        id: indicator
        objectName: "menuitem-indicator-identified"
    }

    contentItem: Item {
        id: contentItem
        objectName: "menuitem-contentItem-identified"
    }

    background: Item {
        id: background
        objectName: "menuitem-background-identified"
    }
}