This repository has been archived by the owner on Sep 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Template_Tubercolosis.qml
266 lines (250 loc) · 7.86 KB
/
Template_Tubercolosis.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) 2014-2014 52°North Initiative for Geospatial Open Source
** Software GmbH
**
** This program is free software; you can redistribute it and/or modify it
** under the terms of the GNU General Public License version 2 as published
** by the Free Software Foundation.
**
** If the program is linked with libraries which are licensed under one of
** the following licenses, the combination of the program with the linked
** library is not considered a "derivative work" of the program:
**
** - Apache License, version 2.0
** - Apache Software License, version 1.0
** - GNU Lesser General Public License, version 3
** - Mozilla Public License, versions 1.0, 1.1 and 2.0
** - Common Development and Distribution License (CDDL), version 1.0.
**
** Therefore the distribution of the program linked with libraries licensed
** under the aforementioned licenses, is permitted by the copyright holders
** if the distribution is compliant with both the GNU General Public
** icense version 2 and the aforementioned licenses.
**
** 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.
****************************************************************************/
// Author: B.P. Ottow
// Date: August 2014
// GSoC Project: Gatherer, ILWIS Mobile. Hosted by 52 North and ITC Enschede.
//
// This is an example template for health mapping - tubercolosis
import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Layouts 1.1
import QtQuick.Controls.Styles 1.1
Rectangle {id:template
width: 768
height: 600
color: "#d4d4d4"
signal returnData(string data)
Text{
y: 50
anchors.centerIn: parent
text:"Health mapping - Tubercolosis"
font.pointSize: 25
anchors.verticalCenterOffset: -200
anchors.horizontalCenterOffset: 0
}
Text {
id: textField1
x: 100
y: 150
text: qsTr("Disease Occurrence Id")
font.pixelSize: 25
}
TextArea {
id: field1
frameVisible: true
textFormat: Qt.PlainText
x: 450
y: 150
width: 200
height: 40
font.pixelSize: 25
inputMethodHints: Qt.ImhDigitsOnly
//onTextChanged:
MouseArea {
id: field1MouseArea
parent: field1.viewport
anchors.fill: parent
acceptedButtons: Qt.RightButton
onPressed: editmenu.popup()
}
}
Text {
id: textField2
x: 100
y: 225
text: qsTr("Patient name")
font.pixelSize: 25
}
TextArea {
id: field2
frameVisible: true
textFormat: Qt.PlainText
x: 450
y: 225
width: 200
height: 40
font.pixelSize: 25
wrapMode: TextEdit.NoWrap
MouseArea {
id: field2MouseArea
parent: field2.viewport
anchors.fill: parent
acceptedButtons: Qt.RightButton
onPressed: editmenu.popup()
}
}
GroupBox {
id: field3
width: 700
height: 175
x: 50
y: 275
title: "Symptoms"
Row {
anchors.verticalCenterOffset: -30
anchors.centerIn: parent
spacing: 10
CheckBox {
id: persitentCough
text: "Persitent cough"
checked: false
Layout.minimumWidth: 100
style: CheckBoxStyle {
label: Text {
text: control.text
color: "#000000"
renderType: Text.NativeRendering
font.pixelSize: 25
}
}
}
CheckBox {
id: breathlessness
text: "Breathlessness"
checked: false
Layout.minimumWidth: 100
style: CheckBoxStyle {
label: Text {
text: control.text
color: "#000000"
renderType: Text.NativeRendering
font.pixelSize: 25
}
}
}
CheckBox {
id: lackOfAppetite
text: "Lack of appetite"
checked: false
Layout.minimumWidth: 100
style: CheckBoxStyle {
label: Text {
text: control.text
color: "#000000"
renderType: Text.NativeRendering
font.pixelSize: 25
}
}
}
}
Row {
anchors.verticalCenterOffset: 30
anchors.centerIn: parent
spacing: 10
CheckBox {
id: highTemp
text: "High temp"
checked: false
Layout.minimumWidth: 100
style: CheckBoxStyle {
label: Text {
text: control.text
color: "#000000"
renderType: Text.NativeRendering
font.pixelSize: 25
}
}
}
CheckBox {
id: nightSweats
text: "Night sweats"
checked: false
Layout.minimumWidth: 100
style: CheckBoxStyle {
label: Text {
text: control.text
color: "#000000"
renderType: Text.NativeRendering
font.pixelSize: 25
}
}
}
CheckBox {
id: fatigue
text: "Fatigue"
checked: false
Layout.minimumWidth: 100
style: CheckBoxStyle {
label: Text {
text: control.text
color: "#000000"
renderType: Text.NativeRendering
font.pixelSize: 25
}
}
}
}
}
CheckBox {
id: field4
x: 450
y: 525
text: "Cholera"
checked: false
style: CheckBoxStyle {
label: Text {
text: control.text
color: "#000000"
renderType: Text.NativeRendering
font.pixelSize: 25
}
}
Layout.minimumWidth: 100
}
function getData ()
{
var returnValue = "&field1=";
returnValue = returnValue + field1.text;
returnValue = returnValue + "&field2=";
returnValue = returnValue + field2.text;
returnValue = returnValue + "&field3=";
if (persitentCough.checked)
returnValue = returnValue + "PersitentCough;";
if (breathlessness.checked)
returnValue = returnValue + "Breathlessness;";
if (lackOfAppetite.checked)
returnValue = returnValue + "LackOfAppetite;";
if (highTemp.checked)
returnValue = returnValue + "HighTemp;";
if (nightSweats.checked)
returnValue = returnValue + "NightSweats;";
if (fatigue.checked)
returnValue = returnValue + "Fatigue";
returnValue = returnValue + "&field4=";
if (field4.checked) {
//console.log ("Cholera");
returnValue = returnValue + "true";
}
else {
//console.log ("no Cholera")
returnValue = returnValue + "false";
}
template.returnData(returnValue);
}
}