summaryrefslogtreecommitdiffstats
path: root/examples/declarative/connections/connections.qml
blob: 31463383efe013e3294cbc8312198aa709be8c49 (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(x,y)">
        color="green";
        dot.x = x-1;
        dot.y = y-1;
    </Connection>
</Rect>