aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/customitems/dialcontrol/QuitButton.qml
blob: 841ff34ee8fd77dd661aaff7409da40f82207aba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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()
    }
}