qt5base-lts/examples/widgets/itemviews
Allan Sandfeld Jensen 515e802ae2 Use C++ <cmath> instead of <math.h>
Including math.h can pollute the default namespace, and break
some compilers if cmath versions of the method are declared as using.

Switching to C++ math functions also greatly simplifies handling of
float qreal as C++ automatically chooses the right method.

[ChangeLog][QtCore][QtMath] qmath.h no longer includes math.h, so any
sources depending on that indirect inclusion may fail to build.

Change-Id: I4d0e331dafba354ec05dc5052e61ef4ff8d387fe
Reviewed-by: Rafael Roquetto <rafael.roquetto@kdab.com>
2015-02-16 16:21:15 +00:00
..
addressbook Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
basicsortfiltermodel Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
chart Use C++ <cmath> instead of <math.h> 2015-02-16 16:21:15 +00:00
coloreditorfactory Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
combowidgetmapper Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
customsortfiltermodel Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
dirview Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
editabletreemodel Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
fetchmore Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
frozencolumn Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
interview Update copyright headers 2015-02-11 06:49:51 +00:00
pixelator Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
puzzle Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
simpledommodel Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
simpletreemodel Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
simplewidgetmapper Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
spinboxdelegate Updated BSD licensed file headers 2015-02-15 07:41:17 +00:00
spreadsheet Update copyright headers 2015-02-11 06:49:51 +00:00
stardelegate Use C++ <cmath> instead of <math.h> 2015-02-16 16:21:15 +00:00
storageview Use C++ <cmath> instead of <math.h> 2015-02-16 16:21:15 +00:00
itemviews.pro Add the StorageView example 2014-08-14 08:20:45 +02: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.