summaryrefslogtreecommitdiffstats
path: root/basicsuite/About Boot to Qt/QtFramework.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/QtFramework.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/QtFramework.qml')
-rw-r--r--basicsuite/About Boot to Qt/QtFramework.qml35
1 files changed, 35 insertions, 0 deletions
diff --git a/basicsuite/About Boot to Qt/QtFramework.qml b/basicsuite/About Boot to Qt/QtFramework.qml
new file mode 100644
index 0000000..3cb2f10
--- /dev/null
+++ b/basicsuite/About Boot to Qt/QtFramework.qml
@@ -0,0 +1,35 @@
+import QtQuick 2.0
+
+Column {
+ id: root
+
+ width: parent.width
+
+ spacing: engine.smallFontSize()
+
+ Title {
+ text: "Qt Framework"
+ }
+
+ ContentText {
+ id: brief
+ width: parent.width
+ text: '<p align="justify">Qt is a full development framework with tools designed to streamline
+ the creation of applications and user interfaces for desktop, embedded
+ and mobile platforms.
+ <ul>
+ <li><b>Qt Framework</b> - intuitive APIs for C++ and CSS/JavaScript-like
+ programming with Qt Quick for rapid UI creation<\li>
+ <li><b>Qt Creator IDE</b> - powerful cross-platform integrated
+ development environment, including UI designer tools and on-device debugging</li>
+ <li><b>Tools and toolchains</b> - internationalization support, embedded toolchains
+ and more.</li>
+ </ul>
+ <p align="justify">With Qt, you can reuse code efficiently to target multiple platforms
+ with one code base. The modular C++ class library and developer tools
+ easily enables developers to create applications for one platform and
+ easily build and run to deploy on another platform.'
+ }
+
+
+}