qt5base-lts/examples/widgets/itemviews
Kai Köhne 57402ffb9b Examples: Remove unneeded CMake options
CMAKE_INCLUDE_CURRENT_DIR is not necessary anymore for moc since
CMake 3.8: https://cmake.org/cmake/help/latest/release/3.8.html#other-changes

CMAKE_AUTORCC should not be used anymore. Instead, we now use
qt_add_resources() or similar

Enable CMAKE_AUTOUIC only if .ui files are present.

Pick-to: 6.3
Task-number: QTBUG-87643
Change-Id: I835e2994cd5dba9918136999499b9077961b616c
Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
2022-01-24 14:00:00 +01:00
..
addressbook Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
basicsortfiltermodel Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
chart Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
coloreditorfactory Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
combowidgetmapper Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
customsortfiltermodel Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
dirview Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
editabletreemodel Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
fetchmore Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
flattreeview Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
frozencolumn Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
interview Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
pixelator Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
puzzle Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
simpledommodel Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
simpletreemodel Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
simplewidgetmapper Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
spinboxdelegate Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
spreadsheet Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
stardelegate Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
storageview Examples: Remove unneeded CMake options 2022-01-24 14:00:00 +01:00
CMakeLists.txt Examples: Remove remaining conversion markers in CMakeLists.txt 2021-12-13 14:16:26 +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.