summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update dependencies on '6.5.1' in qt/qtchartsv6.5.16.5.1Qt Submodule Update Bot2023-05-161-3/+3
| | | | | Change-Id: I635c124ac826b78a76d408ec7e2c8df6ae8f20d7 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5.1' in qt/qtchartsQt Submodule Update Bot2023-05-161-1/+1
| | | | | Change-Id: I19d1c5ed35e6cf6eb57145eeb4929f46aac45754 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5.1' in qt/qtchartsQt Submodule Update Bot2023-05-151-3/+3
| | | | | Change-Id: I382727e663ebd18f426995ac83a54c521aa2d169 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5.1' in qt/qtchartsQt Submodule Update Bot2023-05-111-3/+3
| | | | | Change-Id: I61d8205fd31269177fe771c91070e69a774aad58 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5.1' in qt/qtchartsQt Submodule Update Bot2023-05-051-3/+3
| | | | | Change-Id: I5ac0b8c4ddb45f938b48e94c0195ba4052cc55ea Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-05-011-3/+3
| | | | | Change-Id: Ibc08145dda8fe2a5cf079984bd43bec79e4e192a Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-04-281-3/+3
| | | | | Change-Id: I8673e77afb36687e5eacc78d44bcc003cf4f5994 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-04-261-3/+3
| | | | | Change-Id: I69c292a58fb1852b7b14319659ae4b58430f09fe Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Do not use global pointsConfigurationDirty flagIvan Solovev2023-04-212-4/+4
| | | | | | | | | | | | | | | | | | | | | The flag is toggled only when the pointsConfiguration() is changed. Later this flag is used to check if we need to resize the markers for the points. If the points are removed, and later re-added without changing the pointsConfiguration(), this flag was preventing a proper size update of the markers. Fix it by simply removing the global flag, as all the other places where pointsConfiguration() is used do not check it anyway. Task-number: QTBUG-112919 Change-Id: Ic56eb94c94dda319d23f6d6eadfd4df884618064 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Lukasz Kosinski <lukasz@scythe-studio.com> Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io> (cherry picked from commit 2de0293dfc38090d448f095d2a3bd58134d5b026) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* ScatterChartItem: do not use item's position when resizing markerIvan Solovev2023-04-211-6/+6
| | | | | | | | | | | | | | | The existing code was using current marker's coordinates when updating its size, but that actually resulted in double offset, because later we are explicitly calling setPos() on the marker. Fix it by always using (0, 0) as an offset when calculating the marker's rectangle. Fixes: QTBUG-112904 Change-Id: I427cbd502f1637a7da71a7f2b23ccb0228ac3f01 Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> (cherry picked from commit edfcf8b309434e81eb602e2ca3e0d6c935f2c2eb) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Docs: Add documentation for audio exampleNicholas Bennett2023-04-202-5/+109
| | | | | | | | | | | | Renamed the example to describe what it did. Stepped through code with snippets. Added animation. Change-Id: I0a46e75a71d2ff2041898311e7629d542c476823 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Esa Törmänen <esa.tormanen@qt.io> (cherry picked from commit ad4ce1f125f6583d381ea72babe37c8f41ff50f0) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-04-201-3/+3
| | | | | Change-Id: Iab4940f36ec483f375a45bf8c9d969dc3e340dfe Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Fix sizeBy pointSize calculationTomi Korpipaa2023-04-201-1/+2
| | | | | | | | Fixes: QTBUG-112917 Change-Id: Ib2e4f9ae434c863626affcbdfb1ba5c820470eeb Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> (cherry picked from commit d2275fa17016bf61eab5a85f01f70f5a718e218d) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-04-191-3/+3
| | | | | Change-Id: I7f1d85fb74d2356aaadfb5384acb02f28218c602 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Remove the extra attributeAmir Masoud Abdol2023-04-191-2/+2
| | | | | | | | | | | | | | | | QBoxSet is already exported with `Q_CHARTS_EXPORT`, and exporting it again with `Q_CHARTS_PRIVATE_EXPORT` raises `type attributes ignored after type is already defined [-Werror=attributes]` error, and breaks the unity build on Windows/MinGW. In addition, a missing QT_CHARTS_PRIVATE_EXPORT was added to QBoxPlotModelMapperPrivate class. Task-number: QTBUG-109394 Change-Id: I58757432da987754a40ac1c172b70d4fd77c31bc Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> (cherry picked from commit e04518c7dab924603d53cb1499eabbf98f5ce29a) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Fix background drawing with fixed plot areaTomi Korpipää2023-04-191-2/+5
| | | | | | | | | | | If plotAreaBackground is visible, we need to update chart visuals, or plotAreaBackground will not be drawn. Fixes: QTBUG-109762 Change-Id: I7b648a1ea70b2f30b293246dc4240131e67db9a7 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> (cherry picked from commit bf001ee655a6596f8b5eb7245326ec46e9fdd994) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-04-181-3/+3
| | | | | Change-Id: I6a151c21cea75cfaaaa9ebc1812bc72b07580dc1 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-04-131-3/+3
| | | | | Change-Id: I41d6ba223ead6e34bbfe6911cac640a0e5147bca Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Add [[maybe_unused]]Amir Masoud Abdol2023-04-131-1/+4
| | | | | | | | | | Otherwise, it could break the unity build. Task-number: QTBUG-109394 Change-Id: I0047e64d6b76e3ae6502be5e9cc050de8ec9c4bd Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> (cherry picked from commit 59648b2eb6dc116c53a247e1e6237fbab4a2b1e6) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Fix QtCharts Audio Example not scaling correctly on mobile devicesNicholas Bennett2023-04-132-2/+1
| | | | | | | | | | | | | | | The minimumSize was set, and this stopped it from scaling correctly on devices with a smaller screen size in landscape mode. Added a Widget::resize() call in main.cpp. This replicates the same behavior as before on desktop platforms and fixes the scaling issue for the small screen devices. Fixes: QTBUG-106404 Change-Id: Ifd0395fd85e77f274ae23d59de19278801e6983b Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io> (cherry picked from commit f9da051f42f0f21679fae06b14cc10802b2745b7) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-04-121-3/+3
| | | | | Change-Id: I82bb7e82b3f8d861c562fea8e1d91ec268eb6a1e Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-04-041-3/+3
| | | | | Change-Id: I178662bd993c0fef1d8852008f7d7bc86fff6a7f Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Bump version to 6.5.1Jani Heikkinen2023-04-041-1/+1
| | | | | Change-Id: Ib0ba6f985e374c5b99bbd0580610a3e38755d430 Reviewed-by: Jani Heikkinen <jani.heikkinen@qt.io>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-03-221-3/+3
| | | | | Change-Id: I5fcb2dd4a9ef32595ff5f67d40f26414b603c229 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-03-201-3/+3
| | | | | Change-Id: I0f183f3addd465b1e2eb5f766d8b1c2f2d8ca169 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-03-111-3/+3
| | | | | Change-Id: I691104e0f8db2732196bc3a6ebed0583d80dffbc Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-03-081-3/+3
| | | | | Change-Id: I53f12a1c8fa1c518d021a6580ee36f6f0acc6efb Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-03-061-3/+3
| | | | | Change-Id: Ia7412d7b5854b704449c49a8b04d51df434a41de Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-03-021-3/+3
| | | | | Change-Id: I034544c3d5a8118280fc255f7bd632ab111d7f67 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-03-011-3/+3
| | | | | Change-Id: I194a81bf0c1f9d77e120847dce8b650bb8a198ea Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-02-241-3/+3
| | | | | Change-Id: Iab003953c056766679e4fffe9e100005425be71a Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsv6.5.0-beta3Qt Submodule Update Bot2023-02-171-3/+3
| | | | | Change-Id: If20ce9d4f54aacdabdcbd40a0bcb9d02856b6f1e Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Fix the broken test after the retirement of qt_parse_all_argumentsAmir Masoud Abdol2023-02-101-1/+1
| | | | | | | | | | | | As we are now processing the arguments with cmake_parse_arguments(PARSE_ARGV, we don't need to pass the escape characters anymore. Task-number: QTBUG-99238 Change-Id: I45a4b9922fe5ad0d6474fd674a74bbb16ab15b54 Reviewed-by: Alexey Edelev <alexey.edelev@qt.io> (cherry picked from commit 5b17637967dc53939fca5426b3132bf3b608f340) Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-02-101-3/+3
| | | | | Change-Id: I6d0ee2fc9f869ab263419dfadf0be7dfef0f2bbd Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Remove QT_DECL_METATYPEFriedemann Kleint2023-02-077-12/+0
| | | | | | | | | | | | | | They cause conflicts in CMake Unity (Jumbo) builds and are reportedly unnecessary. See https://lists.qt-project.org/pipermail/development/2022-July/042744.html Task-number: QTBUG-109394 Change-Id: Ib2b1c9d5403ee0804297fc20f1b3f4f828f4e51e Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> (cherry picked from commit 4fdcbde880e0b021238c47b6f113d2b726851eb9) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* pointconfiguration example: Add missing include guardsFriedemann Kleint2023-02-071-0/+5
| | | | | | | | | | | | Amends 189f798b2c44b3a061d8b1275ad03f5e5ef29486. Task-number: QTBUG-109394 Change-Id: I7ae2db05e29ae84b543c6b37ed1c54693ec66541 Reviewed-by: Keith Kyzivat <keith.kyzivat@qt.io> Reviewed-by: Amir Masoud Abdol <amir.abdol@qt.io> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> (cherry picked from commit cc2f7547d1beb51257a19b40c8e87e347044c7b6) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-02-021-3/+3
| | | | | Change-Id: I8758fc65b90007eca55640305bef77da9d56e85c Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-02-011-3/+3
| | | | | Change-Id: I959a5998b71fb58a5fb3908367cfca892f885359 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-01-271-3/+3
| | | | | Change-Id: Ide7937e6863d090a8dd5045fdce626d2e543e815 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsv6.5.0-beta2Qt Submodule Update Bot2023-01-231-3/+3
| | | | | Change-Id: Iffa12d66f1466a6ab9335e408f7d10592267def7 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* QtCharts: fix GCC 13-detected dangling element reference warningThiago Macieira2023-01-201-1/+1
| | | | | | | | | | | | | | | | | QColorAxis::gradient() returns a QLinearGradient by value, QGradient::stops() returns a QList<QGradientStop> by value, so storing the reference returned by QList::operator[] is, strictly speaking, dangling. In practice, it isn't because QList is COW and thus the element is not going to be destroyed, but let's not depend on that detail. chartaxiselement.cpp:437:33: error: possibly dangling reference to a temporary [-Werror=dangling-reference] chartaxiselement.cpp:437:71: note: the temporary was destroyed at the end of the full expression ‘QGradient::stops() const().QList<std::pair<double, QColor> >::operator[](((qsizetype)i))’ Change-Id: Ide4dbd0777a44ed0870efffd1739488e1958f814 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> (cherry picked from commit 7ced4f03281c253be098c126b72457201a44d2a0) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-01-131-3/+3
| | | | | Change-Id: I3fd6de7354c2483e3acd6604fb5aa02d30c94db7 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-01-091-3/+3
| | | | | Change-Id: Idda0c44b04cc7f52110b9abdbce61956c7e6337c Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Documentation: Add note stating that QApplication is required for the QML typesFriedemann Kleint2023-01-091-6/+7
| | | | | | | | Task-number: PYSIDE-2179 Change-Id: I5c6055ef896d18ecc38feba082608beb5240dae1 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> (cherry picked from commit d3ee83e905c656cc85e34c166da59e7957dbdfa4) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-01-051-3/+3
| | | | | Change-Id: I50c4da08afb08598a28d5cc285cdadd092e02a57 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Remove QT_USE_SYNCQT_CPPAlexey Edelev2023-01-021-2/+0
| | | | | | | | | Option has not effect anymore. Change-Id: I6843e22e45f52b9039ad50d1891fb3e96a412366 Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit 51242a3d9b8bf18ca8704706de509c7c34244a47) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2023-01-021-3/+3
| | | | | Change-Id: I362a7b380fc3a8d0f8e0487534ea945ca860ba2d Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2022-12-301-3/+3
| | | | | Change-Id: I7b2e3a4fe4e4062557bc210075d67938746c9c91 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2022-12-291-3/+3
| | | | | Change-Id: Id4945d03eed756eb162f01fd0a9f929a30b3c2c8 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.5' in qt/qtchartsQt Submodule Update Bot2022-12-281-3/+3
| | | | | Change-Id: I0e1ad2f9541d5575c6bfbce71bb22f1cb7d09984 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>