summaryrefslogtreecommitdiffstats
path: root/basicsuite/About Boot to Qt/QtFramework.qml
blob: 3cb2f10a964b9f3f3ec0f7b97eb08c68d073a146 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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.'
    }


}