blob: 1de45ea7196e4d703f7793ff4f6d5bb01e55e26d (
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
|
<?xml version='1.0' encoding='UTF-8'?>
<!--
20081204: Bent Bisballe Nyeng
Feltnavnene ændret så de giver mening.
-->
<!--
20090108: Bent Bisballe Nyeng
Højre/venstre byttet om.
-->
<macro name="B.2.2.4.2" version="1.0">
<resume>Central nethindetykkelse, højre: ${oct.right.thickness} µm, ${oct.right.description}.
Central nethindetykkelse, venstre: ${oct.left.thickness} µm, ${oct.left.description}.</resume>
<queries>
</queries>
<maps>
</maps>
<scripts>
<script language="lua" name="lt10000gt0">
value = string.gsub(value, ',', '.')
if(tonumber(value) >= 0 and tonumber(value) <= 10000)
then
return true
else
return false
end
</script>
</scripts>
<window caption="OCT, m. konklusion (B.2.2.4.2)"
layout="vbox">
<frame layout="hbox">
<!-- Højre øje -->
<frame caption="Højre øje" layout="hbox">
<label caption="Tykkelse:"/>
<lineedit name="oct.right.thickness" regexp="\d{1,5}" script="lt10000gt0" value=""/>
<label caption="µm"/>
<combobox name="oct.right.description" type="select" value="">
<item caption="Pigmentepitelløsning" value="pigmentepitelløsning"/>
<item caption="Serøs amotio" value="serøs amotio"/>
<item caption="Cystoidt makulært ødem" value="cystoidt makulært ødem"/>
<item caption="Subretinal udfyldning" value="subretinal udfyldning"/>
<item caption="Retinal traktion" value="retinal traktion"/>
<item caption="Normal" value="normal"/>
</combobox>
</frame>
<!-- Venstre øje -->
<frame caption="Venstre øje" layout="hbox">
<label caption="Tykkelse:"/>
<lineedit name="oct.left.thickness" regexp="\d{1,5}" script="lt10000gt0" value=""/>
<label caption="µm"/>
<combobox name="oct.left.description" type="select" value="">
<item caption="Pigmentepitelløsning" value="pigmentepitelløsning"/>
<item caption="Serøs amotio" value="serøs amotio"/>
<item caption="Cystoidt makulært ødem" value="cystoidt makulært ødem"/>
<item caption="Subretinal udfyldning" value="subretinal udfyldning"/>
<item caption="Retinal traktion" value="retinal traktion"/>
<item caption="Normal" value="normal"/>
</combobox>
</frame>
</frame>
<frame layout="vbox">
<label caption="Kommentarer:"/>
<lineedit name="oct.comments" value=""/>
</frame>
<!-- Knapper -->
<frame layout="hbox">
<spacer />
<button caption="Gem" action="commit"/>
</frame>
</window>
</macro>
|