summaryrefslogtreecommitdiffstats
path: root/examples/scxml/trafficlight-qml-static/Button.qml
blob: 1333193c7258a873efac5fd0e1bed9ca1a78e76b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

pragma ComponentBehavior: Bound

import QtQuick

Image {
    id: button
    signal clicked

    MouseArea {
        id: mouse
        anchors.fill: parent
        onClicked: button.clicked()
    }
}