summaryrefslogtreecommitdiffstats
path: root/examples/declarative/border-image/borders.qml
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-08-07 06:41:35 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-08-07 06:41:35 (GMT)
commitb1f10dc22091f80fba651e32e824175f25956313 (patch)
tree788f291f88e8bd2985ae1b18fe618aedc64a2c14 /examples/declarative/border-image/borders.qml
parent76dccb8afe640ec6e22ba8a6e5843c47fd2bd832 (diff)
parentc285afe618837229aee32150216fc853fdeac38d (diff)
downloadQt-b1f10dc22091f80fba651e32e824175f25956313.zip
Qt-b1f10dc22091f80fba651e32e824175f25956313.tar.gz
Qt-b1f10dc22091f80fba651e32e824175f25956313.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'examples/declarative/border-image/borders.qml')
-rw-r--r--examples/declarative/border-image/borders.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/declarative/border-image/borders.qml b/examples/declarative/border-image/borders.qml
new file mode 100644
index 0000000..a4a329b
--- /dev/null
+++ b/examples/declarative/border-image/borders.qml
@@ -0,0 +1,18 @@
+import Qt 4.6
+
+Rect {
+ id: Page
+ color: "white"
+ width: 520; height: 280
+
+ Image {
+ x: 20; y: 20; width: 230; height: 240
+ smooth: true
+ source: "colors-stretch.sci"
+ }
+ Image {
+ x: 270; y: 20; width: 230; height: 240
+ smooth: true
+ source: "colors-round.sci"
+ }
+}