~mzanetti/unity8/onthefly-debugging

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
/*
 * Copyright (C) 2016 Canonical, Ltd.
 *
 * 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.4
import Ubuntu.Components 1.3
import QtMultimedia 5.0

Rectangle {
    id: root
    property int position: 0
    property int playbackState: 0
    property var resolution: { "width": 16, "height": 9 }

    anchors.centerIn: parent
    color: "black"

    // scale to the parent window.
    implicitWidth: parent ? aspectScale(Qt.size(resolution.width, resolution.height), Qt.size(parent.width, parent.height)).width : 160
    implicitHeight: parent ? aspectScale(Qt.size(resolution.width, resolution.height), Qt.size(parent.width, parent.height)).height : 90

    function aspectScale(fromSize, toSize) {
        var rw = toSize.height * fromSize.width / fromSize.height;
        var useHeight = (rw <= toSize.width);

        if (useHeight) {
            return Qt.size(rw, toSize.height);
        } else {
            return Qt.size(toSize.width,
                           toSize.width * (fromSize.height / fromSize.width));
        }
    }

    GridView {
        anchors.fill: parent
        model: (parent.width / units.gu(5)) * ((parent.height / units.gu(5) + 1))
        clip: true

        cellHeight: units.gu(5)
        cellWidth: units.gu(5)

        delegate: Item {
            width: units.gu(5)
            height: units.gu(5)

            Rectangle {
                id: rect
                color: "red"
                anchors.fill: parent
                anchors.margins: units.gu(1)

                Connections {
                    target: root
                    onPositionChanged: {
                        rect.rotation = position/100
                    }
                }
            }
        }
    }

    Column {
        anchors {
            left: parent.left;
            right: parent.right
            verticalCenter: parent.verticalCenter
        }
        height: units.gu(10)

        Label {
            anchors.horizontalCenter: parent.horizontalCenter
            text: {
                var pos = (position/1000).toFixed(0)

                var m = Math.floor(pos/60);
                var ss = pos % 60;
                if (ss >= 10) {
                    return m + ":" + ss;
                } else {
                    return m + ":0" + ss;
                }
            }
            fontSize: "x-large"
        }

        Label {
            anchors.horizontalCenter: parent.horizontalCenter
            text: getPlaybackState(playbackState)
            fontSize: "x-large"
        }
    }

    function getPlaybackState(playbackState) {
        if (playbackState === MediaPlayer.PlayingState) return "Playing";
        else if (playbackState === MediaPlayer.PausedState) return "Paused";
        else if (playbackState === MediaPlayer.StoppedState) return "Stopped";
        return "";
    }
}