~kill-animals/music-app/remix-added-controls-to-now-playing

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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
/*
 * 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 QtMultimedia 5.0
import QtQuick 2.3
import QtQuick.LocalStorage 2.0
import Ubuntu.Components 1.1
import Ubuntu.Thumbnailer 0.1
import "common"
import "common/ListItemActions"
import "settings.js" as Settings

MusicPage {
    id: nowPlaying
    objectName: "nowPlayingPage"
    title: i18n.tr("Now Playing")
    visible: false

    property int ensureVisibleIndex: 0  // ensure first index is visible at startup

    Rectangle {
        anchors.fill: parent
        color: styleMusic.nowPlaying.backgroundColor
        opacity: 0.75 // change later
        MouseArea {  // Block events to lower layers
            anchors.fill: parent
        }
    }

    Component.onCompleted: {
        onToolbarShownChanged.connect(jumpToCurrent)
    }

    Connections {
        target: player
        onCurrentIndexChanged: {
            if (player.source === "") {
                return;
            }

            queuelist.currentIndex = player.currentIndex;

            customdebug("MusicQueue update currentIndex: " + player.source);

            // Always jump to current track
            nowPlaying.jumpToCurrent(musicToolbar.opened, nowPlaying, musicToolbar.currentTab)

        }
    }

    function jumpToCurrent(shown, currentPage, currentTab)
    {
        // If the toolbar is shown, the page is now playing and snaptrack is enabled
        if (shown && currentPage === nowPlaying && Settings.getSetting("snaptrack") === "1")
        {
            // Then position the view at the current index
            queuelist.positionViewAtIndex(queuelist.currentIndex, ListView.Beginning);
        }
    }

    function positionAt(index) {
        queuelist.positionViewAtIndex(index, ListView.Beginning);
        queuelist.contentY -= header.height;
    }

    ListView {
        id: queuelist
        objectName: "nowPlayingQueueList"
        anchors.fill: parent
        anchors.bottomMargin: musicToolbar.mouseAreaOffset + musicToolbar.minimizedHeight
        delegate: queueDelegate
        model: trackQueue.model
        highlightFollowsCurrentItem: false
        state: "normal"
        states: [
            State {
                name: "normal"
                PropertyChanges {
                    target: queuelist
                    interactive: true
                }
            },
            State {
                name: "reorder"
                PropertyChanges {
                    target: queuelist
                    interactive: false
                }
            }
        ]
        footer: Item {
            height: mainView.height - (styleMusic.common.expandHeight + queuelist.currentHeight) + units.gu(8)
        }

        property int normalHeight: units.gu(12)
        property int currentHeight: units.gu(40)
        property int transitionDuration: 250  // transition length of animations

        onCountChanged: {
            customdebug("Queue: Now has: " + queuelist.count + " tracks")
        }

        onMovementStarted: {
            musicToolbar.hideToolbar();
        }

        Component {
            id: queueDelegate
            ListItemWithActions {
                id: queueListItem
                color: "transparent"
                height: queuelist.normalHeight
                objectName: "nowPlayingListItem" + index
                state: queuelist.currentIndex == index && !reordering ? "current" : ""

                leftSideAction: Remove {
                    onTriggered: {
                        if (queuelist.count === 1) {
                            player.stop()
                            musicToolbar.goBack()
                        } else if (index === player.currentIndex) {
                            player.nextSong(player.isPlaying);
                        }

                        if (index < player.currentIndex) {
                            // update index as the old has been removed
                            player.currentIndex -= 1;
                        }

                        queuelist.model.remove(index);
                    }
                }
                reorderable: true
                rightSideActions: [
                    AddToPlaylist{

                    }
                ]
                triggerActionOnMouseRelease: true

                onItemClicked: {
                    customdebug("File: " + model.filename) // debugger
                    trackQueueClick(index);  // toggle track state
                }
                onReorder: {
                    console.debug("Move: ", from, to);

                    queuelist.model.move(from, to, 1);


                    // Maintain currentIndex with current song
                    if (from === player.currentIndex) {
                        player.currentIndex = to;
                    }
                    else if (from < player.currentIndex && to >= player.currentIndex) {
                        player.currentIndex -= 1;
                    }
                    else if (from > player.currentIndex && to <= player.currentIndex) {
                        player.currentIndex += 1;
                    }
                }

                // TODO: If http://pad.lv/1354753 is fixed to expose whether the Shape should appear pressed, update this as well.
                onPressedChanged: trackImage.pressed = pressed

                Rectangle {
                    id: trackContainer;
                    anchors {
                        fill: parent
                        margins: units.gu(1)
                    }
                    color: "transparent"

                    NumberAnimation {
                        id: trackContainerReorderAnimation
                        target: trackContainer;
                        property: "anchors.leftMargin";
                        duration: queuelist.transitionDuration;
                        to: units.gu(2)
                    }

                    NumberAnimation {
                        id: trackContainerResetAnimation
                        target: trackContainer;
                        property: "anchors.leftMargin";
                        duration: queuelist.transitionDuration;
                        to: units.gu(0.5)
                    }

                    CoverRow {
                        id: trackImage

                        anchors {
                            top: parent.top
                            left: parent.left
                            leftMargin: units.gu(1.5)
                        }
                        count: 1
                        size: (queueListItem.state === "current"
                               ? (mainView.wideAspect
                                  ? queuelist.currentHeight
                                  : mainView.width - (trackImage.anchors.leftMargin * 2))
                               : queuelist.normalHeight) - units.gu(2)
                        covers: [{art: model.art, album: model.album, author: model.author}]

                        spacing: units.gu(2)

                        Item {  // Background so can see text in current state
                            id: albumBg
                            visible: false
                            anchors {
                                bottom: parent.bottom
                                left: parent.left
                                right: parent.right
                            }
                            height: units.gu(9)
                            clip: true
                            UbuntuShape{
                                anchors {
                                    bottom: parent.bottom
                                    left: parent.left
                                    right: parent.right
                                }
                                height: trackImage.height
                                radius: "medium"
                                color: styleMusic.common.black
                                opacity: 0.6
                            }
                        }

                        function calcAnchors() {
                            if (trackImage.height > queuelist.normalHeight && mainView.wideAspect) {
                                trackImage.anchors.left = undefined
                                trackImage.anchors.horizontalCenter = trackImage.parent.horizontalCenter
                            } else {
                                trackImage.anchors.left = trackImage.parent.left
                                trackImage.anchors.horizontalCenter = undefined
                            }

                            trackImage.width = trackImage.height;  // force width to match height
                        }

                        Connections {
                            target: mainView
                            onWideAspectChanged: trackImage.calcAnchors()
                        }

                        onHeightChanged: {
                            calcAnchors()
                        }
                        Behavior on height {
                            NumberAnimation {
                                target: trackImage;
                                property: "height";
                                duration: queuelist.transitionDuration;
                            }
                        }
                    }
                    Label {
                        id: nowPlayingArtist
                        objectName: "artistLabel"
                        color: styleMusic.nowPlaying.labelSecondaryColor
                        elide: Text.ElideRight
                        height: units.gu(1)
                        text: model.author
                        fontSize: 'small'
                        width: parent.width - trackImage.width - units.gu(3.5)
                        x: trackImage.x + trackImage.width + units.gu(1)
                        y: trackImage.y + units.gu(1)
                    }
                    Label {
                        id: nowPlayingTitle
                        objectName: "titleLabel"
                        color: styleMusic.common.white
                        elide: Text.ElideRight
                        height: units.gu(1)
                        text: model.title
                        fontSize: 'medium'
                        width: parent.width - trackImage.width - units.gu(3.5)
                        x: trackImage.x + trackImage.width + units.gu(1)
                        y: nowPlayingArtist.y + nowPlayingArtist.height + units.gu(1.25)
                    }
                    Label {
                        id: nowPlayingAlbum
                        objectName: "albumLabel"
                        color: styleMusic.nowPlaying.labelSecondaryColor
                        elide: Text.ElideRight
                        height: units.gu(1)
                        text: model.album
                        fontSize: 'x-small'
                        width: parent.width - trackImage.width - units.gu(3.5)
                        x: trackImage.x + trackImage.width + units.gu(1)
                        y: nowPlayingTitle.y + nowPlayingTitle.height + units.gu(1.25)
                    }
                }

                states: State {
                    name: "current"
                    PropertyChanges {
                        target: queueListItem
                        height: trackImage.size + (trackContainer.anchors.margins * 2)
                    }
                    PropertyChanges {
                        target: nowPlayingArtist
                        width: trackImage.width - units.gu(4)
                        x: trackImage.x + units.gu(2)
                        y: trackImage.y + trackImage.height - albumBg.height + units.gu(1)
                        color: styleMusic.common.white
                    }
                    PropertyChanges {
                        target: nowPlayingTitle
                        width: trackImage.width - units.gu(4)
                        x: trackImage.x + units.gu(2)
                        y: nowPlayingArtist.y + nowPlayingArtist.height + units.gu(1.25)
                        color: styleMusic.common.white
                        font.weight: Font.DemiBold
                    }
                    PropertyChanges {
                        target: nowPlayingAlbum
                        width: trackImage.width - units.gu(4)
                        x: trackImage.x + units.gu(2)
                        y: nowPlayingTitle.y + nowPlayingTitle.height + units.gu(1.25)
                        color: styleMusic.common.white
                    }
                    PropertyChanges {
                        target: albumBg
                        visible: true
                    }
                }
                transitions: Transition {
                    from: ",current"
                    to: "current,"
                    NumberAnimation {
                        duration: queuelist.transitionDuration
                        properties: "height,opacity,width,x,y"
                    }

                    onRunningChanged: {
                        if (running === false && ensureVisibleIndex != -1)
                        {
                            queuelist.positionViewAtIndex(ensureVisibleIndex, ListView.Beginning);
                            ensureVisibleIndex = -1;
                        }
                    }
                }
            }
        }
    }

    /* Full toolbar */
    Item {
        id: musicToolbarFullContainer
        anchors.horizontalCenter: parent.horizontalCenter
        anchors.verticalCenter: parent.verticalCenter
        width: queuelist.width

        /* Column for labels in wideAspect */
        Column {
            id: nowPlayingWideAspectLabels
            anchors {
                horizontalCenter: parent.horizontalCenter
                left: parent.left
                leftMargin: units.gu(2)
                right: parent.right
                rightMargin: units.gu(2)
            }

            /* Title of track */
            Label {
                id: nowPlayingWideAspectTitle
                anchors {
                    left: parent.left
                    leftMargin: units.gu(1)
                    right: parent.right
                    rightMargin: units.gu(1)
                }
                color: styleMusic.playerControls.labelColor
                elide: Text.ElideRight
                fontSize: "x-large"
                objectName: "playercontroltitle"
                text: trackQueue.model.count === 0 ? "" : player.currentMetaTitle === "" ? player.currentMetaFile : player.currentMetaTitle
            }

            /* Artist of track */
            Label {
                id: nowPlayingWideAspectArtist
                anchors {
                    left: parent.left
                    leftMargin: units.gu(1)
                    right: parent.right
                    rightMargin: units.gu(1)
                }
                color: styleMusic.nowPlaying.labelSecondaryColor
                elide: Text.ElideRight
                fontSize: "small"
                text: trackQueue.model.count === 0 ? "" : player.currentMetaArtist
            }

            /* Album of track */
            Label {
                id: nowPlayingWideAspectAlbum
                anchors {
                    left: parent.left
                    leftMargin: units.gu(1)
                    right: parent.right
                    rightMargin: units.gu(1)
                }
                color: styleMusic.nowPlaying.labelSecondaryColor
                elide: Text.ElideRight
                fontSize: "small"
                text: trackQueue.model.count === 0 ? "" : player.currentMetaAlbum
            }
        }

        /* Progress bar component */
        MouseArea {
            id: musicToolbarFullProgressContainer
            anchors.left: parent.left
            anchors.leftMargin: units.gu(3)
            anchors.right: parent.right
            anchors.rightMargin: units.gu(3)
            anchors.top: nowPlayingWideAspectLabels.bottom
            anchors.topMargin: units.gu(3)
            height: units.gu(3)
            width: parent.width
            z: 1

            /* Position label */
            Label {
                id: musicToolbarFullPositionLabel
                anchors.top: musicToolbarFullProgressBarContainer.bottom
                anchors.left: parent.left
                color: styleMusic.nowPlaying.labelSecondaryColor
                fontSize: "x-small"
                height: parent.height
                horizontalAlignment: Text.AlignHCenter
                text: durationToString(player.position)
                verticalAlignment: Text.AlignVCenter
                width: units.gu(3)
            }

            /* Progress bar */
            Rectangle {
                id: musicToolbarFullProgressBarContainer
                objectName: "progressBarShape"
                anchors.left: parent.left
                anchors.right: parent.right
                anchors.verticalCenter: parent.verticalCenter
                color: "transparent"
                height: units.gu(0.5);
                state: trackQueue.model.count === 0 ? "disabled" : "enabled"

                states: [
                    State {
                        name: "disabled"
                        PropertyChanges {
                            target: musicToolbarFullProgressMouseArea
                            enabled: false
                        }
                        PropertyChanges {
                            target: musicToolbarFullProgressTrough
                            visible: false
                        }
                        PropertyChanges {
                            target: musicToolbarFullProgressHandle
                            visible: false
                        }
                    },
                    State {
                        name: "enabled"
                        PropertyChanges {
                            target: musicToolbarFullProgressMouseArea
                            enabled: true
                        }
                        PropertyChanges {
                            target: musicToolbarFullProgressTrough
                            visible: true
                        }
                        PropertyChanges {
                            target: musicToolbarFullProgressHandle
                            visible: true
                        }
                    }
                ]

                property bool seeking: false

                onSeekingChanged: {
                    if (seeking === false) {
                        musicToolbarFullPositionLabel.text = durationToString(player.position)
                    }
                }

                Connections {
                    target: player
                    onDurationChanged: {
                        console.debug("Duration changed: " + player.duration)
                        musicToolbarFullDurationLabel.text = durationToString(player.duration)
                    }
                    onPositionChanged: {
                        if (musicToolbarFullProgressBarContainer.seeking === false)
                        {
                            musicToolbarFullPositionLabel.text = durationToString(player.position)
                            musicToolbarFullDurationLabel.text = durationToString(player.duration)
                            musicToolbarFullProgressHandle.x = (player.position / player.duration) * musicToolbarFullProgressBarContainer.width
                                    - musicToolbarFullProgressHandle.width / 2;
                        }
                    }
                    onStopped: {
                        musicToolbarFullProgressHandle.x = -musicToolbarFullProgressHandle.width / 2;

                        musicToolbarFullPositionLabel.text = durationToString(0);
                        musicToolbarFullDurationLabel.text = durationToString(0);
                    }
                }

                // Black background behind the progress bar
                Rectangle {
                    id: musicToolbarFullProgressBackground
                    anchors.verticalCenter: parent.verticalCenter;
                    color: styleMusic.toolbar.fullProgressBackgroundColor;
                    height: parent.height;
                    width: parent.width;
                }

                // The orange fill of the progress bar
                Rectangle {
                    id: musicToolbarFullProgressTrough
                    anchors.verticalCenter: parent.verticalCenter;
                    antialiasing: true
                    color: styleMusic.toolbar.fullProgressTroughColor;
                    height: parent.height;
                    width: musicToolbarFullProgressHandle.x + (height / 2);  // +radius
                }

                // The current position (handle) of the progress bar
                Rectangle {
                    id: musicToolbarFullProgressHandle
                    anchors.verticalCenter: musicToolbarFullProgressBackground.verticalCenter
                    antialiasing: true
                    color: styleMusic.nowPlaying.progressHandleColor
                    height: units.gu(1.5)
                    width: height

                    // On X change update the position string
                    onXChanged: {
                        if (musicToolbarFullProgressBarContainer.seeking) {
                            var fraction = (x + (width / 2)) / parent.width;
                            musicToolbarFullPositionLabel.text = durationToString(fraction * player.duration)
                        }
                    }
                }
            }

            /* Duration label */
            Label {
                id: musicToolbarFullDurationLabel
                anchors.top: musicToolbarFullProgressBarContainer.bottom
                anchors.right: parent.right
                color: styleMusic.nowPlaying.labelSecondaryColor
                fontSize: "x-small"
                height: parent.height
                horizontalAlignment: Text.AlignHCenter
                text: durationToString(player.duration)
                verticalAlignment: Text.AlignVCenter
                width: units.gu(3)
            }

            /* Mouse events for the progress bar
                   is after musicToolbarMouseArea so that it captures mouse events for dragging */
            MouseArea {
                id: musicToolbarFullProgressMouseArea
                anchors.fill: musicToolbarFullProgressContainer
                width: musicToolbarFullProgressBarContainer.width
                x: musicToolbarFullProgressBarContainer.x
                y: musicToolbarFullProgressBarContainer.y

                drag.axis: Drag.XAxis
                drag.minimumX: -(musicToolbarFullProgressHandle.width / 2)
                drag.maximumX: musicToolbarFullProgressBarContainer.width - (musicToolbarFullProgressHandle.width / 2)
                drag.target: musicToolbarFullProgressHandle

                onPressed: {
                    musicToolbarFullProgressBarContainer.seeking = true;

                    // Jump the handle to the current mouse position
                    musicToolbarFullProgressHandle.x = mouse.x - (musicToolbarFullProgressHandle.width / 2);
                }

                onReleased: {
                    var fraction = mouse.x / musicToolbarFullProgressBarContainer.width;

                    // Limit the bounds of the fraction
                    fraction = fraction < 0 ? 0 : fraction
                    fraction = fraction > 1 ? 1 : fraction

                    player.seek((fraction) * player.duration);
                    musicToolbarFullProgressBarContainer.seeking = false;
                }
            }
        }

        /* Repeat button */
        MouseArea {
            id: nowPlayingRepeatButton
            objectName: "repeatShape"
            anchors.right: nowPlayingPreviousButton.left
            anchors.rightMargin: units.gu(1)
            anchors.verticalCenter: nowPlayingPlayButton.verticalCenter
            height: units.gu(6)
            opacity: player.repeat && !emptyPage.noMusic ? 1 : .4
            width: height
            onClicked: player.repeat = !player.repeat

            Image {
                id: repeatIcon
                height: units.gu(3)
                width: height
                anchors.verticalCenter: parent.verticalCenter
                anchors.horizontalCenter: parent.horizontalCenter
                source: Qt.resolvedUrl("images/media-playlist-repeat.svg")
                verticalAlignment: Text.AlignVCenter
                opacity: player.repeat && !emptyPage.noMusic ? 1 : .4
            }
        }

        /* Previous button */
        MouseArea {
            id: nowPlayingPreviousButton
            anchors.right: nowPlayingPlayButton.left
            anchors.rightMargin: units.gu(1)
            anchors.verticalCenter: nowPlayingPlayButton.verticalCenter
            height: units.gu(6)
            objectName: "previousShape"
            opacity: trackQueue.model.count === 0  ? .4 : 1
            width: height
            onClicked: player.previousSong()

            Image {
                id: nowPlayingPreviousIndicator
                height: units.gu(3)
                width: height
                anchors.horizontalCenter: parent.horizontalCenter
                anchors.verticalCenter: parent.verticalCenter
                source: Qt.resolvedUrl("images/media-skip-backward.svg")
                opacity: 1
            }
        }

        /* Play/Pause button */
        MouseArea {
            id: nowPlayingPlayButton
            anchors.horizontalCenter: parent.horizontalCenter
            anchors.top:musicToolbarFullProgressContainer.bottom
            anchors.topMargin: units.gu(2)
            height: units.gu(12)
            objectName: "playShape"
            width: height
            onClicked: player.toggle()

            Image {
                id: nowPlayingPlayIndicator
                height: units.gu(6)
                width: height
                anchors.horizontalCenter: parent.horizontalCenter
                anchors.verticalCenter: parent.verticalCenter
                opacity: emptyPage.noMusic ? .4 : 1
                source: player.playbackState === MediaPlayer.PlayingState ?
                            Qt.resolvedUrl("images/media-playback-pause.svg") : Qt.resolvedUrl("images/media-playback-start.svg")
            }
        }

        /* Next button */
        MouseArea {
            id: nowPlayingNextButton
            anchors.left: nowPlayingPlayButton.right
            anchors.leftMargin: units.gu(1)
            anchors.verticalCenter: nowPlayingPlayButton.verticalCenter
            height: units.gu(6)
            objectName: "forwardShape"
            opacity: trackQueue.model.count === 0 ? .4 : 1
            width: height
            onClicked: player.nextSong()

            Image {
                id: nowPlayingNextIndicator
                height: units.gu(3)
                width: height
                anchors.horizontalCenter: parent.horizontalCenter
                anchors.verticalCenter: parent.verticalCenter
                source: Qt.resolvedUrl("images/media-skip-forward.svg")
                opacity: 1
            }
        }

        /* Shuffle button */
        MouseArea {
            id: nowPlayingShuffleButton
            objectName: "shuffleShape"
            anchors.left: nowPlayingNextButton.right
            anchors.leftMargin: units.gu(1)
            anchors.verticalCenter: nowPlayingPlayButton.verticalCenter
            height: units.gu(6)
            opacity: player.shuffle && !emptyPage.noMusic ? 1 : .4
            width: height
            onClicked: player.shuffle = !player.shuffle

            Image {
                id: shuffleIcon
                height: units.gu(3)
                width: height
                anchors.verticalCenter: parent.verticalCenter
                anchors.horizontalCenter: parent.horizontalCenter
                source: Qt.resolvedUrl("images/media-playlist-shuffle.svg")
                opacity: player.shuffle && !emptyPage.noMusic ? 1 : .4
            }
        }
    }
}