Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
dist/ | H | 10-Nov-2020 | - | 1,766 | 1,224 | |
src/ | H | 10-Nov-2020 | - | 73,541 | 56,952 | |
.qmake.conf | H A D | 10-Nov-2020 | 205 | 8 | 5 | |
.tag | H A D | 10-Nov-2020 | 41 | 2 | 1 | |
LICENSE.FDL | H A D | 10-Nov-2020 | 22.4 KiB | 451 | 373 | |
LICENSE.GPL2 | H A D | 10-Nov-2020 | 17.7 KiB | 340 | 281 | |
LICENSE.GPL3 | H A D | 10-Nov-2020 | 34.3 KiB | 675 | 553 | |
LICENSE.GPL3-EXCEPT | H A D | 10-Nov-2020 | 35.5 KiB | 705 | 574 | |
LICENSE.LGPL3 | H A D | 10-Nov-2020 | 7.5 KiB | 166 | 128 | |
README | H A D | 10-Nov-2020 | 1.5 KiB | 43 | 25 | |
qtquickcontrols.pro | H A D | 10-Nov-2020 | 46 | 4 | 2 | |
sync.profile | H A D | 10-Nov-2020 | 126 | 5 | 4 |
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