summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/contacts/2_Reuse/RemoveButton4.qml
blob: a489e958120f6567dbd7dbfbfcbd677a19896abf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<Rect id="removeButton"
    width="30" height="30"
    color="red"
    radius="5">
    <properties>
        <Property name="expandedWidth" value="230"/>
    </properties>
    <signals>
        <Signal name="confirmed"/>
    </signals>
    <resources>
        <Script>
            function toggle() {
                print('removeButton.toggle()');
                if (removeButton.state == 'opened') {
                    removeButton.state = '';
                    page.mouseGrabbed=false;
                } else {
                    if (!page.mouseGrabbed) {
                        removeButton.state = 'opened';
                        page.mouseGrabbed=true;
                    }
                }
            }
        </Script>
    </resources>
    <Image id="trashIcon"
        width="22" height="22"
        anchors.right="{parent.right}" anchors.rightMargin="4"
        anchors.verticalCenter="{parent.verticalCenter}"
        src="../shared/pics/trash.png"
        opacity="1">
        <MouseRegion
            anchors.fill="{parent}"
            onClicked="toggle()"/>
    </Image>
    <Image id="cancelIcon"
        width="22" height="22"
        anchors.right="{parent.right}" anchors.rightMargin="4"
        anchors.verticalCenter="{parent.verticalCenter}"
        src="../shared/pics/cancel.png"
        opacity="0">
        <MouseRegion
            anchors.fill="{parent}"
            onClicked="toggle()"/>
    </Image>
    <Image id="confirmIcon"
        width="22" height="22"
        anchors.left="{parent.left}" anchors.leftMargin="4"
        anchors.verticalCenter="{parent.verticalCenter}"
        src="../shared/pics/ok.png"
        opacity="0">
        <MouseRegion
            anchors.fill="{parent}"
            onClicked="toggle(); removeButton.confirmed.emit()"/>
    </Image>
    <Text id="text"
        anchors.verticalCenter="{parent.verticalCenter}"
        anchors.left="{confirmIcon.right}" anchors.leftMargin="4"
        anchors.right="{cancelIcon.left}" anchors.rightMargin="4"
        font.bold="true"
        color="white"
        hAlign="AlignHCenter"
        text="Remove"
        opacity="0"/>
    <states>
        <State name="opened">
            <SetProperty target="{removeButton}" property="width" value="{removeButton.expandedWidth}"/>
            <SetProperty target="{text}" property="opacity" value="1"/>
            <SetProperty target="{confirmIcon}" property="opacity" value="1"/>
            <SetProperty target="{cancelIcon}" property="opacity" value="1"/>
            <SetProperty target="{trashIcon}" property="opacity" value="0"/>
        </State>
    </states>
    <transitions>
        <Transition fromState="*" toState="opened" reversible="true">
            <NumericAnimation properties="opacity,x,width" duration="200"/>
        </Transition>
    </transitions>
</Rect>