summaryrefslogtreecommitdiff
path: root/server/xml/macros/tonometri-1.0.xml
diff options
context:
space:
mode:
Diffstat (limited to 'server/xml/macros/tonometri-1.0.xml')
-rw-r--r--server/xml/macros/tonometri-1.0.xml172
1 files changed, 0 insertions, 172 deletions
diff --git a/server/xml/macros/tonometri-1.0.xml b/server/xml/macros/tonometri-1.0.xml
deleted file mode 100644
index 10e7bc2..0000000
--- a/server/xml/macros/tonometri-1.0.xml
+++ /dev/null
@@ -1,172 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<macro name="tonometri" version="1.0">
- <resume language="lua">
- out = ''
- if ( getValue('tonometri.mangler.odxt') == '' or getValue('tonometri.mangler.osin') == '' )
- then
- out = out .. getValue('tonometri.metode') .. ':\n'
- end
-
- if ( getValue('tonometri.mangler.odxt') == '' )
- then
- out = out .. 'o.dxt: ' .. getValue('tonometri.tryk.odxt') .. ' mmHg\n'
- end
-
- if ( getValue('tonometri.mangler.osin') == '' )
- then
- out = out .. 'o.sin: ' .. getValue('tonometri.tryk.osin') .. ' mmHg\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="lt80gt0">
- if(value == '')
- then
- return false
- end
-
- value = string.gsub(value, ',', '.')
- if(tonumber(value) &gt;= 0 and tonumber(value) &lt;= 80)
- 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
-
- if( getValue('tonometri.mangler.odxt') == 'mangler' and getValue('tonometri.mangler.osin') == 'mangler' )
- then
- disable('device_frame')
- else
- enable('device_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
-
- if( getValue('tonometri.mangler.odxt') == 'mangler' and getValue('tonometri.mangler.osin') == 'mangler' )
- then
- disable('device_frame')
- else
- enable('device_frame')
- end
-
- return true
- </script>
- </scripts>
- <widgets caption="Tonometri"
- layout="vbox">
-
- <frame layout="hbox">
-
- <!-- o.dxt -->
- <frame layout="vbox">
- <checkbox caption="Der er ikke målt på o.dxt"
- name="tonometri.mangler.odxt" script="right_eye"
- map="missing_eye_odxt_map"
- truevalue="mangler" falsevalue="" value=""/>
- <frame name="right_eye_frame" caption="o.dxt" layout="hbox">
- <label caption="Tryk:"/>
- <spacer/>
- <lineedit name="tonometri.tryk.odxt" regexp="\d{1,2}" script="lt80gt0" value=""/>
- <label caption="mmHg"/>
- <spacer/>
- </frame>
- </frame>
-
- <!-- o.sin -->
- <frame layout="vbox">
- <checkbox caption="Der er ikke målt på o.sin"
- name="tonometri.mangler.osin" script="left_eye"
- map="missing_eye_osin_map"
- truevalue="mangler" falsevalue="" value=""/>
- <frame name="left_eye_frame" caption="o.sin" layout="hbox">
- <label caption="Tryk:"/>
- <spacer/>
- <lineedit name="tonometri.tryk.osin" regexp="\d{1,2}" script="lt80gt0" value=""/>
- <label caption="mmHg"/>
- <spacer/>
- </frame>
- </frame>
-
- </frame>
-
- <frame name="device_frame" layout="vbox">
- <label caption="Tonometri foretaget med:"/>
- <combobox name="tonometri.metode" value="">
- <item caption="Lufttonometri" value="Lufttonometri"/>
- <item caption="Applanationstonometri" value="Applanationstonometri"/>
- <item caption="Eye Care tonometri" value="Eye Care tonometri"/>
- <item caption="Autotonometri" value="Autotonometri"/>
- <item caption="Palpatorisk teknik" value="Palpatorisk teknik"/>
- </combobox>
- </frame>
-
- <!-- Knapper -->
- <frame layout="hbox">
- <spacer />
- <button caption="Gem" action="commit"/>
- </frame>
- </widgets>
-</macro>