qt5base-lts/examples/widgets/itemviews
Kevin Funk 99539a2894 Allow to build examples as standalone project
Create CMake config files which can be used from the very same CMake
project. These CMake config files simply do not create any targets,
controlled via the QT_NO_CREATE_TARGETS.

This patch also allows to build qtbase.git:examples as a standalone
project, against an already-built Qt.

Ran this:
  ag -s "QT " examples -l -0 | xargs -0 -n 1 .../util/cmake/pro2cmake.py --is-example

Task-number: QTBUG-74713
Change-Id: I44cce5a4048618b30f890c5b789592c227a8b47d
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
2019-06-05 12:53:28 +00:00
..
addressbook Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
basicsortfiltermodel Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
chart Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
coloreditorfactory Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
combowidgetmapper Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
customsortfiltermodel Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
dirview Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
editabletreemodel Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
fetchmore Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
flattreeview Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
frozencolumn Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
interview Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
pixelator Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
puzzle Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
simpledommodel Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
simpletreemodel Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
simplewidgetmapper Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
spinboxdelegate Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
spreadsheet Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
stardelegate Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
storageview Allow to build examples as standalone project 2019-06-05 12:53:28 +00:00
CMakeLists.txt CMake: Add widgets examples 2019-03-26 15:25:39 +00:00
itemviews.pro Make sure we can build with -no-feature-draganddrop 2018-05-29 18:31:35 +00:00
README Moving .qdoc files under examples/widgets/doc 2012-08-20 12:20:55 +02:00

Item views are widgets that typically display data sets. Qt 4's model/view
framework lets you handle large data sets by separating the underlying data
from the way it is represented to the user, and provides support for
customized rendering through the use of delegates.


Documentation for these examples can be found via the Examples
link in the main Qt documentation.