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

..03-May-2022-

dist/H10-Nov-2020-1,7661,224

src/H10-Nov-2020-73,54156,952

.qmake.confH A D10-Nov-2020205 85

.tagH A D10-Nov-202041 21

LICENSE.FDLH A D10-Nov-202022.4 KiB451373

LICENSE.GPL2H A D10-Nov-202017.7 KiB340281

LICENSE.GPL3H A D10-Nov-202034.3 KiB675553

LICENSE.GPL3-EXCEPTH A D10-Nov-202035.5 KiB705574

LICENSE.LGPL3H A D10-Nov-20207.5 KiB166128

READMEH A D10-Nov-20201.5 KiB4325

qtquickcontrols.proH A D10-Nov-202046 42

sync.profileH A D10-Nov-2020126 54

README

1ABOUT
2
3This project aims to deliver widgets/controls functionality with Qt Quick.
4
5Some more information can be found on the following blog entries:
6
7https://blog.qt.io/blog/2011/03/10/qml-components-for-desktop/
8https://blog.qt.io/blog/2011/05/26/table-view-with-qt-quick/
9https://blog.qt.io/blog/2011/08/26/toplevel-windows-and-menus-with-qt-quick/
10
11
12HELP
13
14If you have problems or questions, feel free to ask on the Qt mailing list at interest@qt-project.org
15or alternatively the Qt Forum: http://forum.qt.io/category/12/qt-quick
16
17
18INSTALLATION
19
20Note the MINIMUM REQUIREMENT for this project is that you have Qt 5.0. (Qt Quick 2)
21
22The components rely on several C++ plugins in order to integrate with the desktop. To install the
23components into your Qt directory, simply enter the root directory and do:
24
25'qmake && make install'
26
27This will compile and copy the plugins and components into your QTDIR/qml folder.
28If you are compiling against a system Qt on linux, you might have to do a 'sudo make install'
29in order to install the project.
30
31
32USAGE
33
34The examples should show how you can use the components. If you use code that makes use of
35Window or MenuBar, you will have to start your application with the desktopviewer launcher
36application. This is because it will ensure that the QMLViewer application itself does not
37show and make up the main window in your application.
38
39Again, please refer to :
40https://blog.qt.io/blog/2011/08/26/toplevel-windows-and-menus-with-qt-quick/
41
42For more information on this.
43