2018-12-22 14:07:44 +00:00
|
|
|
import QtQuick 2.0
|
2018-12-22 14:13:53 +00:00
|
|
|
import QtQuick.Controls 2.3
|
2018-11-29 08:25:54 +00:00
|
|
|
|
|
|
|
Text {
|
|
|
|
id: timeLabel
|
|
|
|
text: "0:00 / 0:00"
|
|
|
|
color: "white"
|
|
|
|
font.family: appearance.fontName
|
2018-11-30 16:42:19 +00:00
|
|
|
font.pixelSize: layout.height / 2.5
|
2018-11-29 08:25:54 +00:00
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
renderType: Text.NativeRendering
|
|
|
|
Connections {
|
|
|
|
target: player
|
|
|
|
onDurationStringChanged: function (durationString) {
|
|
|
|
timeLabel.text = durationString
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|