aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickanimatedsprite/data/sourceSwitch.qml
blob: 319579d2e1119c827cc83efa955bde3b3698dde0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.4

AnimatedSprite {
    id: animatedSprite
    source: big ? "img100x100.png" : "img50x50.png"
    frameWidth: 100
    frameHeight: 100
    property bool big: true
    MouseArea {
        anchors.fill: parent
        onClicked: animatedSprite.big = !animatedSprite.big
    }
}