1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
|
/*
* Copyright (C) 2013, 2014
* Andrew Hayzen <ahayzen@gmail.com>
* Daniel Holm <d.holmen@gmail.com>
* Victor Thompson <victor.thompson@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.3
import QtQuick.LocalStorage 2.0
import QtMultimedia 5.0
import Ubuntu.Components 1.1
import Ubuntu.Components.Popups 1.0
import "settings.js" as Settings
Item {
anchors {
bottom: parent.bottom
left: parent.left
right: parent.right
}
// Properties storing the current page info
property var currentPage: null
property var currentSheet: []
property var currentTab: null
// Properties and signals for the toolbar
property alias currentHeight: musicToolbarPanel.height
property alias opened: musicToolbarPanel.opened
/* Helper functions */
// Back button has been pressed, jump up pageStack or back to parent page
function goBack()
{
if (currentSheet.length > 0) {
PopupUtils.close(currentSheet[currentSheet.length - 1])
return; // don't change toolbar state when going back from sheet
}
else if (mainPageStack !== null && mainPageStack.depth > 1) {
mainPageStack.pop(currentPage)
}
}
// Remove sheet as it has been closed
function removeSheet(sheet)
{
var index = currentSheet.lastIndexOf(sheet);
if (index > -1) {
currentSheet.splice(index, 1);
}
}
// Set the current page, and any parent/stacks
function setPage(childPage)
{
currentPage = childPage;
}
// Set the current sheet (overrides page)
function setSheet(sheet) {
currentSheet.push(sheet)
}
Panel {
id: musicToolbarPanel
anchors {
left: parent.left
right: parent.right
bottom: parent.bottom
}
height: units.gu(7.25)
locked: true
opened: true
/* Expanded toolbar */
Rectangle {
id: musicToolbarExpandedContainer
anchors {
fill: parent
}
color: "transparent"
Rectangle {
id: musicToolbarPlayerControls
anchors {
fill: parent
}
color: "#000"
state: trackQueue.model.count === 0 ? "disabled" : "enabled"
states: [
State {
name: "disabled"
PropertyChanges {
target: disabledPlayerControlsGroup
visible: true
}
PropertyChanges {
target: enabledPlayerControlsGroup
visible: false
}
},
State {
name: "enabled"
PropertyChanges {
target: disabledPlayerControlsGroup
visible: false
}
PropertyChanges {
target: enabledPlayerControlsGroup
visible: true
}
}
]
/* Disabled (empty state) controls */
Rectangle {
id: disabledPlayerControlsGroup
anchors {
bottom: playerControlsProgressBar.top
left: parent.left
right: parent.right
top: parent.top
}
color: "transparent"
Label {
id: noSongsInQueueLabel
anchors {
left: parent.left
leftMargin: units.gu(2)
right: disabledPlayerControlsPlayButton.left
rightMargin: units.gu(2)
verticalCenter: parent.verticalCenter
}
color: styleMusic.playerControls.labelColor
text: i18n.tr("Tap to shuffle music")
fontSize: "large"
wrapMode: Text.WordWrap
maximumLineCount: 2
}
/* Play/Pause button */
Icon {
id: disabledPlayerControlsPlayButton
anchors {
right: parent.right
rightMargin: units.gu(3)
verticalCenter: parent.verticalCenter
}
color: "#FFF"
height: units.gu(2.5)
name: player.playbackState === MediaPlayer.PlayingState ?
"media-playback-pause" : "media-playback-start"
objectName: "disabledSmallPlayShape"
width: height
}
/* Click to shuffle music */
MouseArea {
anchors {
fill: parent
}
onClicked: {
if (emptyPage.noMusic) {
return;
}
if (trackQueue.model.count === 0) {
playRandomSong();
}
else {
player.toggle();
}
}
}
}
/* Enabled (queue > 0) controls */
Rectangle {
id: enabledPlayerControlsGroup
anchors {
bottom: playerControlsProgressBar.top
left: parent.left
right: parent.right
top: parent.top
}
color: "transparent"
/* Album art in player controls */
Image {
id: playerControlsImage
anchors {
bottom: parent.bottom
left: parent.left
top: parent.top
}
smooth: true
source: player.currentMetaArt === "" ?
decodeURIComponent("image://albumart/artist=" +
player.currentMetaArtist +
"&album=" + player.currentMetaAlbum)
: player.currentMetaArt
width: parent.height
onStatusChanged: {
if (status === Image.Error) {
source = Qt.resolvedUrl("../images/music-app-cover@30.png")
}
}
}
/* Column of meta labels */
Column {
id: playerControlsLabels
anchors {
left: playerControlsImage.right
leftMargin: units.gu(1.5)
right: playerControlsPlayButton.left
rightMargin: units.gu(1)
verticalCenter: parent.verticalCenter
}
/* Title of track */
Label {
id: playerControlsTitle
anchors {
left: parent.left
right: parent.right
}
color: "#FFF"
elide: Text.ElideRight
fontSize: "small"
font.weight: Font.DemiBold
text: player.currentMetaTitle === ""
? player.source : player.currentMetaTitle
}
/* Artist of track */
Label {
id: playerControlsArtist
anchors {
left: parent.left
right: parent.right
}
color: "#FFF"
elide: Text.ElideRight
fontSize: "small"
opacity: 0.4
text: player.currentMetaArtist
}
}
/* Play/Pause button */
Icon {
id: playerControlsPlayButton
anchors {
right: parent.right
rightMargin: units.gu(3)
verticalCenter: parent.verticalCenter
}
color: "#FFF"
height: units.gu(2.5)
name: player.playbackState === MediaPlayer.PlayingState ?
"media-playback-pause" : "media-playback-start"
objectName: "playShape"
width: height
}
MouseArea {
anchors {
bottom: parent.bottom
horizontalCenter: playerControlsPlayButton.horizontalCenter
top: parent.top
}
onClicked: player.toggle()
width: units.gu(8)
Rectangle {
anchors {
fill: parent
}
color: "#FFF"
opacity: parent.pressed ? 0.1 : 0
Behavior on opacity {
UbuntuNumberAnimation {
duration: UbuntuAnimation.FastDuration
}
}
}
}
/* Mouse area to jump to now playing */
Rectangle {
anchors {
bottom: parent.bottom
left: parent.left
right: playerControlsLabels.right
top: parent.top
}
color: "transparent"
objectName: "jumpNowPlaying"
function trigger() {
tabs.pushNowPlaying();
}
}
}
/* Object which provides the progress bar when toolbar is minimized */
Rectangle {
id: playerControlsProgressBar
anchors {
bottom: parent.bottom
left: parent.left
right: parent.right
}
color: styleMusic.common.black
height: units.gu(0.25)
Rectangle {
id: playerControlsProgressBarHint
anchors {
left: parent.left
top: parent.top
}
color: UbuntuColors.blue
height: parent.height
width: 0
Connections {
target: player
onPositionChanged: {
playerControlsProgressBarHint.width = (player.position / player.duration) * playerControlsProgressBar.width
}
onStopped: {
playerControlsProgressBarHint.width = 0;
}
}
}
}
}
}
}
}
|