1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- import QtQuick
- import QtQuick.Controls.Basic.impl
- import QtQuick.Templates as T
- T.BusyIndicator {
- id: control
- implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
- implicitContentWidth + leftPadding + rightPadding)
- implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
- implicitContentHeight + topPadding + bottomPadding)
- padding: 6
- contentItem: BusyIndicatorImpl {
- implicitWidth: 48
- implicitHeight: 48
- pen: control.palette.dark
- fill: control.palette.dark
- running: control.running
- opacity: control.running ? 1 : 0
- Behavior on opacity { OpacityAnimator { duration: 250 } }
- }
- }
|