ReportButton.qml 446 B

1234567891011121314151617181920212223
  1. import QtQuick 2.11
  2. Item {
  3. signal userClicked
  4. Image {
  5. id:image
  6. anchors.fill: parent
  7. source: "qrc:/img/reports-icon.png"
  8. MouseArea{
  9. anchors.fill: parent
  10. onPressed: {
  11. image.opacity = 0.5
  12. }
  13. onReleased: {
  14. image.opacity = 1.0
  15. }
  16. onClicked: {
  17. userClicked()
  18. }
  19. }
  20. }
  21. }