aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/qquickdefaultprogressbar.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Styles: use C++11 default member initializationJ-P Nurmi2018-05-041-6/+3
| | | | | Change-Id: Ifd7521b8a7bfd7da91808dd00ebdcb59f2ba46dc Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
* Default: pass busy indicator and progress bar colors from QMLJ-P Nurmi2017-05-121-3/+16
| | | | | | | | | Default.textColor (also used in eg. RangeSlider to fill the range) is equal to the color that was previously hard-coded in qquickdefaultbusyindicator.cpp and qquickdefaultprogressbar.cpp. Change-Id: I8f0749862def31667b6ef2ab3b4c6ea71a590755 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
* Default: remove unnecessary notify signals from the internal visualsJ-P Nurmi2017-05-121-2/+0
| | | | | | | | | Nothing is creating QML bindings that depends on these properties, only assigning values from QML, so we can save a few CPU cycles by not going through the meta-object system to activate unused signals. Change-Id: If8d46807ad3046414dcc7a7888f08b6110fe7f88 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
* Update the remaining copyright yearsJ-P Nurmi2017-01-111-1/+1
| | | | | | | Already done in 5.8 (00a0626) - these files are new in dev. Change-Id: I534c7512a69d4c24ed9ce8191325556beb0fb1f7 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
* Add internal QQuickAnimatedNode helperJ-P Nurmi2016-10-201-26/+21
| | | | | | | | | | | This handles the timers, signals, updates etc. so that the animated node implementations for busy indicators and indeterminate progress bars become a bit simpler. The implementation is based on qtdeclarative/examples/quick/scenegraph/threadedanimation. Task-number: QTBUG-56601 Change-Id: Ibd82060aa103e6447ee16814c3e0d6ff2c14d608 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
* Default: rewrite the indeterminate progress bar animationJ-P Nurmi2016-10-191-0/+277
Use a simple animated node instead of using the private animator API. Task-number: QTBUG-56601 Change-Id: Id8deb1e6ae48554bfa7b26b333247bf08c27aa09 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>