~ahayzen/music-app/show-toolbar-on-play

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
/*
 * Copyright (C) 2013 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.0
import Ubuntu.Components 0.1
import Ubuntu.Components.ListItems 0.1 as ListItem
import Ubuntu.Components.Popups 0.1
import QtQuick.LocalStorage 2.0
import "settings.js" as Settings
import "scrobble.js" as Scrobble
import "playlists.js" as Playlists

ComposerSheet {
    id: musicSettings
    title: i18n.tr("Settings")
    contentsHeight: parent.height;

    onCancelClicked: PopupUtils.close(musicSettings)
    onConfirmClicked: {
        PopupUtils.close(musicSettings)
        console.debug("Debug: Save settings")
        Settings.initialize()

        // Equaliser
        // ACTIVATE IN 1.+ Settings.setSetting("eqialiser",equaliser.index)

        // snap track
        Settings.setSetting("snaptrack",snapSwitch.checked)

        // ACCOUNTS
        // Last.fm

        // MUSIC STREAMING
        // Ubuntu one
        /* READY THIS LATER IN 1.+
        if (ubuntuaccount === activated) {
            Settings.setSetting("wifiswitch",wifiSwitch.checked)
        }*/


        // MOVE TO TOOLBAR
        Settings.setSetting("shuffle", shuffleSwitch.checked) // save shuffle state

        // -- random = shuffleSwitch.checked // set shuffle state variable
        //console.debug("Debug: Shuffle: "+ shuffleSwitch.checked)

        // MOVE TO scrobble Settings.setSetting("scrobble", scrobbleSwitch.checked) // save shuffle state
        //scrobble = scrobbleSwitch.checked // set scrobble state variable
        //console.debug("Debug: Scrobble: "+ scrobbleSwitch.checked)
    }

    Column {
        spacing: units.gu(2)
        width: parent.width

        // Activate in 1.+
        ListItem.ItemSelector {
            id: equaliser
            anchors.top: parent.bottom
            anchors.left: parent.left
            anchors.right: parent.right
            enabled: false
            text: i18n.tr("Equaliser")
            model: [i18n.tr("Default"),
                  i18n.tr("Accoustic"),
                  i18n.tr("Classical"),
                  i18n.tr("Electronic"),
                  i18n.tr("Flat"),
                  i18n.tr("Hip Hop"),
                  i18n.tr("Jazz"),
                  i18n.tr("Metal"),
                  i18n.tr("Pop"),
                  i18n.tr("Rock"),
                  i18n.tr("Custom")]
            onDelegateClicked: {
                customdebug("Value changed to "+index)
                //equaliserChange(index)
            }
        }

        // Snap to current track
        Row {
            id: snapRow
            width: parent.width
            anchors.top: equaliser.bottom
            anchors.topMargin: units.gu(2)
            anchors.left: parent.left
            anchors.right: parent.right
            anchors.bottom: shuffleRow.top
            anchors.bottomMargin: units.gu(2)
            anchors.leftMargin: units.gu(2)
            Label {
                id: snapLabel
                anchors.verticalCenter: snapSwitch.verticalCenter
                text: i18n.tr("Snap to current song \nwhen opening toolbar")
            }
            Switch {
                id: snapSwitch
                checked: Settings.getSetting("snaptrack") === "1"
                anchors.right: parent.right
            }
        }

        // Shuffle or not
        // MOVE THIS TO NEW TOOLBAR
        Row {
            id: shuffleRow
            anchors.top: equaliser.bottom
            anchors.topMargin: units.gu(8)
            anchors.left: parent.left
            anchors.right: parent.right
            anchors.bottom: accounts.top
            anchors.bottomMargin: units.gu(2)
            anchors.leftMargin: units.gu(2)
            width: parent.width
            Label {
                id: shuffleLabel
                anchors.verticalCenter: shuffleSwitch.verticalCenter
                text: i18n.tr("Shuffle")
            }
            Switch {
                id: shuffleSwitch
                checked: Settings.getSetting("shuffle") === "1"
                anchors.right: parent.right
            }
        }

        // Accounts
        Row {
            id: accounts
            anchors.top: equaliser.bottom
            anchors.topMargin: units.gu(12)
            anchors.bottom: streaming.top
            anchors.bottomMargin: units.gu(2)
            width: parent.width

            Label {
                id: accountLabel
                text: i18n.tr("Accounts")
                anchors.top: parent.top
                anchors.topMargin: units.gu(2)
            }

            // lastfm
            ListItem.Subtitled {
                id: lastfmProg
                anchors.top: parent.top
                anchors.topMargin: units.gu(5)
                anchors.left: parent.left
                anchors.right: parent.right
                anchors.bottomMargin: untits.gu(8)
                text: i18n.tr("Last.fm")
                subText: i18n.tr("Login to scrobble and import playlists")
                width: parent.width
                progression: true
                enabled: false
                onClicked: {
                    PopupUtils.open(Qt.resolvedUrl("LoginLastFM.qml"), mainView,
                    {
                        title: i18n.tr("Last.fm")
                    } )
                    PopupUtils.close(musicSettings)
                }
            }
        }

        // Music Streaming
        // Activate in 1.+
        Row {
            id: streaming
            anchors.top: equaliser.bottom
            anchors.topMargin: units.gu(24)
            width: parent.width
            Label {
                text: i18n.tr("Music Streaming")
                visible: true
            }
            // Ubuntu One
            ListItem.Subtitled {
                id: musicStreamProg
                anchors.top: parent.bottom
                anchors.topMargin: units.gu(2)
                anchors.left: parent.left
                anchors.right: parent.right
                text: i18n.tr("Ubuntu One")
                subText: i18n.tr("Sign in to stream your cloud music")
                enabled: false
                progression: true
                onClicked: {
                    customdebug("I'm Ron Burgendy...?")
                }
            }

            Row {
                id: wifiRow
                anchors.top: parent.top
                anchors.topMargin: units.gu(10)
                width: parent.width
                Label {
                    id: streamwifiLabel
                    text: i18n.tr("Stream only on Wi-Fi")
                    enabled: false // check if account is connected
                    anchors.left: parent.left
                    anchors.leftMargin: units.gu(2)
                    anchors.verticalCenter: wifiSwitch.verticalCenter
                }
                Switch {
                    id: wifiSwitch
                    checked: Settings.getSetting("wifiswitch") === "1"
                    enabled: false // check if account is connected
                    anchors.right: parent.right
                }
            }
        }

        /* MOVE THIS STUFF
        // import playlists from lastfm
        Row {
            spacing: units.gu(2)
            Button {
                id: lastfmPlaylists
                text: i18n.tr("Import playlists from last.fm")
                width: units.gu(30)
                color: "#c94212"
                enabled: Settings.getSetting("scrobble") === "1" // only if scrobble is activated.
                onClicked: {
                    console.debug("Debug: import playlists from last.fm")
                    Scrobble.getPlaylists(Settings.getSetting("lastfmusername"))
                }
            }
        } */

        // developer button - KILLS YOUR CAT!
        Button {
            text: i18n.tr("Clean everything!")
            color: "red"
            visible: args.values.debug
            onClicked: {
                Settings.reset()
                Playlists.reset()
            }
        }
    }
}