summaryrefslogtreecommitdiffstats
path: root/basicsuite/About Boot to Qt/Box.qml
diff options
context:
space:
mode:
authorGunnar Sletta <gunnar.sletta@digia.com>2013-04-23 11:19:39 +0200
committerGunnar Sletta <gunnar.sletta@digia.com>2013-04-23 12:49:59 +0300
commit730bf7b256f0f06c39f92dad064869f5d1368c62 (patch)
treee836042801e0f2e0492de6ca576cd30c956c633d /basicsuite/About Boot to Qt/Box.qml
parent2ceb4b09650242b97bf17b968c49b6e6cf12601a (diff)
fixed up the demo suite
Change-Id: I42dfba551b26f66b8de41dad3df2a5e120c82fb8 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
Diffstat (limited to 'basicsuite/About Boot to Qt/Box.qml')
-rw-r--r--basicsuite/About Boot to Qt/Box.qml30
1 files changed, 30 insertions, 0 deletions
diff --git a/basicsuite/About Boot to Qt/Box.qml b/basicsuite/About Boot to Qt/Box.qml
new file mode 100644
index 0000000..cfbb995
--- /dev/null
+++ b/basicsuite/About Boot to Qt/Box.qml
@@ -0,0 +1,30 @@
+import QtQuick 2.0
+
+Rectangle {
+ id: root
+
+ width: parent.width
+ height: label.font.pixelSize * 3
+
+ radius: 4
+
+ antialiasing: true
+
+ property alias text: label.text;
+
+ property color accentColor: "palegreen"
+
+ gradient: Gradient {
+ GradientStop { position: 0; color: root.accentColor; }
+ GradientStop { position: 1; color: "black"; }
+ }
+
+ Text {
+ id: label
+ font.pixelSize: engine.smallFontSize()
+ font.bold: true;
+ color: "white"
+ anchors.centerIn: parent
+ }
+
+}