aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/customitems/dialcontrol/QuitButton.qml
blob: af362b6ddfd48c6dc72eb6476d6b9579e0454ea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
Image {
    source: "quit.png"
    scale: quitMouse.pressed ? 0.8 : 1.0
    MouseArea {
        id: quitMouse
        anchors.fill: parent
        anchors.margins: -10
        onClicked: Qt.quit()
    }
}