summaryrefslogtreecommitdiffstats
path: root/src/domain/abstractdomain.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Qt Charts project file structure changeTitta Heikkala2014-10-141-266/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Charts repository structure is changed to follow the structure of a Qt Add-On module. The task includes following changes: - All macros and definitions named 'commercial' have been renamed. - Compile errors related to QString and qSort usage have been fixed. - Old demos are moved under examples. The QML examples now support only Qt Quick 2.0, the support for Qt Quick 1 is removed. - The QML examples with multiple views are updated so that they are usable also with touch devices. - Unnecessary version checks are removed from examples. - The build stamp has been removed as it was only meant for Charts development purposes and it's no longer needed. Also development build related debug prints are removed as __DATE__ can't be used for all OS thus it doesn't make much sense. - Documentation structure has been updated based on the new module structure. The raw HTML files have been removed. Demos are combined to examples. - Unnecessary .qdocinc files are no longer needed. The content is moved to the corresponding .cpp files. - The Charts widget designer plugin is updated according to the module change. - The test cases updated according to the project structure change. Tests are added also for version 2.0. - cmake modules generation is not needed with Qt 5.4 and Qt Charts so it's disabled. - The new module name and version are updated to the plugin.qmltypes file. Task-number: QTRD-2844, QTRD-3217, QTRD-3218, QTRD-3277, QTRD-3228, QTRD-2526, QTRD-3233, QTRD-3222 Change-Id: Ib7fb26057cde710ffaf6bc780c8bf52a16f45160 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>
* Fix empty domain detectionTitta Heikkala2014-09-191-1/+1
| | | | | | | | | | Instead of using qFuzzyIsNull to detect if domain is empty use qFuzzyCompare. This will make it possible to draw axises with small ranges. Change-Id: Iea39f74e3eb317f20aab3061cd942cafca9ef08a Task-number: QTRD-3296 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
* Update copyright yearTitta Heikkala2014-05-131-1/+1
| | | | | | Task-number: QTRD-3083 Change-Id: Ide516e5299d2363953d46bf9dc5e2f9ec277154e Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
* Fix Chart build when QT_NO_TEXTSTREAM is definedTitta Heikkala2013-10-031-0/+4
| | | | | | | | | | If QT_NO_TEXTSTREAM is defined the operator<< can't be used. It's safe to flag out the streaming operator debug information because the function itself can't be used when QT_NO_TEXTSTREAM is defined. Task-number: QTRD-2336 Change-Id: I2d64f4dd03bf65e7ae0e07f4916f245bc71a7458 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
* Qt Commercial -> Qt EnterpriseMiikka Heikkinen2013-06-131-3/+3
| | | | | | | Also updated licenses. Change-Id: Ie14327305207e14879c1f1223219fcdfa1669dc0 Reviewed-by: Mika Salmela <mika.salmela@digia.com>
* Added QChart::zoomReset() and QChart::isZoomed()Miikka Heikkinen2013-06-031-1/+29
| | | | | | | | | | | | | | QChart::zoomReset() will restore all series domains to whatever they were before first zoom operation was called. QChart::isZoomed() indicates if any zoom operations have been called since chart creation or previous zoom reset. Also fixed related QChartView right mouse button release docs. Task-number: QTRD-1944 Change-Id: I5eec2352a2aa6d1b8ed7e6c97653bb327fb92cd3 Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>
* Add Polar chart supportMiikka Heikkinen2013-04-171-13/+24
| | | | | | | | | | This commit also heavily refactors things as polar chart needs separate implementation of various classes that previously only needed one, such as ChartAxis and ChartLayout. Task-number: QTRD-1757 Change-Id: I3d3db23920314987ceef3ae92879960b833b7136 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
* Fixed the copyright year 2012 -> 2013Miikka Heikkinen2013-03-051-1/+1
|
* Bugfix resize event during zoominMichal Klocek2012-11-261-7/+11
|
* Adds domains swap logicMichal Klocek2012-11-261-0/+29
|
* Log domains zoomin, zoomout and move addedMarek Rosa2012-11-261-106/+0
|
* Domains addedMarek Rosa2012-11-261-0/+296