aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/progressindicator.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Doc: Fix qdoc warningsLeena Miettinen2023-05-301-2/+2
| | | | | | | | | | | | | | - Mark undocumented but existing functions with \c (instead of \l or \sa) - Remove reference to functions I could no longer find - Fix other broken links - Fix reference to an image whose file format changed to WEBP - Use {} instead of "" to mark alt text for images - Add missing \a commands - Add class name to a function name so that it can be found Change-Id: I10655bb0356c7417ab0e14a3ce620930f4ee8349 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Doc: Remove links to the undocumented attachToWidget functionLeena Miettinen2023-05-251-5/+1
| | | | | Change-Id: Id828e5d1c889289261c628f3f2dbe42206b8b892 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Remove GPL-3.0+ from license identifiersKai Köhne2023-01-061-1/+1
| | | | | | | | | | | | | | | Since we also license under GPL-3.0 WITH Qt-GPL-exception-1.0, this applies only to a hypothetical newer version of GPL, that doesn't exist yet. If such a version emerges, we can still decide to relicense... While at it, replace (deprecated) GPL-3.0 with more explicit GPL-3.0-only Change was done by running find . -type f -exec perl -pi -e "s/LicenseRef-Qt-Commercial OR GPL-3.0\+ OR GPL-3.0 WITH Qt-GPL-exception-1.0/LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0/g" {} \; Change-Id: I5097e6ce8d10233993ee30d7e25120e2659eb10b Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Utils: Pass context object to lambda connectionsJarek Kobus2022-12-071-1/+1
| | | | | | | | Remove some unneeded lambda () brackets. Change-Id: I6b7e07cad8a240a7021c6ddacc84a971809ee717 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Use SPDX license identifiersLucie Gérard2022-08-261-24/+2
| | | | | | | | | Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Drop Qt5: Utils: Get rid of QOverloadJarek Kobus2022-07-201-2/+2
| | | | | Change-Id: I864bfb18668fd325badd34003adf494c7924f86b Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
* Utils lib: Remove unneeded includes from cpp filesJarek Kobus2022-05-191-3/+0
| | | | | | | | It's a result of a team work consisting of yellow triangle and me. Change-Id: I8b4812766da70e0785ae71bf0cb71357379e2514 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
* Utils: Introduce a FilePath constructor from char arrayshjk2021-08-171-11/+8
| | | | | | | | | | | | Similar to QT_RESTRICTED_CAST_FROM_ASCII to avoid the need for decorations in user code. At the same time, drop some convenience constructors and functions in CommandLine and Icon essentially serving the same purpose. Change-Id: Ida4e5ac19c2da0a4298a97b2a8e1511d56bbb79d Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* Factor an overlay widget out of progress indicatorEike Ziller2020-03-171-45/+4
| | | | | | | | The principle of having a widget on top of all other children of the same parent, for the purpose of painting an overlay, is generic. Change-Id: I6d3ee89cc51354988fedcc40340bb45a065db607 Reviewed-by: David Schulz <david.schulz@qt.io>
* Utils: Remove superfluous qualificationsOrgad Shaneh2018-07-191-1/+1
| | | | | Change-Id: I36e17dac0cff87f82f0ddaf97bc613389110f218 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Add documentation to ProgressIndicatorEike Ziller2017-11-061-1/+127
| | | | | Change-Id: I40dd1168aa7df0fd1db221c29468868abb850af7 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
* Utils: Separate rendering out of ProgressIndicatorTobias Hunger2017-07-271-43/+91
| | | | | | | | | I want to reuse the rendering of the progress indicator outside of a widget. Change-Id: Icaeeb798578ad838693b68556bf2193c4ba45cfa Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* Utils: Make the progress indicator themableAlessandro Portale2017-06-141-2/+3
| | | | | | | Ensures a consistent visibility with light and dark backgrounds. Change-Id: I8e825ccf05248abb2c94c4cd3af56d0226bc7e96 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Update License according to agreement with Free Qt FoundationTobias Hunger2016-01-191-17/+12
| | | | | | | * Update remaining files in src Change-Id: I1896f17fcf34f71c3310c87899fb5171b8e4afb1 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
* Utils: Add medium sized round indicatorAlessandro Portale2015-01-191-2/+14
| | | | | Change-Id: I7f66f63a905e1a9abf7905816dbd86ec3a8951ed Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
* Add easy way to add progress indicator overlay to a widgetEike Ziller2015-01-161-4/+42
| | | | | | | | | Adds a way to 'attach' a progress indicator to a parent, so it automatically keeps itself centered on the parent. Also adds shortcut methods to BaseTreeView. Change-Id: I962a9300d89ef5d1e03298d670e0cee781d3a4e5 Reviewed-by: hjk <hjk@theqtcompany.com>
* Utils: Add round progress indicator widgetEike Ziller2015-01-151-0/+90
Change-Id: Ia3a51fb99ae6cec1b7b3c135d272e92d503128dc Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>