diff options
Diffstat (limited to 'examples/declarative/dynamic/dynamic.qml')
-rw-r--r-- | examples/declarative/dynamic/dynamic.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/declarative/dynamic/dynamic.qml b/examples/declarative/dynamic/dynamic.qml index 54d8dc8..6ea7ab8 100644 --- a/examples/declarative/dynamic/dynamic.qml +++ b/examples/declarative/dynamic/dynamic.qml @@ -1,17 +1,17 @@ import Qt 4.6 -Rect { id: page; width: 800; height: 800; color:"black" +Rectangle { id: page; width: 800; height: 800; color:"black" Script { source: "dynamic.js" } property bool extendStars: false; Item { id: targetItem; x: 100; y: 100; } Item { id: targetItem2; x: 0; y: 300; } - Rect { width: 100; height: 100; color: "green"; id: rect + Rectangle { width: 100; height: 100; color: "green"; id: rect MouseRegion { anchors.fill:parent; onClicked: {a = createWithComponent();}} } - Rect { width: 100; height: 100; color: "red"; id: rect2; y:100; + Rectangle { width: 100; height: 100; color: "red"; id: rect2; y:100; MouseRegion { anchors.fill:parent; onClicked: {destroyDynamicObject();}} } - Rect { width: 100; height: 100; color: "blue"; id: rect3; y:200; + Rectangle { width: 100; height: 100; color: "blue"; id: rect3; y:200; MouseRegion { anchors.fill:parent; onClicked: { if(fourthBox == null) { |