tests/auto/declarative/qdeclarativefocusscope/data/test2.qml
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:41:55 +0100
branchGCC_SURGE
changeset 31 5daf16870df6
parent 30 5dc02b23752f
child 33 3e2da88830cd
permissions -rw-r--r--
Catchup to latest Symbian^4

import Qt 4.7

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.wantsFocus?"red":"blue" }

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

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

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

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