summaryrefslogtreecommitdiffstats
path: root/demos/declarative/photoviewer/PhotoViewerCore/BusyIndicator.qml
blob: 1cad8c96728d46e498f6e9c53cda636559e00af3 (plain)
1
2
3
4
5
6
7
8
9
import Qt 4.7

Image {
    id: container
    property bool on: false

    source: "images/busy.png"; visible: container.on
    NumberAnimation on rotation { running: container.on; from: 0; to: 360; loops: Animation.Infinite; duration: 1200 }
}