MenuItem.qml 519 B

12345678910111213141516171819202122232425
  1. import Qt 4.7
  2. Rectangle {
  3. id: container
  4. width: 80
  5. height: 80
  6. color: "#00000000"
  7. property string srcPic: "pvp.png"
  8. signal clicked(string srcPic)
  9. Image {
  10. anchors.fill: parent
  11. source: srcPic
  12. }
  13. Behavior on x { PropertyAnimation { duration: 500; easing.type: Easing.InOutQuad } }
  14. Behavior on y { PropertyAnimation { duration: 500; easing.type: Easing.InOutQuad } }
  15. MouseArea {
  16. anchors.fill: parent
  17. onClicked: container.clicked(srcPic)
  18. }
  19. }