-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.kv
227 lines (195 loc) · 7.42 KB
/
dashboard.kv
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
#: import rgba kivy.utils.rgba
#: import Colors colors.Colors
<Dashboard>:
name: 'dashboard'
GridLayout:
cols: 1
Label:
text: "Patient Info"
font_size: min(self.width*0.3, self.height) * 0.4
font_name: 'Roboto-Bold'
color: rgba(Colors.BLUE)
######################## name+age ##################################
GridLayout:
cols: 2
size_hint: (.7, .2)
TextInput:
id: patname
size_hint: (.7, .2)
pos_hint: {'x': 0.15}
multiline: False
font_size: min(self.width*0.3, self.height) * 0.6
hint_text: "Name"
text: ""
background_color: rgba(*Colors.BLUE, 0)
foreground_color: rgba(Colors.ACCENT_BLUE)
canvas.after:
Color:
rgb: rgba(Colors.BLUE)
Line:
width: 2
rectangle: self.x, self.y, self.width, self.height
TextInput:
id: patage
size_hint: (.7, .2)
pos_hint: {'x': 0.15}
multiline: False
font_size: min(self.width*0.3, self.height) * 0.6
hint_text: "Age"
input_filter: 'int'
text: ""
background_color: rgba(*Colors.BLUE, 0)
foreground_color: rgba(Colors.ACCENT_BLUE)
canvas.after:
Color:
rgb: rgba(Colors.BLUE)
Line:
width: 2
rectangle: self.x, self.y, self.width, self.height
Widget:
size_hint_y: 0.02
####################### weight+height ##################################
GridLayout:
cols: 2
size_hint: (.7, .2)
TextInput:
id: patweight
pos_hint: {'x': 0.15}
multiline: False
font_size: min(self.width*0.3, self.height) * 0.6
hint_text: "Weight"
input_filter: 'int'
text: ""
background_color: rgba(*Colors.BLUE, 0)
foreground_color: rgba(Colors.ACCENT_BLUE)
canvas.after:
Color:
rgb: rgba(Colors.BLUE)
Line:
width: 2
rectangle: self.x, self.y, self.width, self.height
TextInput:
id: patheight
pos_hint: {'x': 0.15}
multiline: False
font_size: min(self.width*0.3, self.height) * 0.6
hint_text: "Height"
text: ""
background_color: rgba(*Colors.BLUE, 0)
foreground_color: rgba(Colors.ACCENT_BLUE)
canvas.after:
Color:
rgb: rgba(Colors.BLUE)
Line:
width: 2
rectangle: self.x, self.y, self.width, self.height
Widget:
size_hint_y: 0.02
####################### BT+ID ##################################
GridLayout:
cols: 2
size_hint: (.7, .2)
TextInput:
id: pagBT
pos_hint: {'x': 0.15}
multiline: False
font_size: min(self.width*0.3, self.height) * 0.6
hint_text: "Blood Type"
text: ""
background_color: rgba(*Colors.BLUE, 0)
foreground_color: rgba(Colors.ACCENT_BLUE)
canvas.after:
Color:
rgb: rgba(Colors.BLUE)
Line:
width: 2
rectangle: self.x, self.y, self.width, self.height
TextInput:
id: patID
pos_hint: {'x': 0.15}
multiline: False
font_size: min(self.width*0.3, self.height) * 0.6
hint_text: "Id Number"
text: ""
background_color: rgba(*Colors.BLUE, 0)
foreground_color: rgba(Colors.ACCENT_BLUE)
canvas.after:
Color:
rgb: rgba(Colors.BLUE)
Line:
width: 2
rectangle: self.x, self.y, self.width, self.height
Widget:
size_hint_y: 0.02
####################### Conditions ##################################
TextInput:
id: patMedCond
pos_hint: {'x': 0.15}
multiline: False
font_size: min(self.width*0.3, self.height) * 0.15
hint_text: "Medical Conditions"
text: ""
background_color: rgba(*Colors.BLUE, 0)
foreground_color: rgba(Colors.ACCENT_BLUE)
canvas.after:
Color:
rgb: rgba(Colors.BLUE)
Line:
width: 2
rectangle: self.x, self.y, self.width, self.height
Widget:
size_hint_y: 0.02
####################### Allergies ##################################
TextInput:
id: patAllergies
pos_hint: {'x': 0.15}
multiline: False
font_size: min(self.width*0.3, self.height) * 0.15
hint_text: "Allergies"
text: ""
background_color: rgba(*Colors.BLUE, 0)
foreground_color: rgba(Colors.ACCENT_BLUE)
canvas.after:
Color:
rgb: rgba(Colors.BLUE)
Line:
width: 2
rectangle: self.x, self.y, self.width, self.height
Widget:
size_hint_y: 0.02
####################### Medications ##################################
TextInput:
id: patMedication
pos_hint: {'x': 0.15}
multiline: False
font_size: min(self.width*0.3, self.height) * 0.15
hint_text: "Medications"
text: ""
background_color: rgba(*Colors.BLUE, 0)
foreground_color: rgba(Colors.ACCENT_BLUE)
canvas.after:
Color:
rgb: rgba(Colors.BLUE)
Line:
width: 2
rectangle: self.x, self.y, self.width, self.height
####################### Submit/Update ##################################
FloatLayout:
Button:
id: submit
pos_hint: {'center_x': 0.5, "top": 0.8 }
size_hint: (.6, .4)
text: "Submit"
font_size: min(self.width*0.3, self.height) * 0.6
color: rgba(Colors.BLUE)
background_normal: ''
background_color: rgba(Colors.LIGHT_BLUE)
# background_down: 'assets/orange_button_down.png'
on_release:
root.update_creds([patname, patage, patweight, patheight, pagBT, patID, patMedCond, patAllergies, patMedication])
canvas.before:
Color:
rgb: rgba(Colors.BLUE)
Line:
width: 3
rectangle: self.x, self.y, self.width, self.height