<?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. --> <!-- 20090402: Bent Bisballe Nyeng 'missing eye' tilføjet. --> <macro name="oct_maaling" version="1.0"> <resume language="lua"> out = '' if ( getValue('oct.right.missing') == '' or getValue('oct.left.missing') == '' ) then out = out .. 'Central nethindetykkelse:\n' if ( getValue('oct.right.missing') == '' ) then out = out .. 'OCT o.dxt ' .. getValue('oct.right.thickness') .. ' µm\n' end if ( getValue('oct.left.missing') == '' ) then out = out .. 'OCT o.sin ' .. getValue('oct.left.thickness') .. ' µm\n' end end return out </resume> <queries> <query service="pracro" class="missing_eye_right" ttl="1000000"/> <query service="pracro" class="missing_eye_left" ttl="1000000"/> </queries> <maps> <map name="missing_eye_right_map"> value = 0 timestamp = 0 source = '' if( missing_eye_right ) then if( missing_eye_right.value and missing_eye_right.value == '' ) then value = '' timestamp = missing_eye_right.timestamp source = missing_eye_right.source else value = 'mangler' timestamp = missing_eye_right.timestamp source = missing_eye_right.source end end return value, timestamp, source </map> <map name="missing_eye_left_map"> value = 0 timestamp = 0 source = '' if( missing_eye_left ) then if( missing_eye_left.value and missing_eye_left.value == '' ) then value = '' timestamp = missing_eye_left.timestamp source = missing_eye_left.source else value = 'mangler' timestamp = missing_eye_left.timestamp source = missing_eye_left.source end end return value, timestamp, source </map> </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> <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="OCT måling (B.2.2.4.1)" layout="vbox"> <frame layout="hbox"> <!-- Højre øje --> <frame layout="vbox"> <checkbox caption="Der er ikke målt på højre øje" name="oct.right.missing" script="right_eye" map="missing_eye_right_map" truevalue="mangler" falsevalue="" value=""/> <frame name="right_eye_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"/> </frame> </frame> <!-- Venstre øje --> <frame layout="vbox"> <checkbox caption="Der er ikke målt på venstre øje" name="oct.left.missing" script="left_eye" map="missing_eye_left_map" truevalue="mangler" falsevalue="" value=""/> <frame name="left_eye_frame" caption="Venstre øje" layout="hbox"> <label caption="Tykkelse:"/> <lineedit name="oct.left.thickness" regexp="\d{1,5}" script="lt10000gt0" value=""/> <label caption="µm"/> </frame> </frame> </frame> <!-- Knapper --> <frame layout="hbox"> <spacer /> <button caption="Gem" action="commit"/> </frame> </widgets> </macro>