import Qt 4.7 import "content" Rectangle { id: window width: 480; height: 320 color: "gray" ShadowRectangle { anchors.centerIn: parent; width: 250; height: 250 color: "lightsteelblue" } ShadowRectangle { anchors.centerIn: parent; width: 200; height: 200 color: "steelblue" } ShadowRectangle { anchors.centerIn: parent; width: 150; height: 150 color: "thistle" } }