41 lines
949 B
QML
41 lines
949 B
QML
import QtQuick 2.0
|
|
import QtQuick.Controls 1.4
|
|
import QtQuick.Controls.Styles 1.4
|
|
|
|
Item {
|
|
id: container
|
|
property var model
|
|
|
|
Label{
|
|
anchors.right: progress.right
|
|
anchors.bottom: progress.top
|
|
font.pointSize: 9
|
|
color: "grey"
|
|
text: model.pTime + " / " + model.pMediaLength
|
|
}
|
|
|
|
ProgressBar{
|
|
id: progress
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
|
|
value: model.pProgress
|
|
|
|
style:ProgressBarStyle {
|
|
background: Rectangle {
|
|
radius: 5
|
|
color: "white"
|
|
border.color: "grey"
|
|
border.width: 1
|
|
implicitWidth: container.width
|
|
implicitHeight: 10
|
|
}
|
|
progress: Rectangle {
|
|
color: "blue"
|
|
border.color: "blue"
|
|
radius: 5
|
|
implicitHeight: 8
|
|
}
|
|
}
|
|
}
|
|
}
|