• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

dist/H30-Aug-2021-2,2121,688

src/H30-Aug-2021-134,62490,838

.qmake.confH A D30-Aug-2021168 95

.tagH A D30-Aug-202141 21

LICENSE.FDLH A D30-Aug-202122.4 KiB451373

LICENSE.GPL2H A D30-Aug-202117.7 KiB340281

LICENSE.GPL3H A D30-Aug-202134.3 KiB675553

LICENSE.GPLv3H A D30-Aug-202134.8 KiB687561

LICENSE.LGPL3H A D30-Aug-20217.5 KiB166128

LICENSE.LGPLv3H A D30-Aug-20218 KiB175134

README.mdH A D30-Aug-20212.4 KiB5639

configure.jsonH A D30-Aug-202190 76

qtquickcontrols2.proH A D30-Aug-202145 32

sync.profileH A D30-Aug-2021242 76

README.md

1Qt Quick Controls 2
2===================
3
4![Qt Quick Controls 2 Styles](https://doc.qt.io/qt-5/images/qtquickcontrols2-styles.png)
5
6The Qt Quick Controls 2 module delivers the next generation user interface
7controls based on Qt Quick. In comparison to the desktop-oriented Qt Quick
8Controls 1, Qt Quick Controls 2 are an order of magnitude simpler, lighter and
9faster, and are primarily targeted towards embedded and mobile platforms.
10
11Qt Quick Controls 2 are based on a flexible template system that enables rapid
12development of entire custom styles and user experiences. Qt Quick Controls 2
13comes with a selection of built-in styles:
14
15- Default style - a simple and minimal all-round style that offers the maximum performance
16- Fusion style - a platform-agnostic style that offers a desktop-oriented look'n'feel
17- Imagine style - a designer-friendly style based on image assets
18- Material style - a style based on the Google Material Design Guidelines
19- Universal style - a style based on the Microsoft Universal Design Guidelines
20
21More information can be found in the following blog posts:
22
23- http://blog.qt.io/blog/2015/03/31/qt-quick-controls-for-embedded/
24- http://blog.qt.io/blog/2015/11/23/qt-quick-controls-re-engineered-status-update/
25- http://blog.qt.io/blog/2016/06/10/qt-quick-controls-2-0-a-new-beginning/
26- http://blog.qt.io/blog/2016/10/06/qt-quick-controls-2-1-and-beyond/
27- http://blog.qt.io/blog/2017/05/31/ready-made-ui-controls-qt-quick-controls-2-summary/
28- http://blog.qt.io/blog/2017/11/23/qt-quick-controls-2-imagine-style/
29- http://blog.qt.io/blog/2017/11/23/ready-qt-quick-controls-2-3/
30
31## Help
32
33If you have problems or questions, don't hesitate to:
34
35- ask on the Qt Interest mailing list http://lists.qt-project.org/mailman/listinfo/interest
36- ask on the Qt Forum http://forum.qt.io/category/12/qt-quick
37- report issues to the Qt Bug Tracker https://bugreports.qt.io (component: *Qt Quick: Controls 2*)
38
39## Installation
40
41The MINIMUM REQUIREMENT for building this project is to use the same branch
42of Qt 5. The dependencies are *qtbase* and *qtdeclarative*.
43
44To install the controls into your Qt directory (```QTDIR/qml```):
45
46    qmake
47    make
48    make install
49
50If you are compiling against a system Qt on Linux, you might have to use
51```sudo make install``` to install the project.
52
53## Usage
54
55Please refer to the [Getting Started with Qt Quick Controls 2](https://doc.qt.io/qt-5/qtquickcontrols2-gettingstarted.html) documentation.
56