summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativefocusscope/data/test2.qml
blob: 8c0b3b4267686459d5e8525873612573589495bb (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
import QtQuick 1.0

Rectangle {
    color: "white"
    width: 800
    height: 600

    Text { text: "All five rectangles should be red" }

    FocusScope {
        y: 100
        focus: true; objectName: "item1"
        Rectangle { width: 50; height: 50; color: parent.activeFocus?"red":"blue" }

        FocusScope {
            y: 100
            focus: true; objectName: "item2"
            Rectangle { width: 50; height: 50; color: parent.activeFocus?"red":"blue" }

            FocusScope {
                y: 100
                focus: true; objectName: "item3"
                Rectangle { width: 50; height: 50; color: parent.activeFocus?"red":"blue" }

                FocusScope {
                    y: 100
                    focus: true; objectName: "item4"
                    Rectangle { width: 50; height: 50; color: parent.activeFocus?"red":"blue" }

                    FocusScope {
                        y: 100
                        focus: true; objectName: "item5"
                        Rectangle { width: 50; height: 50; color: parent.activeFocus?"red":"blue" }
                    }
                }
            }
        }
    }
}
'>Change command line processing API to use wchar_t.Martin v. Löwis2008-04-051-18/+21 * Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-4/+27 * Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-0/+9 * Move our own getopt() implementation to _PyOS_GetOpt(), and use itThomas Wouters2000-11-03