Text {id: titletext: qsTr("Qt Quick ")x: 50y: 25font.family: "Helvetica"font.pixelSize: 50MouseArea {anchors.fill: parentonPressed: parent.color = "green"onReleased: parent.color = "red"}
}
Rectangle {x: 50y: 200width: 100height: 50color: mouse_area.containsMouse ? "blue" : "orange"MouseArea {id: mouse_areaanchors.fill: parenthoverEnabled: true}
}