forked from oepi-loepi/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BitcoinConfigScreen.qml
387 lines (342 loc) · 8.31 KB
/
BitcoinConfigScreen.qml
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
import QtQuick 2.1
import BasicUIControls 1.0
import qb.components 1.0
Screen {
id: bitcoinConfigScreen
screenTitle: "Bitcoin App Setup"
property string coins: ""
property string coinsURL : "https://raw.githubusercontent.com/ToonSoftwareCollective/toonanimations/main/bitcoins2.txt"
property variant coinsArray : []
property variant selectedCoinsArray
property int numberofItems :0
property int numberofItems2 :0
property string selectedTileCoin: ""
onShown: {
addCustomTopRightButton("Opslaan")
getCoins()
selectedCoinsArray = app.selectedCoinsArray
selectedTileCoin = app.selectedTileCoin
selectedCoinstoList()
}
onCustomButtonClicked: {
app.selectedCoinsArray = selectedCoinsArray
app.selectedTileCoin = selectedTileCoin
app.saveSettings()
hide()
}
function selectedCoinstoList(){
model2.clear()
for (var x in selectedCoinsArray){
listview2.model.append({name: selectedCoinsArray[x]})
}
numberofItems2 = selectedCoinsArray.length
}
function getCoins(){
var xmlhttp = new XMLHttpRequest()
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState === 4 && xmlhttp.status === 200) {
coins = xmlhttp.responseText
coinsArray = coins.substring(0, coins.length).split(';')
numberofItems = coinsArray.length
model.clear()
for(var x1 in coinsArray){
listview1.model.append({name: coinsArray[x1].trim()})
}
}
}
xmlhttp.open("GET", coinsURL, true)
xmlhttp.send()
}
/////////////////////////////////////////////////////////////////////////
Text {
id: mytexttop1
text: "Selecteer de crypto munten die je wilt zien op het scherm"
font {
family: qfont.semiBold.name
pixelSize: isNxt ? 18:14
}
anchors {
top:parent.top
left:parent.left
leftMargin: isNxt ? 10 :8
topMargin: isNxt ? 5 :4
}
}
Text {
id: mytexttop2
text: "Selecteer:"
font {
family: qfont.semiBold.name
pixelSize: isNxt ? 18:14
}
anchors {
top:mytexttop1.bottom
left:mytexttop1.left
topMargin: isNxt ? 10 :8
}
}
Rectangle{
id: listviewContainer1
width: isNxt ? parent.width/2 -100 : parent.width/2 - 80
height: isNxt ? 220 : 190
color: "white"
radius: isNxt ? 5 : 4
border.color: "black"
border.width: isNxt ? 3 : 2
anchors {
top: mytexttop2.bottom
topMargin: 8
left: mytexttop1.left
}
Component {
id: aniDelegate
Item {
width: isNxt ? (parent.width-20) : (parent.width-16)
height: isNxt ? 22 : 18
Text {
id: tst
text: name
font.pixelSize: isNxt ? 18:14
}
}
}
ListModel {
id: model
}
ListView {
id: listview1
anchors {
top: parent.top
topMargin:isNxt ? 20 : 16
leftMargin: isNxt ? 12 : 9
left: parent.left
}
width: parent.width
height: isNxt ? (parent.height-50) : (parent.height-40)
model:model
delegate: aniDelegate
highlight: Rectangle {
color: "lightsteelblue";
radius: isNxt ? 5 : 4
}
focus: true
}
}
/////////////////////////////////////////////////////////////////////////
IconButton {
id: upButton
anchors {
top: listviewContainer1.top
left: listviewContainer1.right
leftMargin : isNxt? 3 : 2
}
iconSource: "qrc:/tsc/up.png"
onClicked: {
if (listview1.currentIndex>0){
listview1.currentIndex = listview1.currentIndex -1
}
}
}
IconButton {
id: downButton
anchors {
bottom: listviewContainer1.bottom
left: listviewContainer1.right
leftMargin : isNxt? 3 : 2
}
iconSource: "qrc:/tsc/down.png"
onClicked: {
if (numberofItems>listview1.currentIndex + 1){
listview1.currentIndex = listview1.currentIndex +1
}
}
}
NewTextLabel {
id: addText
width: isNxt ? 120 : 96;
height: isNxt ? 40:32
buttonActiveColor: "lightgreen"
buttonHoverColor: "blue"
enabled : true
textColor : "black"
buttonText: "Voeg Toe"
anchors {
top: listviewContainer1.bottom
left: listviewContainer1.left
topMargin: isNxt? 5: 4
}
onClicked: {
if (numberofItems2<11){
var exists = false
var selectedCoin = coinsArray[listview1.currentIndex].toLowerCase().trim()
for (var i in selectedCoinsArray){
if (selectedCoin == selectedCoinsArray[i].toLowerCase().trim()){
exists = true
}
}
if (!exists){
listview2.model.append({name: coinsArray[listview1.currentIndex]})
selectedCoinsArray.push(selectedCoin)
numberofItems2 = selectedCoinsArray.length
}
}
}
}
NewTextLabel {
id: addTile
width: isNxt ? 250 : 200;
height: isNxt ? 40:32
buttonActiveColor: "lightgreen"
buttonHoverColor: "blue"
enabled : true
textColor : "black"
buttonText: "Selecteer voor Tegel"
anchors {
top: addText.top
left: addText.right
rightMargin: isNxt? 5: 4
}
onClicked: {
if (coinsArray[listview1.currentIndex].length>1){
selectedTileCoin = coinsArray[listview1.currentIndex]
}
}
}
Text {
id: selectedTilecoinText
text: "Geselecteerd voor tegel: " + selectedTileCoin
font {
family: qfont.semiBold.name
pixelSize: isNxt ? 20:16
}
anchors {
top: addText.bottom
left:addText.left
topMargin: isNxt? 10: 8
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Text {
id: mytext1
text: "Geselecteerde crypto munten: "
font {
family: qfont.semiBold.name
pixelSize: isNxt ? 18:14
}
anchors {
top: mytexttop2.top
left:parent.left
leftMargin: parent.width/2
}
}
Rectangle{
id: listviewContainer2
width: isNxt ? parent.width/2 -100 : parent.width/2 - 80
height: isNxt ? 220 : 190
color: "white"
radius: isNxt ? 5 : 4
border.color: "black"
border.width: isNxt ? 3 : 2
anchors {
top: listviewContainer1.top
left: mytext1.left
}
Component {
id: aniDelegate2
Item {
width: isNxt ? (parent.width-20) : (parent.width-16)
height: isNxt ? 22 : 18
Text {
id: tst
text: name
font.pixelSize: isNxt ? 18:14
}
}
}
ListModel {
id: model2
}
ListView {
id: listview2
anchors {
top: parent.top
topMargin:isNxt ? 20 : 16
leftMargin: isNxt ? 12 : 9
left: parent.left
}
width: parent.width
height: isNxt ? (parent.height-50) : (parent.height-40)
model:model2
delegate: aniDelegate
highlight: Rectangle {
color: "lightsteelblue";
radius: isNxt ? 5 : 4
}
focus: true
}
}
/////////////////////////////////////////////////////////////////////////
IconButton {
id: upButton2
anchors {
top: listviewContainer2.top
left: listviewContainer2.right
leftMargin : isNxt? 3 : 2
}
iconSource: "qrc:/tsc/up.png"
onClicked: {
if (listview2.currentIndex>0){
listview2.currentIndex = listview2.currentIndex -1
}
}
}
IconButton {
id: downButton2
anchors {
bottom: listviewContainer2.bottom
left: listviewContainer2.right
leftMargin : isNxt? 3 : 2
}
iconSource: "qrc:/tsc/down.png"
onClicked: {
if (numberofItems2>listview2.currentIndex +1){
listview2.currentIndex = listview2.currentIndex +1
}
}
}
NewTextLabel {
id: removeText
width: isNxt ? 120 : 96;
height: isNxt ? 40:32
buttonActiveColor: "lightgreen"
buttonHoverColor: "blue"
enabled : true
textColor : "black"
buttonText: "Verwijder"
anchors {
top: listviewContainer2.bottom
left: listviewContainer2.left
topMargin: isNxt? 5: 4
}
onClicked: {
if (selectedCoinsArray[listview2.currentIndex].length >0 ){
listview2.model.remove(listview2.currentIndex)
selectedCoinsArray.splice(listview2.currentIndex, 1);
numberofItems2 = selectedCoinsArray.length
}
}
visible: selectedCoinsArray.length >0
}
Column {
id: columnContainer2
width: parent.width
anchors {
bottom: parent.bottom
bottomMargin: isNxt ? 8:6
left:parent.left
leftMargin: isNxt ? 8:6
}
Text {font.pixelSize: isNxt ? 12:10; font.family: qfont.semiBold.name; text:"All rights reserved. Nor TSC Team or the writer of this app can be held repsonsible for the correctness of all or parts of data data discplayed." }
Text {font.pixelSize: isNxt ? 12:10; font.family: qfont.semiBold.name; text:"For correct data and values we would like to refer to the official datasources. Please use the internet to find so." }
}
}