summaryrefslogtreecommitdiffstats
path: root/tests/quicktestbrowser/ButtonWithMenu.qml
blob: 56a4d3533adbaf66a6c23064f0d60da7c609255e (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick 2.3
import QtQuick.Controls 1.2

// The QtQuick controls guys are slackers, so we need to make our own stuff

ToolButton {
    id: root
    property Menu longPressMenu
    function showMenu() {
        longPressMenu.__popup(Qt.rect(0, root.height, 0, 0), 0)
    }

    Binding {
        target: longPressMenu
        property: "__visualItem"
        value: root
    }

    MouseArea {
        anchors.fill: parent
        acceptedButtons: Qt.LeftButton | Qt.RightButton
        onClicked: {
            if (mouse.button == Qt.RightButton)
                showMenu()
            else
                root.clicked()
        }
        onPressAndHold: showMenu()
    }
}