This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPage4Form.ui.qml
266 lines (242 loc) · 7.7 KB
/
Page4Form.ui.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
/***************************************************************************
* Copyright (C) 2020 - 2023 Anke Boersma <[email protected]> *
* *
* 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; either version 2 of the License, or *
* (at your option) any later version. *
* *
* 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, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts
Rectangle {
id: item1
color: "#f2f2f2"
width: 900
height: 600
property alias mouseArea: mouseArea
property alias mouseArea1: mouseArea1
property alias mouseArea2: mouseArea2
property alias mouseArea3: mouseArea3
property alias mouseArea4: mouseArea4
property alias mouseArea5: mouseArea5
Column {
id: column
x: 100
y: 25
width: 180
height: 546
spacing: 5
Rectangle {
width: 180
height: 180
border.width: 0
Text {
x: 44
y: 158
text: qsTr("Web-Browsers")
anchors.bottom: parent.bottom
anchors.rightMargin: 44
anchors.bottomMargin: 8
}
Image {
id: image1
width: 96
height: 96
sourceSize.height: 96
sourceSize.width: 96
fillMode: Image.PreserveAspectFit
anchors.centerIn: parent
source: "images/flaticon/internet.svg"
}
MouseArea {
id: mouseArea
width: 180
height: 180
hoverEnabled: true
//cursorShape: Qt.PointingHandCursor
}
}
Rectangle {
id: rectangle
width: 180
height: 180
color: "#ffffff"
border.width: 0
Text {
x: 50
y: 158
text: qsTr("Email Clients")
anchors.bottom: parent.bottom
anchors.bottomMargin: 8
}
Image {
id: image2
width: 96
height: 96
sourceSize.height: 96
sourceSize.width: 96
fillMode: Image.PreserveAspectFit
anchors.centerIn: parent
source: "images/flaticon/email.svg"
}
MouseArea {
id: mouseArea1
width: 180
height: 180
//cursorShape: Qt.PointingHandCursor
}
}
Rectangle {
id: rectangle1
width: 180
height: 180
color: "#ffffff"
border.width: 0
Text {
x: 48
y: 158
text: qsTr("Video Editors")
anchors.bottom: parent.bottom
anchors.bottomMargin: 8
}
Image {
id: image3
width: 96
height: 96
sourceSize.height: 96
sourceSize.width: 96
fillMode: Image.PreserveAspectFit
anchors.centerIn: parent
source: "images/flaticon/mov.svg"
}
MouseArea {
id: mouseArea2
width: 180
height: 180
//cursorShape: Qt.PointingHandCursor
}
}
}
Column {
id: column1
x: 387
y: 25
width: 180
height: 546
spacing: 5
Rectangle {
id: rectangle2
width: 180
height: 180
color: "#ffffff"
border.width: 0
Text {
x: 47
y: 158
text: qsTr("Music Players")
anchors.bottom: parent.bottom
anchors.bottomMargin: 8
}
Image {
id: image4
width: 96
height: 96
sourceSize.height: 96
sourceSize.width: 96
fillMode: Image.PreserveAspectFit
anchors.centerIn: parent
source: "images/flaticon/music.svg"
}
MouseArea {
id: mouseArea3
width: 180
height: 180
//cursorShape: Qt.PointingHandCursor
}
}
Rectangle {
id: rectangle3
width: 180
height: 180
color: "#ffffff"
border.width: 0
Text {
x: 25
y: 150
text: qsTr("Image Manipulation")
anchors.bottom: parent.bottom
anchors.bottomMargin: 8
}
Image {
id: image5
width: 96
height: 96
sourceSize.height: 96
sourceSize.width: 96
fillMode: Image.PreserveAspectFit
anchors.centerIn: parent
source: "images/flaticon/png.svg"
}
MouseArea {
id: mouseArea4
width: 180
height: 180
//cursorShape: Qt.PointingHandCursor
}
}
Rectangle {
id: rectangle4
width: 180
height: 180
color: "#ffffff"
border.width: 0
Text {
x: 31
y: 150
text: qsTr("Office Applications")
anchors.bottom: parent.bottom
anchors.bottomMargin: 8
}
Image {
id: image6
width: 96
height: 96
sourceSize.height: 96
sourceSize.width: 96
fillMode: Image.PreserveAspectFit
anchors.centerIn: parent
source: "images/flaticon/writer.svg"
}
MouseArea {
id: mouseArea5
width: 180
height: 180
//cursorShape: Qt.PointingHandCursor
}
}
}
Text {
id: element
x: 609
y: 215
width: 238
height: 218
text: qsTr("<h3>Package Groups</h3>\n
Please choose one of the groups to see the various packages each group contains. Then select applications you wish to add to your install. Multiple selections per group are possible. Once done with your selection click the install button.")
horizontalAlignment: Text.AlignHCenter
font.weight: Font.DemiBold
wrapMode: Text.WordWrap
font.pixelSize: 15
}
}