diff options
Diffstat (limited to 'server/xml')
| -rw-r--r-- | server/xml/macros/tao_oftalmoskopi-1.0.xml | 132 | 
1 files changed, 132 insertions, 0 deletions
| diff --git a/server/xml/macros/tao_oftalmoskopi-1.0.xml b/server/xml/macros/tao_oftalmoskopi-1.0.xml new file mode 100644 index 0000000..83eb29c --- /dev/null +++ b/server/xml/macros/tao_oftalmoskopi-1.0.xml @@ -0,0 +1,132 @@ +<?xml version='1.0' encoding='UTF-8'?> +<macro name="tao_oftalmoskopi" version="1.0"> +  <resume language="lua"> +    out = '' + +    if ( getValue('tao_oftalmoskopi.odxt.mangler') == '' ) +    then +      out = out .. 'Oftalmoskopi o.dxt viser ' .. getValue('tao_oftalmoskopi.odxt') .. '.\n' +    end + +    if ( getValue('tao_oftalmoskopi.osin.mangler') == '' ) +    then +      out = out .. 'Oftalmoskopi o.sin viser ' .. getValue('tao_oftalmoskopi.osin') .. '.\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="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="TAO oftalmoskopi" layout="vbox"> + +    <frame layout="hbox"> +     +      <!-- o.dxt --> +      <frame layout="vbox"> +	<checkbox caption="Der er ikke målt på o.dxt" +		  name="tao_oftalmoskopi.odxt.mangler" script="right_eye" +		  map="missing_eye_odxt_map" +		  truevalue="mangler" falsevalue="" value=""/> +	<frame name="right_eye_frame" caption="o.dxt" layout="vbox"> +	  <label caption="Oftalmoskopi viser:"/> +	  <combobox name="tao_oftalmoskopi.odxt" value=""> +	    <item caption="Normale forhold" value="normale forhold"/> +	    <item caption="Papilatrofi" value="papilatrofi"/> +	    <item caption="Papilødem" value="papilødem"/> +	    <item caption="Choroidale forhold" value="choroidale forhold"/> +	  </combobox> +	</frame> +      </frame> + +      <!-- o.sin --> +      <frame layout="vbox"> +	<checkbox caption="Der er ikke målt på o.sin" +		  name="tao_oftalmoskopi.osin.mangler" script="left_eye" +		  map="missing_eye_osin_map" +		  truevalue="mangler" falsevalue="" value=""/> +	<frame name="left_eye_frame" caption="o.sin" layout="vbox"> +	  <label caption="Oftalmoskopi viser:"/> +	  <combobox name="tao_oftalmoskopi.osin" value=""> +	    <item caption="Normale forhold" value="normale forhold"/> +	    <item caption="Papilatrofi" value="papilatrofi"/> +	    <item caption="Papilødem" value="papilødem"/> +	    <item caption="Choroidale forhold" value="choroidale forhold"/> +	  </combobox> +	</frame> +      </frame> +       +    </frame> +     +    <!-- Knapper --> +    <frame layout="hbox"> +      <spacer /> +      <button caption="Gem" action="commit"/> +    </frame> +  </widgets> +</macro> | 
