summaryrefslogtreecommitdiffstats
path: root/examples/declarative/connections/connections.qml
blob: 45c0e99389992682ff76cb3f00d9cdaece832a6d (plain)
1
2
3
4
5
6
7
8
9
<Rect id="rect" color="blue" width="40" height="30">
    <Rect id="dot" color="red" width="3" height="3" x="{rect.width/2}" y="{rect.height/2}"/>
    <MouseRegion id="mr" anchors.fill="{rect}"/>
    <Connection sender="{mr}" signal="clicked(mouse)">
        color="green";
        dot.x = mouse.x-1;
        dot.y = mouse.y-1;
    </Connection>
</Rect>