summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-11-13 03:30:27 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-11-13 03:30:27 (GMT)
commitd70f057db1b5765764257530c88f5c0350cf9146 (patch)
tree7a7799ff739857de6b716cd39d49238e424cf9b1 /doc/src/snippets
parente9076e2f4a3819f1540e00923535fc512495f0d8 (diff)
downloadQt-d70f057db1b5765764257530c88f5c0350cf9146.zip
Qt-d70f057db1b5765764257530c88f5c0350cf9146.tar.gz
Qt-d70f057db1b5765764257530c88f5c0350cf9146.tar.bz2
doc
Diffstat (limited to 'doc/src/snippets')
-rw-r--r--doc/src/snippets/declarative/border-image.qml31
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/src/snippets/declarative/border-image.qml b/doc/src/snippets/declarative/border-image.qml
new file mode 100644
index 0000000..c4215cd
--- /dev/null
+++ b/doc/src/snippets/declarative/border-image.qml
@@ -0,0 +1,31 @@
+import Qt 4.6
+
+Rectangle {
+ id: page
+ color: "white"
+ width: 520; height: 280
+
+ Row {
+ anchors.centerIn: parent
+ spacing: 50
+//! [0]
+ BorderImage {
+ width: 180; height: 180
+ border.left: 30; border.top: 30
+ border.right: 30; border.bottom: 30
+ horizontalTileMode: BorderImage.Stretch
+ verticalTileMode: BorderImage.Stretch
+ source: "content/colors.png"
+ }
+
+ BorderImage {
+ width: 180; height: 180
+ border.left: 30; border.top: 30
+ border.right: 30; border.bottom: 30
+ horizontalTileMode: BorderImage.Round
+ verticalTileMode: BorderImage.Round
+ source: "content/colors.png"
+ }
+//! [0]
+ }
+}