WaitNote.qml 404 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2011 Nokia Corporation.
  3. */
  4. import QtQuick 1.0
  5. View {
  6. id: waitNote
  7. animSpeed: 0
  8. Image {
  9. anchors.centerIn: parent
  10. source: "gfx/waitNote.png"
  11. NumberAnimation on rotation {
  12. id: animation
  13. loops: Animation.Infinite
  14. from: 0
  15. to: 360
  16. duration: 1500
  17. }
  18. }
  19. }