2014-11-09 01:16:30 +01:00
|
|
|
import QtQuick 2.0
|
|
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
|
|
|
2019-12-09 17:33:23 +01:00
|
|
|
ComponentBase {
|
2014-11-09 01:16:30 +01:00
|
|
|
Column {
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: 20
|
|
|
|
spacing: 20
|
|
|
|
|
|
|
|
PlasmaComponents.Label {
|
|
|
|
width: parent.width
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
text: "When checking and unchecking the checkbox, " +
|
|
|
|
"the busy indicator should resume where it has " +
|
|
|
|
"paused and not glitch around"
|
|
|
|
}
|
|
|
|
|
|
|
|
Row {
|
|
|
|
spacing: 20
|
|
|
|
|
|
|
|
PlasmaComponents.BusyIndicator {
|
|
|
|
running: runningButton.checked
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaComponents.CheckBox {
|
|
|
|
id: runningButton
|
|
|
|
text: "Running"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|