summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qmltests/mock-delegates/QtWebEngine/ControlsDelegates/Menu.qml
blob: cd7ed48211c6dbc2d8ce1d483c5ae6bfc978887b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2021 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 QtQml
import "../../TestParams"

QtObject {
    id: menu
    property string linkText: ""
    property var mediaType: null
    property string selectedText: ""

    signal done()

    function open() {
        MenuParams.isMenuOpened = true;
    }
}