X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=qml%2Fqwp%2Fcontent%2FLoading.qml;fp=qml%2Fqwp%2Fcontent%2FLoading.qml;h=13958b5a7bf2aeb09033b5919e4eba5997583601;hb=537e6ec61f576a4a3a40e30e900c55ea219a55c6;hp=0000000000000000000000000000000000000000;hpb=d7b563a1a6f5a9388c4a1f99ffd1099a97796dae;p=qwp diff --git a/qml/qwp/content/Loading.qml b/qml/qwp/content/Loading.qml new file mode 100644 index 0000000..13958b5 --- /dev/null +++ b/qml/qwp/content/Loading.qml @@ -0,0 +1,9 @@ +import QtQuick 1.0 + +Image { + id: loading; source: "loading.png" + //id: loading; source: "progress.png" + NumberAnimation on rotation { + from: 0; to: 360; running: loading.visible == true; loops: Animation.Infinite; duration: 900 + } +}