1234567891011121314151617181920212223 |
- import QtQuick 2.11
- Item {
- signal userClicked
- Image {
- id:image
- anchors.fill: parent
- source: "qrc:/img/reports-icon.png"
- MouseArea{
- anchors.fill: parent
- onPressed: {
- image.opacity = 0.5
- }
- onReleased: {
- image.opacity = 1.0
- }
- onClicked: {
- userClicked()
- }
- }
- }
- }
|