2 * Copyright 2015 Canonical Ltd.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 3.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 import Ubuntu.Components 1.3
24 implicitHeight: positionLabel.y + positionLabel.height
25 visible: AudioUrlComparer.compare(source, DashAudioPlayer.currentSource)
27 property int duration: 0
28 property alias source: progress.source
29 property color color: theme.palette.normal.baseText
30 readonly property int position: root.visible ? DashAudioPlayer.position / 1000 : 0
34 anchors { left: parent.left; right: parent.right }
43 verticalAlignment: Text.AlignBottom
45 text: DashAudioPlayer.lengthToString(root.position)
54 verticalAlignment: Text.AlignBottom
56 text: DashAudioPlayer.lengthToString(duration)