blob: 229850ec53388553b548e66d51cde39673ae862e (
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
|
<?xml version='1.0' encoding='UTF-8'?>
<macro name="motilitet" version="1.0">
<resume language="lua">
out = ''
out = out .. 'Motilitetsundersøgelse viser ' .. getValue('motilitet')
if( getValue('motilitet') == 'dobbeltsyn i yderstilling' or getValue('motilitet') == 'dobbeltsyn i midterstilling, men ikke fikseret øje')
then
out = out .. ' svarende til trækretningen for ' .. getValue('motilitet.traekretning')
end
out = out .. '.\n'
return out
</resume>
<queries>
</queries>
<maps>
</maps>
<scripts>
<script language="lua" name="motilitet">
if(value == 'dobbeltsyn i yderstilling' or value == 'dobbeltsyn i midterstilling, men ikke fikseret øje')
then
enable('motilitet_frame')
else
disable('motilitet_frame')
end
return true
</script>
</scripts>
<widgets caption="Motilitet" layout="vbox">
<frame layout="vbox">
<frame layout="hbox">
<label caption="Motilitetsundersøgelse viser:"/>
<combobox name="motilitet" value="" script="motilitet">
<item caption="Intet dobbeltsyn" value="intet dobbeltsyn"/>
<item caption="Dobbeltsyn i yderstilling" value="dobbeltsyn i yderstilling"/>
<item caption="Dobbeltsyn i midterstilling, men ikke fikseret øje" value="dobbeltsyn i midterstilling, men ikke fikseret øje"/>
<item caption="Fikseret øje" value="fikseret øje"/>
</combobox>
</frame>
<frame name="motilitet_frame" layout="hbox">
<label caption="Svarende til trækretningen for:"/>
<combobox name="motilitet.traekretning" value="">
<item caption="m. rectus lateralis" value="m. rectus lateralis"/>
<item caption="m. rectus medialis" value="m. rectus medialis"/>
<item caption="m. rectus superior" value="m. rectus superior"/>
<item caption="m. rectus inferior" value="m. rectus inferior"/>
<item caption="m. obliquus superior" value="m. obliquus superior"/>
<item caption="m. obliquus inferior" value="m. obliquus inferior"/>
</combobox>
</frame>
</frame>
<!-- Knapper -->
<frame layout="hbox">
<spacer />
<button caption="Gem" action="commit"/>
</frame>
</widgets>
</macro>
|