summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYoann Lopes <yoann.lopes@nokia.com>2010-07-14 22:01:37 +0200
committerYoann Lopes <yoann.lopes@nokia.com>2010-07-14 22:01:37 +0200
commit327c5626478523337d217205eafaa8169e035d2c (patch)
tree43699781e07fc39b7b67c4191bbdac422b39a640
parenta5c09fe65f77ff721bcd8820373475aaac966480 (diff)
qml changed.
-rw-r--r--example.qml32
-rw-r--r--logo.pngbin0 -> 1478 bytes
2 files changed, 27 insertions, 5 deletions
diff --git a/example.qml b/example.qml
index 1d008bd..4fadfe5 100644
--- a/example.qml
+++ b/example.qml
@@ -1,16 +1,38 @@
import Qt 4.7
Item {
+ id: item1
width: 1024
height: 768
+ clip: true
Rectangle {
id: rectangle1
- x: 51
- y: 200
- width: 208
- height: 410
- color: "#96444444"
+ y: 193
+ width: 135
+ height: 412
+ color: "#64ffffff"
radius: 20
+ anchors.left: parent.left
+ anchors.leftMargin: 28
+ anchors.verticalCenter: parent.verticalCenter
+ border.width: 3
+ border.color: "#e6161616"
+ clip: true
+
+ Image {
+ id: image1
+ height: 40
+ opacity: 0.4
+ anchors.top: parent.top
+ anchors.topMargin: 14
+ anchors.right: parent.right
+ anchors.rightMargin: 0
+ anchors.left: parent.left
+ anchors.leftMargin: 0
+ fillMode: "PreserveAspectFit"
+ smooth: true
+ source: "logo.png"
+ }
}
}
diff --git a/logo.png b/logo.png
new file mode 100644
index 0000000..d75936b
--- /dev/null
+++ b/logo.png
Binary files differ