summaryrefslogtreecommitdiffstats
path: root/examples/demos/samegame/content/Button.qml
blob: 1fc24077326457c4e2f2ebe5d70ff7a76afa1a93 (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
34
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Particles

Item {
    id: button
    property alias imgSrc: image.source
    property alias system: emitter.system
    property alias group: emitter.group
    signal clicked
    property bool rotatedButton: false

    width: image.width
    height: image.sourceSize.height
    Image {
        id: image
        height: parent.height
        width: height/sourceSize.height * sourceSize.width

        anchors.horizontalCenter: parent.horizontalCenter
        rotation: button.rotatedButton ? ((Math.random() * 3 + 2) * (Math.random() <= 0.5 ? -1 : 1)) : 0
        MenuEmitter {
            id: emitter
            anchors.fill: parent
            //shape: MaskShape {source: image.source}
        }
    }
    MouseArea {
        anchors.fill: parent
        onClicked: {parent.clicked(); emitter.burst(400);}
    }
}