Test progress bars
Change-Id: Iab1be67dc4ab059ab85ba2833df0da80775ed61f
This commit is contained in:
parent
94c4bff3da
commit
489ca7b76a
102
tests/components/progressbar.qml
Normal file
102
tests/components/progressbar.qml
Normal file
@ -0,0 +1,102 @@
|
||||
import QtQuick 2.0
|
||||
|
||||
import org.kde.plasma.components 2.0 as PlasmaComponents
|
||||
|
||||
Rectangle {
|
||||
id: root
|
||||
color: "white"
|
||||
width: 800
|
||||
height: 300
|
||||
|
||||
Flow {
|
||||
anchors.fill: parent
|
||||
anchors.margins: 20
|
||||
spacing: 20
|
||||
|
||||
Column {
|
||||
Text {
|
||||
text: "0%"
|
||||
}
|
||||
PlasmaComponents.ProgressBar {
|
||||
minimumValue: 0
|
||||
maximumValue: 100
|
||||
value: 0
|
||||
}
|
||||
}
|
||||
|
||||
Column {
|
||||
Text {
|
||||
text: "50%"
|
||||
}
|
||||
PlasmaComponents.ProgressBar {
|
||||
minimumValue: 0
|
||||
maximumValue: 100
|
||||
value: 50
|
||||
}
|
||||
}
|
||||
|
||||
Column {
|
||||
Text {
|
||||
text: "100%"
|
||||
}
|
||||
PlasmaComponents.ProgressBar {
|
||||
minimumValue: 0
|
||||
maximumValue: 100
|
||||
value: 100
|
||||
}
|
||||
}
|
||||
|
||||
Column {
|
||||
Text {
|
||||
text: "these main bars should look the same width"
|
||||
}
|
||||
PlasmaComponents.ProgressBar {
|
||||
width:100
|
||||
minimumValue: 0
|
||||
maximumValue: 100
|
||||
value: 50
|
||||
}
|
||||
PlasmaComponents.Slider {
|
||||
width: 100
|
||||
minimumValue: 0
|
||||
maximumValue: 100
|
||||
value: 50
|
||||
}
|
||||
}
|
||||
|
||||
Column {
|
||||
Text {
|
||||
text: "should look like 100%"
|
||||
}
|
||||
PlasmaComponents.ProgressBar {
|
||||
minimumValue: 0
|
||||
maximumValue: 100
|
||||
value: 110
|
||||
}
|
||||
}
|
||||
|
||||
Column {
|
||||
Text {
|
||||
text: "QA Style 50%"
|
||||
}
|
||||
PlasmaComponents.ProgressBar {
|
||||
minimumValue: -100
|
||||
maximumValue: 100
|
||||
value: 0
|
||||
}
|
||||
}
|
||||
|
||||
Column {
|
||||
Text {
|
||||
text: "should look like 0%"
|
||||
}
|
||||
PlasmaComponents.ProgressBar {
|
||||
minimumValue: 0
|
||||
maximumValue: 100
|
||||
value: -10
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user