summaryrefslogtreecommitdiffstats
path: root/basicsuite/About Qt on Android/QtFramework.qml
diff options
context:
space:
mode:
authoraavit <eirik.aavitsland@digia.com>2013-03-06 15:00:27 +0100
committeraavit <eirik.aavitsland@digia.com>2013-03-06 15:00:27 +0100
commit2e6e329dcda94df2976c469ef81f810132ec3f8f (patch)
treeac5ee5dfddd238e4130a6c1e173284a2d28821bd /basicsuite/About Qt on Android/QtFramework.qml
Added the suite used at Embedded World 2013. See basicsuite/README.
Feel free to add & improve!
Diffstat (limited to 'basicsuite/About Qt on Android/QtFramework.qml')
-rw-r--r--basicsuite/About Qt on Android/QtFramework.qml35
1 files changed, 35 insertions, 0 deletions
diff --git a/basicsuite/About Qt on Android/QtFramework.qml b/basicsuite/About Qt on Android/QtFramework.qml
new file mode 100644
index 0000000..6e549ab
--- /dev/null
+++ b/basicsuite/About Qt on Android/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: "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>
+ 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."
+ }
+
+
+}