Newer
Older
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.2
import "qrc:/widgets"
DapAbstractScreen
{
dapFrame.color: "#FFFFFF"
textTest.text: "Here text" // Delete it?
anchors.fill: parent
anchors.leftMargin: 24 * pt
anchors.rightMargin: 24 * pt
// Paths to currency emblems
property string bitCoinImagePath: "qrc:/res/icons/tkn1_icon_light.png"
property string ethereumImagePath: "qrc:/res/icons/tkn2_icon.png"
property string newGoldImagePath: "qrc:/res/icons/ng_icon.png"
property string kelvinImagePath: "qrc:/res/icons/ic_klvn.png"
///@param dapButtonNewPayment Button to create a new payment.
property alias dapButtonNewPayment: buttonNewPayment
Rectangle
{
id: titleBlock
anchors.top: parent.top
anchors.topMargin: 20 * pt
anchors.bottomMargin: 20 * pt
anchors.left: parent.left
anchors.right: parent.right
height: 36 * pt
RowLayout
{
anchors.fill: parent
Text
{
font.pixelSize: 20 * pt
font.family: "Roboto"
font.styleName: "Normal"
font.weight: Font.Normal
text: "My first wallet"
}
MouseArea
{
id: walletNameEditButton
width: 20 * pt
height: 20 * pt
hoverEnabled: true
Image
{
id: walletNameEditButtonImage
anchors.fill: parent
source: parent.containsMouse ? "qrc:/res/icons/ic_edit_hover.png" : "qrc:/res/icons/ic_edit.png"
sourceSize.width: width
sourceSize.height: height
}
}
Item
{
Layout.fillWidth: true
Layout.fillHeight: true
}
DapButton
{
widthButton: 132 * pt
heightButton: 36 * pt
textButton: "New payment"
colorBackgroundHover: "#D51F5D"
colorBackgroundNormal: "#070023"
colorButtonTextNormal: "#FFFFFF"
colorButtonTextHover: "#FFFFFF"
normalImageButton: "qrc:/res/icons/new-payment_icon.png"
hoverImageButton: "qrc:/res/icons/new-payment_icon.png"
widthImageButton: 20 * pt
heightImageButton: 20 * pt
indentImageLeftButton: 20 * pt
indentTextRight: 20 * pt
}
}
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
ListView
{
anchors.top: titleBlock.bottom
anchors.topMargin: 20 * pt
anchors.bottom: parent.bottom
width: parent.width
spacing: 5 * pt
clip: true
model:
ListModel
{
ListElement
{
name: "Kelvin Testnet"
address: "KLJHuhlkjshfausdh7865lksfahHKLUIHKJFHKLUESAHFILKUHEWKUAFHjkhfdkslusfkhgs"
money: [
ListElement
{
type: "bitCoin"
sum: 3487256
eq: "$ 3498750"
},
ListElement
{
type: "ether"
sum: 67896
eq: "$ 78687"
},
ListElement
{
type: "newGold"
sum: 675573
eq: "$ 987978"
}
]
}
ListElement
{
name: "Marketnet"
address: "lkajdsfeislsaIJEUfesIJEFHJISEFIsdfLIJFEISHFUSKEIEWEQLIJSlijfsfjlijeIEJJE"
money: [
ListElement
{
type: "bitCoin"
sum: 3487256
eq: "$ 3498750"
},
ListElement
{
type: "ether"
sum: 67896
eq: "$ 78687"
},
ListElement
{
type: "newGold"
sum: 675573
eq: "$ 987978"
},
ListElement
{
type: "ether"
sum: 6743896
eq: "$ 7843687"
}
]
}
}
delegate:
Column
{
width: parent.width
Rectangle
{
id: stockNameBlock
height: 30 * pt
width: parent.width
color: "#908D9D"
Text
{
id: stockNameText
anchors.left: parent.left
anchors.leftMargin: 16 * pt
anchors.verticalCenter: parent.verticalCenter
font.pixelSize: 12 * pt
font.family: "Roboto"
font.styleName: "Normal"
font.weight: Font.Normal
color: "#FFFFFF"
verticalAlignment: Qt.AlignVCenter
text: name
}
}
Row
{
id: networkAddressBlock
height: 40 * pt
width: parent.width
Item
{
width: 16 * pt
height: parent.height
}
Text
{
id: networkAddressLabel
anchors.verticalCenter: parent.verticalCenter
font.pixelSize: 12 * pt
font.family: "Roboto"
font.styleName: "Normal"
font.weight: Font.Normal
color: "#908D9D"
text: qsTr("Network address")
}
Item
{
width: 36 * pt
height: parent.height
}
Text
{
id: networkAddressValue
anchors.verticalCenter: parent.verticalCenter
width: 200 * pt
font.pixelSize: 12 * pt
font.family: "Roboto"
font.styleName: "Normal"
font.weight: Font.Normal
color: "#908D9D"
text: address
elide: Text.ElideRight
}
MouseArea
{
id: networkAddressCopyButton
anchors.verticalCenter: parent.verticalCenter
width: 20 * pt
height: 20 * pt
hoverEnabled: true
Image
{
id: networkAddressCopyButtonImage
anchors.fill: parent
source: parent.containsMouse ? "qrc:/res/icons/ic_copy_hover.png" : "qrc:/res/icons/ic_copy.png"
sourceSize.width: width
sourceSize.height: height
}
}
}
Repeater
{
width: parent.width
model: money
Rectangle
{
anchors.left: parent.left
anchors.leftMargin: 16 * pt
anchors.right: parent.right
anchors.rightMargin: 16 * pt
height: 56 * pt
Rectangle
{
anchors.top: parent.top
width: parent.width
height: 1 * pt
color: "#908D9D"
}
RowLayout
{
anchors.fill: parent
Image
{
id: currencyIcon
height: 40 * pt
width: 40 * pt
Layout.alignment: Qt.AlignLeft
source: (type === "bitCoin") ? bitCoinImagePath : (type === "ether") ? ethereumImagePath : newGoldImagePath // Don't know how to deal with it yet
sourceSize.width: width
sourceSize.height: height
}
Item
{
height: parent.height
width: 10 * pt
Layout.alignment: Qt.AlignLeft
}
Text
{
id: currencyName
Layout.alignment: Qt.AlignLeft
font.pixelSize: 18 * pt
font.family: "Roboto"
font.styleName: "Normal"
font.weight: Font.Normal
color: "#070023"
text: type
}
// Delimiters - see design
Item
{
height: parent.height
width: 16 * pt
}
Item
{
Layout.fillWidth: true
}
Item
{
height: parent.height
width: 16 * pt
}
Text
{
id: currencySum
Layout.alignment: Qt.AlignHCenter
font.pixelSize: 18 * pt
font.family: "Roboto"
font.styleName: "Normal"
font.weight: Font.Normal
color: "#070023"
text: sum
}
Text
{
id: currencyCode
font.pixelSize: 18 * pt
font.family: "Roboto"
font.styleName: "Normal"
font.weight: Font.Normal
color: "#070023"
text: (type === "bitCoin") ? "BTC" : (type === "ether") ? "ETH" : (type === "newGold") ? "NGD" : "KLVN"
}
Item
{
Layout.fillWidth: true
}
Text
{
id: currencyDollarEqv
Layout.alignment: Qt.AlignRight
font.pixelSize: 18 * pt
font.family: "Roboto"
font.styleName: "Normal"
font.weight: Font.Normal
color: "#070023"
text: eq
}
}
}
}
}
}