blob: 83eb29c08874e389b3dc9be5024096ea966a63c4 (
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
|
<?xml version='1.0' encoding='UTF-8'?>
<macro name="tao_oftalmoskopi" version="1.0">
<resume language="lua">
out = ''
if ( getValue('tao_oftalmoskopi.odxt.mangler') == '' )
then
out = out .. 'Oftalmoskopi o.dxt viser ' .. getValue('tao_oftalmoskopi.odxt') .. '.\n'
end
if ( getValue('tao_oftalmoskopi.osin.mangler') == '' )
then
out = out .. 'Oftalmoskopi o.sin viser ' .. getValue('tao_oftalmoskopi.osin') .. '.\n'
end
return out
</resume>
<queries>
<query service="pracro" class="missing_eye_odxt" ttl="1000000"/>
<query service="pracro" class="missing_eye_osin" ttl="1000000"/>
</queries>
<maps>
<map name="missing_eye_odxt_map">
value = 0
timestamp = 0
source = ''
if( missing_eye_odxt )
then
if( missing_eye_odxt.value and missing_eye_odxt.value == '' )
then
value = ''
timestamp = missing_eye_odxt.timestamp
source = missing_eye_odxt.source
else
value = 'mangler'
timestamp = missing_eye_odxt.timestamp
source = missing_eye_odxt.source
end
end
return value, timestamp, source
</map>
<map name="missing_eye_osin_map">
value = 0
timestamp = 0
source = ''
if( missing_eye_osin )
then
if( missing_eye_osin.value and missing_eye_osin.value == '' )
then
value = ''
timestamp = missing_eye_osin.timestamp
source = missing_eye_osin.source
else
value = 'mangler'
timestamp = missing_eye_osin.timestamp
source = missing_eye_osin.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>
</scripts>
<widgets caption="TAO oftalmoskopi" layout="vbox">
<frame layout="hbox">
<!-- o.dxt -->
<frame layout="vbox">
<checkbox caption="Der er ikke målt på o.dxt"
name="tao_oftalmoskopi.odxt.mangler" script="right_eye"
map="missing_eye_odxt_map"
truevalue="mangler" falsevalue="" value=""/>
<frame name="right_eye_frame" caption="o.dxt" layout="vbox">
<label caption="Oftalmoskopi viser:"/>
<combobox name="tao_oftalmoskopi.odxt" value="">
<item caption="Normale forhold" value="normale forhold"/>
<item caption="Papilatrofi" value="papilatrofi"/>
<item caption="Papilødem" value="papilødem"/>
<item caption="Choroidale forhold" value="choroidale forhold"/>
</combobox>
</frame>
</frame>
<!-- o.sin -->
<frame layout="vbox">
<checkbox caption="Der er ikke målt på o.sin"
name="tao_oftalmoskopi.osin.mangler" script="left_eye"
map="missing_eye_osin_map"
truevalue="mangler" falsevalue="" value=""/>
<frame name="left_eye_frame" caption="o.sin" layout="vbox">
<label caption="Oftalmoskopi viser:"/>
<combobox name="tao_oftalmoskopi.osin" value="">
<item caption="Normale forhold" value="normale forhold"/>
<item caption="Papilatrofi" value="papilatrofi"/>
<item caption="Papilødem" value="papilødem"/>
<item caption="Choroidale forhold" value="choroidale forhold"/>
</combobox>
</frame>
</frame>
</frame>
<!-- Knapper -->
<frame layout="hbox">
<spacer />
<button caption="Gem" action="commit"/>
</frame>
</widgets>
</macro>
|