Difference between revisions of "Talk:TimeCodeManager"
From LinuxMCE
(a small qml file detailing how one could include the timecode into a qml file.) |
(No difference)
|
Latest revision as of 19:04, 1 October 2012
an example qml file would look like this:
import QtQuick 1.0 import "../components" import "../js/ComponentLoader.js" as MyJs Rectangle { Text { id: timecode height:scaleY(2.15) text: qsTr("Speed: ") + dceTimecode.playbackSpeed +" || " +dceTimecode.qsCurrentTime + qsTr(" of ") + dceTimecode.qsTotalTime } }