-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.qml
386 lines (341 loc) · 15.3 KB
/
main.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
384
385
386
// Copyright (C) 2022 Kambiz Asadzadeh
// SPDX-License-Identifier: LGPL-3.0-only
import QtQuick
import QtQuick.Window
import QtQuick.Controls.Basic
import QtQuick.Layouts
import Qt5Compat.GraphicalEffects
ApplicationWindow {
id: appRoot
width: 800
height: 600
maximumWidth: 800
maximumHeight: 600
visible: true
title: qsTr("Bacon Ipsum")
color: "#ffffff"
QtObject {
id: appObject
readonly property string apiUrl : "https://baconipsum.com/api/?"
readonly property string apiKey : "";
readonly property string method : "POST";
property int paras : control.value;
property string result : "";
}
FontSystem { id: fontSystem; }
//! Remove extra double quote for some json outputs.
function stringFixer(variable)
{
var a1 = variable.replace(/['"]+/g, '\n');
return a1
}
function dataRequest(type)
{
var req = new XMLHttpRequest();
req.open(appObject.method, appObject.apiUrl + "&type=meat-and-filler¶s="+appObject.paras+"&format=text");
req.onreadystatechange = function() {
if (req.readyState === XMLHttpRequest.DONE) {
let result = JSON.stringify(req.responseText);
//Data
appObject.result = stringFixer(result)
}
busyIndicator.running = false;
mainItem.implicitHeight = 270
finalResultRow.visible = true
}
req.onerror = function(){
console.log("Error!")
}
req.send()
}
Pane {
anchors.fill: parent
background: appRoot.background
ColumnLayout {
width: parent.width
Layout.fillWidth: true
anchors.centerIn: parent
spacing: 16
Text {
font.family: fontSystem.getContentFontBold.name
font.pixelSize: fontSystem.h1
font.bold: true
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
text: qsTr("The Bacon Ipsum")
color: "#171c26"
}
Text {
font.family: fontSystem.getContentFont.name
font.pixelSize: fontSystem.h5
font.bold: false
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
text: qsTr("A REST interface for generating meaty lorem ipsum text and can be used by any application.")
color: "#171c26"
}
Item {
id: mainItem
width: 480
implicitHeight: 120
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
Behavior on implicitHeight {
NumberAnimation { duration: 200; }
}
RectangularGlow {
id: effect
anchors.fill: mainBorder
glowRadius: 32
spread: 0.1
color: "#dce7ff"
cornerRadius: mainBorder.radius + glowRadius
}
Rectangle {
id: mainBorder
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
anchors.fill: parent
color: "#ffffff"
border.width: 1
border.color: "#dce7ff"
radius: 15
}
ColumnLayout {
width: parent.width
Layout.fillWidth: true
Item { height: 20; }
Rectangle {
width: parent.width / 1.2
height: 64
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
color: "#f1f1f1"
radius: 10
ColumnLayout {
anchors.fill: parent
Item { width: 10; }
RowLayout {
width: parent.width
Layout.fillWidth: true
spacing: 0
Item { width: 15; }
Text {
font.family: fontSystem.getContentFont.name
font.pixelSize: 14
text: qsTr("Total of paragraphs")
}
Item { width: 10;}
SpinBox {
id: control
value: 1
editable: true
contentItem: TextInput {
z: 2
text: control.textFromValue(control.value, control.locale)
font: control.font
color: "#171c26"
selectionColor: "#171c26"
selectedTextColor: "#ffffff"
horizontalAlignment: Qt.AlignHCenter
verticalAlignment: Qt.AlignVCenter
readOnly: !control.editable
validator: control.validator
inputMethodHints: Qt.ImhFormattedNumbersOnly
}
up.indicator: Rectangle {
x: control.mirrored ? 0 : parent.width - width
height: parent.height
implicitWidth: 40
implicitHeight: 40
radius: width
color: control.up.pressed ? "#e4e4e4" : "#f6f6f6"
border.color: "#ccc"
Text {
text: "+"
font.pixelSize: control.font.pixelSize * 2
color: "#171c26"
anchors.fill: parent
fontSizeMode: Text.Fit
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
}
down.indicator: Rectangle {
x: control.mirrored ? parent.width - width : 0
height: parent.height
implicitWidth: 40
implicitHeight: 40
radius: width
color: control.down.pressed ? "#e4e4e4" : "#f6f6f6"
border.color: "#ccc"
Text {
text: "-"
font.pixelSize: control.font.pixelSize * 2
color: "#171c26"
anchors.fill: parent
fontSizeMode: Text.Fit
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
}
background: Rectangle {
implicitWidth: 130
border.color: "#ccced0"
radius: width
layer.enabled: true
layer.effect: DropShadow {
transparentBorder: true
horizontalOffset: 0
verticalOffset: 3
color: "#ccced0"
radius: 16
samples: 32
spread: 0.0
}
}
}
Item { width: 10; }
Button {
id: shortButton
implicitWidth: 100
implicitHeight: 38
font.family: fontSystem.getContentFont.name
font.pixelSize: fontSystem.h5
text: "Generate"
layer.enabled: true
layer.effect: DropShadow {
transparentBorder: true
horizontalOffset: 0
verticalOffset: 3
color: "#999"
radius: 16
samples: 32
spread: 0.0
}
background: Rectangle {
id: shortButtonBack
anchors.fill: parent
color: "#171c26"
radius: width
z: 2
}
contentItem: Text {
text: shortButton.text
font.bold: false
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
opacity: enabled ? 1.0 : 0.3
color: "#fff"
anchors.fill: parent
elide: Text.ElideRight
scale: shortButton.down ? 0.9 : 1.0
z: 3
Behavior on scale {
NumberAnimation {duration: 70;}
}
}
onClicked: {
busyIndicator.running = true;
dataRequest();
}
}
Item { Layout.fillWidth: true; }
}
Item { width: 10; }
}
}
ColumnLayout {
id: finalResultRow
width: parent.width
Layout.fillWidth: true
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
visible: false
spacing: 0
ScrollView {
id: view
anchors.fill: parent
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
anchors.margins: 5
background: Rectangle {
}
TextArea {
id: contentArea
font.family: fontSystem.getContentFont.name
font.pixelSize: appStyle.t1
font.bold: false
font.weight: Font.Normal
text: appObject.result
color: appStyle.foregroundActivated
wrapMode: Text.WordWrap
textFormat: TextEdit.AutoText
topPadding: -10
bottomPadding: 3
}
}
}
}
Item {}
}
Text {
font.family: fontSystem.getContentFont.name
font.pixelSize: 15
font.bold: false
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
onLinkActivated: Qt.openUrlExternally(link)
text: 'A Meatier Lorem Ipsum Generator.'
color: "#85878d"
}
}
BusyIndicator {
id: busyIndicator
width: 48
height: 48
running: false
anchors.bottom: parent.bottom
contentItem: Item {
implicitWidth: 16
implicitHeight: 16
Item {
id: itemProgress
x: parent.width / 2 - 16
y: parent.height / 2 - 16
width: 32
height: 32
opacity: busyIndicator.running ? 1 : 0
Behavior on opacity {
OpacityAnimator {
duration: 250
}
}
RotationAnimator {
target: itemProgress
running: busyIndicator.visible && busyIndicator.running
from: 0
to: 360
loops: Animation.Infinite
duration: 1250
}
Repeater {
id: repeater
model: 3
Rectangle {
x: itemProgress.width / 2 - width / 2
y: itemProgress.height / 2 - height / 2
implicitWidth: 5
implicitHeight: 5
radius: 2.5
color: "#171c26"
transform: [
Translate {
y: -Math.min(itemProgress.width, itemProgress.height) * 0.5 + 7
},
Rotation {
angle: index / repeater.count * 360
origin.x: 2.5
origin.y: 2.5
}
]
}
}
}
}
}
}
}