blob: 12ef584a79cfdb8b2c32afdb29c039128f567181 (
plain)
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
|
<?xml version='1.0' encoding='UTF-8'?>
<macro name="central_corneatykkelse" version="1.0">
<resume language="lua">
out = ''
if ( getValue('central_corneatykkelse.odxt.missing') == '' or getValue('central_corneatykkelse.osin.missing') == '' )
then
out = out .. 'Central corneatykkelse, ' .. getValue('central_corneatykkelse.method') .. ':\n'
end
if ( getValue('central_corneatykkelse.odxt.missing') == '' )
then
out = out .. 'o.dxt: ' .. getValue('central_corneatykkelse.odxt.thickness') .. ' mm\n'
end
if ( getValue('central_corneatykkelse.osin.missing') == '' )
then
out = out .. 'o.sin: ' .. getValue('central_corneatykkelse.osin.thickness') .. ' mm\n'
end
return out
</resume>
<queries>
</queries>
<maps>
<map name="missing_eye_right_map">
value = 0
timestamp = 0
source = ''
if( missing_eye_right )
then
if( missing_eye_right.value and missing_eye_right.value == '' )
then
value = ''
timestamp = missing_eye_right.timestamp
source = missing_eye_right.source
else
value = 'mangler'
timestamp = missing_eye_right.timestamp
source = missing_eye_right.source
end
end
return value, timestamp, source
</map>
<map name="missing_eye_left_map">
value = 0
timestamp = 0
source = ''
if( missing_eye_left )
then
if( missing_eye_left.value and missing_eye_left.value == '' )
then
value = ''
timestamp = missing_eye_left.timestamp
source = missing_eye_left.source
else
value = 'mangler'
timestamp = missing_eye_left.timestamp
source = missing_eye_left.source
end
end
return value, timestamp, source
</map>
</maps>
<scripts>
<script language="lua" name="right_eye">
if ( value == 'mangler' )
then
disable('right_eye_frame')
else
enable('right_eye_frame')
end
return true
</script>
<script language="lua" name="left_eye">
if ( value == 'mangler' )
then
disable('left_eye_frame')
else
enable('left_eye_frame')
end
return true
</script>
<script language="lua" name="lt1gt0">
if(value == '')
then
return false
end
value = string.gsub(value, ',', '.')
if(tonumber(value) >= 0 and tonumber(value) <= 1)
then
return true
else
return false
end
</script>
</scripts>
<widgets caption="Central corneatykkelse"
layout="vbox">
<frame layout="hbox">
<!-- o.dxt -->
<frame layout="vbox">
<checkbox caption="Der er ikke målt på o.dxt"
name="central_corneatykkelse.odxt.missing" script="right_eye"
map="missing_eye_right_map"
truevalue="mangler" falsevalue="" value=""/>
<frame name="right_eye_frame" caption="o.dxt" layout="hbox">
<frame layout="vbox">
<label caption="Tykkelse:"/>
<frame layout="hbox">
<lineedit name="central_corneatykkelse.odxt.thickness" script="lt1gt0"
regexp="\d{1},\d{3}" value=""/>
<label caption="mm"/>
</frame>
</frame>
</frame>
</frame>
<!-- o.sin -->
<frame layout="vbox">
<checkbox caption="Der er ikke målt på o.sin"
name="central_corneatykkelse.osin.missing" script="left_eye"
map="missing_eye_left_map"
truevalue="mangler" falsevalue="" value=""/>
<frame name="left_eye_frame" caption="o.sin" layout="hbox">
<frame layout="vbox">
<label caption="Tykkelse:"/>
<frame layout="hbox">
<lineedit name="central_corneatykkelse.osin.thickness" script="lt1gt0"
regexp="\d{1},\d{3}" value=""/>
<label caption="mm"/>
</frame>
</frame>
</frame>
</frame>
</frame>
<frame name="device_frame" layout="vbox">
<label caption="Undersøgelse foretaget med:"/>
<combobox name="central_corneatykkelse.method" value="">
<item caption="Automatisk CCT" value="Automatisk CCT"/>
<item caption="Pentacam" value="Pentacam"/>
<item caption="Optisk pachymetri" value="Optisk pachymetri"/>
</combobox>
</frame>
<!-- Knapper -->
<frame layout="hbox">
<spacer />
<button caption="Gem" action="commit"/>
</frame>
</widgets>
</macro>
|