aboutsummaryrefslogtreecommitdiffstats
path: root/tests/reparenting.qml
blob: 070a6ffdfaa3913c29a62a7c674520bda6e4df59 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import QtQuick 2.12
import QtQuick.Controls 2.5
import QtQuick.Window 2.12
import CursorNavigation 1.0

Window {
    id: window0
    objectName: "window0"
    width: 100
    height: 100

    CNRect {
        id: cn0
        objectName: "win0Item0"
        CursorNavigation.objectName: "win0Item0Attached"
        x: 10
        y: 10
    }

    CNRect {
        id: cn1
        objectName: "movedItem0"
        CursorNavigation.objectName: "movedItem0Attached"
        x: 40
        y: 10
    }

    CNRect {
        id: cn2
        objectName: "movedItem1"
        x: 70
        y: 10
    }

    function reparent() {
        cn1.parent = window1.contentItem;
        cn2.parent = window1.contentItem;
    }

    Button {
        x: 30
        y: 30
        onClicked: {
            window0.reparent();
        }
    }

    //window that already has CursorNavigation initialized
    Window {
        id: window1
        objectName: "window1"
        width: 100
        height: 100
        visible: true

        CNRect {
            id: cn1_0
            objectName: "win1Item0"
            CursorNavigation.objectName: "win1Item0Attached"
            x: 10
            y: 10
        }

        function reparent() {
            cn1.parent = window2.contentItem;
            cn2.parent = window2.contentItem;
        }

        Button {
            x: 30
            y: 30
            onClicked: {
                window1.reparent();
            }
        }

    }

    //window that does not have CursorNavigation initialized
    Window {
        id: window2
        objectName: "window2"
        width: 100
        height: 100
        visible: true

        function reparent() {
            cn1.parent = window0.contentItem;
            cn2.parent = window0.contentItem;
        }

        Button {
            x: 30
            y: 30
            onClicked: {
                window2.reparent();
            }
        }

    }

}