<?xml version='1.0' encoding='UTF-8'?>
<macro name="topografi" version="1.0">
  <resume language="lua">
    out = ''
    if ( getValue('topografi.mangler.odxt') == '' or getValue('topografi.mangler.osin') == '' )
    then
      out = out .. 'Topografi, ' .. getValue('topografi.metode') .. ':\n'
    end

    if ( getValue('topografi.mangler.odxt') == '' )
    then
      out = out .. 'o.dxt: ' .. getValue('topografi.bedoemmelse.odxt') .. '\n'
    end

    if ( getValue('topografi.mangler.osin') == '' )
    then
      out = out .. 'o.sin: ' .. getValue('topografi.bedoemmelse.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
        else
          value = 'mangler'
          timestamp = missing_eye_odxt.timestamp
        end
      end
      return value, timestamp, source
    </map>
    <map name="missing_eye_osin_map">
      value = 0
      timestamp = 0
      source = 'pracro'
      
      if( missing_eye_osin )
      then
        if( missing_eye_osin.value and missing_eye_osin.value == '' )
        then
          value = ''
          timestamp = missing_eye_osin.timestamp
        else
          value = 'mangler'
          timestamp = missing_eye_osin.timestamp
        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="Topografi"
          layout="vbox">

    <label caption="Metode:"/>
    <altcombobox name="topografi.metode" value="Pentacam" layout="vbox">
      <item caption="Pentacam" value="Pentacam"/>
      <item caption="Atlas" value="Atlas"/>
      <item caption="Atlas og Pentacam" value="Atlas og Pentacam"/>
      <altitem caption="Andet" value="andet" innerwidget="topografi_andet">
	<frame layout="hbox">
	  <label caption="Andet:"/>
	  <lineedit name="topografi_andet"/>
	</frame>
      </altitem>
    </altcombobox>

    <frame layout="hbox">

      <!-- o.dxt -->
      <frame layout="vbox">
        <checkbox caption="Der er ikke målt på o.dxt"
		  name="topografi.mangler.odxt" script="right_eye"
		  map="missing_eye_odxt_map"
		  truevalue="mangler" falsevalue="" value=""/>
	<frame name="right_eye_frame" caption="o.dxt" layout="hbox">
	  
	  <frame layout="vbox">
	    <altcombobox name="topografi.bedoemmelse.odxt" layout="vbox">
	      <item caption="Symmetrisk cornea" value="Symmetrisk cornea"/>
	      <item caption="Regelmæssig astigmatisme" value="Regelmæssig astigmatisme"/>
	      <item caption="Uregelmæssig astigmatisme" value="Uregelmæssig astigmatisme"/>
	      <item caption="Keratoconus" value="Keratoconus"/>
	      <item caption="Centreret ablationer" value="Centreret ablationer"/>
	      <item caption="Decentreret ablationer" value="Decentreret ablationer"/>
	      <altitem caption="Andet" value="andet" innerwidget="topografi.andet.odxt">
		<frame layout="hbox">
		  <label caption="Andet:"/>
		  <lineedit name="topografi.andet.odxt"/>
		</frame>
	      </altitem>
	    </altcombobox>
	  </frame>

	</frame>
      </frame>
      
      <!-- o.sin -->
      <frame layout="vbox">
	<checkbox caption="Der er ikke målt på o.sin"
		  name="topografi.mangler.osin" script="left_eye"
		  map="missing_eye_osin_map"
		  truevalue="mangler" falsevalue="" value=""/>
	<frame name="left_eye_frame" caption="o.sin" layout="hbox">

	  <frame layout="vbox">
	    <altcombobox name="topografi.bedoemmelse.osin" layout="vbox">
	      <item caption="Symmetrisk cornea" value="Symmetrisk cornea"/>
	      <item caption="Regelmæssig astigmatisme" value="Regelmæssig astigmatisme"/>
	      <item caption="Uregelmæssig astigmatisme" value="Uregelmæssig astigmatisme"/>
	      <item caption="Keratoconus" value="Keratoconus"/>
	      <item caption="Centreret ablationer" value="Centreret ablationer"/>
	      <item caption="Decentreret ablationer" value="Decentreret ablationer"/>
	      <altitem caption="Andet" value="andet" innerwidget="topografi.andet.osin">
		<frame layout="hbox">
		  <label caption="Andet:"/>
		  <lineedit name="topografi.andet.osin"/>
		</frame>
	      </altitem>
	    </altcombobox>
	  </frame>

	</frame>
      </frame>

    </frame>

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