Unity 8
CardAudioProgress.qml
1 /*
2  * Copyright 2015 Canonical Ltd.
3  *
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.
7  *
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.
12  *
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/>.
15  */
16 
17 import QtQuick 2.4
18 import Ubuntu.Components 1.3
19 import Dash 0.1
20 
21 Item {
22  id: root
23 
24  implicitHeight: positionLabel.y + positionLabel.height
25  visible: AudioUrlComparer.compare(source, DashAudioPlayer.currentSource)
26 
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
31 
32  AudioProgressBar {
33  id: progress
34  anchors { left: parent.left; right: parent.right }
35  }
36 
37  Label {
38  id: positionLabel
39  anchors {
40  left: parent.left
41  top: progress.bottom
42  }
43  verticalAlignment: Text.AlignBottom
44  fontSize: "x-small"
45  text: DashAudioPlayer.lengthToString(root.position)
46  color: root.color
47  }
48 
49  Label {
50  anchors {
51  right: parent.right
52  top: progress.bottom
53  }
54  verticalAlignment: Text.AlignBottom
55  fontSize: "x-small"
56  text: DashAudioPlayer.lengthToString(duration)
57  color: root.color
58  }
59 }