summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/flickable/Day.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/visual/flickable/Day.qml')
-rw-r--r--tests/auto/declarative/visual/flickable/Day.qml27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/auto/declarative/visual/flickable/Day.qml b/tests/auto/declarative/visual/flickable/Day.qml
new file mode 100644
index 0000000..549a9a0
--- /dev/null
+++ b/tests/auto/declarative/visual/flickable/Day.qml
@@ -0,0 +1,27 @@
+import Qt 4.6
+
+Rect {
+ property string day
+
+ width: 200
+ height: 300
+ radius: 7
+ pen.color: "black"
+ id: Page
+ Image {
+ x: 10
+ y: 10
+ source: "cork.jpg"
+ opaque: true
+ }
+ Text {
+ x: 20
+ y: 20
+ height: 40
+ font.size: 14
+ font.bold: true
+ text: day
+ style: "Outline"
+ styleColor: "#dedede"
+ }
+}