1
0
Fork 0
VideoPlayer/src/qml/UIComponents/TimeLabel.qml

19 lines
435 B
QML
Raw Normal View History

import QtQuick 2.0
2018-12-22 14:13:53 +00:00
import QtQuick.Controls 2.3
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
verticalAlignment: Text.AlignVCenter
renderType: Text.NativeRendering
Connections {
target: player
onDurationStringChanged: function (durationString) {
timeLabel.text = durationString
}
}
}