qt5base-lts/examples/itemviews
Stephen Kelly f29e55448b Change the default value of QSortFilterProxyModel::dynamicSortFilter
The value is changed to true. It is a common bug that developers expect
this proxy model to reflect the source model when the source changes.
That requires setDynamicSortFilter(true), so we change the default to
optimize for the common case.

Change-Id: I9bf7efdbda10309fa77aed9391c33054aaae4a29
Reviewed-by: Olivier Goffart <ogoffart@woboq.com>
2012-01-02 16:43:02 +01:00
..
addressbook Change the default value of QSortFilterProxyModel::dynamicSortFilter 2012-01-02 16:43:02 +01:00
basicsortfiltermodel Change the default value of QSortFilterProxyModel::dynamicSortFilter 2012-01-02 16:43:02 +01:00
chart QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
coloreditorfactory QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
combowidgetmapper QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
customsortfiltermodel Change the default value of QSortFilterProxyModel::dynamicSortFilter 2012-01-02 16:43:02 +01:00
dirview QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
editabletreemodel QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
fetchmore QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
frozencolumn QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
interview QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
pixelator QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
puzzle QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
simpledommodel QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
simpletreemodel QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
simplewidgetmapper QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
spinboxdelegate QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
spreadsheet QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
stardelegate QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
itemviews.pro QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
README Remove references to demos from docs. 2011-07-05 19:57:54 +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.