summaryrefslogtreecommitdiff
path: root/server/xml/macros/boelgefront-1.0.xml
blob: 32a75d4a9867350dd2bf21c7aaf6f4061d338988 (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
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
<?xml version='1.0' encoding='UTF-8'?>
<macro name="boelgefront" version="1.0">
  <resume language="lua">
    out = ''
    if ( getValue('boelgefront.mangler.odxt') == '' or getValue('boelgefront.mangler.osin') == '' )
    then

    if ( getValue('boelgefront.mangler.odxt') == '' )
    then
      out = out .. 'Bølgefront o.dxt: ' .. getValue('boelgefront.odxt') .. '\n'
      if ( getValue('boelgefront.odxt') == 'Udført' )
      then
        out = out .. 'Aberration: ' .. getValue('boelgefront.aberration.odxt') .. ' my HOA\n'
        out = out .. 'Pupilstørrelse: ' .. getValue('boelgefront.pupilstoerrelse.odxt') .. ' mm\n'
      end
      if ( getValue('boelgefront.mangler.osin') == '' )
      then
        out = out .. '\n'
      end
    end

    if ( getValue('boelgefront.mangler.osin') == '' )
    then
      out = out .. 'Bølgefront o.sin: ' .. getValue('boelgefront.osin') .. '\n'
      if ( getValue('boelgefront.osin') == 'Udført' )
      then
        out = out .. 'Aberration: ' .. getValue('boelgefront.aberration.osin') .. ' my HOA\n'
        out = out .. 'Pupilstørrelse: ' .. getValue('boelgefront.pupilstoerrelse.osin') .. ' mm\n'
      end
    end

    end
    return out
  </resume>
  <queries>
  </queries>
  <maps>
  </maps>
  <scripts>
    <script language="lua" name="extras_check.odxt">
      if ( getValue('boelgefront.odxt') == 'Udført' )
      then
        enable('extras.odxt')
      else
        disable('extras.odxt')
      end
      return true
    </script>
    <script language="lua" name="extras_check.osin">
      if ( getValue('boelgefront.osin') == 'Udført' )
      then
        enable('extras.osin')
      else
        disable('extras.osin')
      end
      return true
    </script>
    <script language="lua" name="gt0.1lt0.5">
      if(value == '')
      then
        return false
      end
      
      value = string.gsub(value, ',', '.')
      if(tonumber(value) &gt;= 0.1 and tonumber(value) &lt;= 0.5)
      then
        return true
      else
        return false
      end
    </script>
    <script language="lua" name="gt2lt9">
      if(value == '')
      then
        return false
      end

      value = string.gsub(value, ',', '.')
      if(tonumber(value) &gt;= 2 and tonumber(value) &lt;= 9)
      then
        return true
      else
        return false
      end
    </script>
    <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="Bølgefront" layout="vbox">
    <frame layout="hbox">

      <!-- o.dxt -->
      <frame layout="vbox">
	<checkbox caption="Der er ikke målt på o.dxt"
		  name="boelgefront.mangler.odxt" script="left_eye"
		  map="missing_eye_odxt_map"
		  truevalue="mangler" falsevalue="" value=""/>
	<frame name="left_eye_frame" caption="o.dxt" layout="vbox">
	  <altcombobox name="boelgefront.odxt" value="Ikke udført" layout="vbox" script="extras_check.odxt">
	    <item caption="Udført" value="Udført"/>
	    <item caption="Ikke udført" value="Ikke udført"/>
	    <altitem caption="Andet" value="andet" innerwidget="boelgefront.andet.odxt">
	      <frame layout="hbox">
		<label caption="Andet:"/>
		<lineedit name="boelgefront.andet.odxt"/>
	      </frame>
	    </altitem>
	  </altcombobox>
	  <frame name="extras.odxt" layout="hbox">
	    <frame layout="vbox">
	      <label caption="Aberration:"/>
	      <label caption="Pupilstørrelse:"/>
	    </frame>
	    <frame layout="vbox">
	      <lineedit name="boelgefront.aberration.odxt" script="gt0.1lt0.5" regexp="\d{1,2},\d{2}"/>
	      <lineedit name="boelgefront.pupilstoerrelse.odxt" script="gt2lt9" regexp="\d{1,2},\d{1}"/>
	    </frame>
	    <frame layout="vbox">
	      <label caption="my HOA"/>
	      <label caption="mm"/>
	    </frame>
	    <spacer/>
	  </frame>
	</frame>
      </frame>

      <!-- o.sin -->
      <frame layout="vbox">
	<checkbox caption="Der er ikke målt på o.sin"
		  name="boelgefront.mangler.osin" script="right_eye"
		  map="missing_eye_odxt_map"
		  truevalue="mangler" falsevalue="" value=""/>
	<frame name="right_eye_frame" caption="o.sin" layout="vbox">
	  <altcombobox name="boelgefront.osin" value="Ikke udført" layout="vbox" script="extras_check.osin">
	    <item caption="Udført" value="Udført"/>
	    <item caption="Ikke udført" value="Ikke udført"/>
	    <altitem caption="Andet" value="andet" innerwidget="boelgefront.andet.osin">
	      <frame layout="hbox">
		<label caption="Andet:"/>
		<lineedit name="boelgefront.andet.osin"/>
	      </frame>
	    </altitem>
	  </altcombobox>
	  <frame name="extras.osin" layout="hbox">
	    <frame layout="vbox">
	      <label caption="Aberration:"/>
	      <label caption="Pupilstørrelse:"/>
	    </frame>
	    <frame layout="vbox">
	      <lineedit name="boelgefront.aberration.osin" script="gt0.1lt0.5" regexp="\d{1,2},\d{2}"/>
	      <lineedit name="boelgefront.pupilstoerrelse.osin" script="gt2lt9" regexp="\d{1,2},\d{1}"/>
	    </frame>
	    <frame layout="vbox">
	      <label caption="my HOA"/>
	      <label caption="mm"/>
	    </frame>
	    <spacer/>
	  </frame>
	</frame>
      </frame>
    </frame>

    <frame layout="hbox">
      <spacer/>
      <button caption="Gem" action="commit"/>
    </frame>

  </widgets>
</macro>