Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
40 lines
1.1 KiB
QML
40 lines
1.1 KiB
QML
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" }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|