PhysicianMenu.mxml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:ViewStack
  3. xmlns:mx="http://www.adobe.com/2006/mxml"
  4. xmlns:acquire="com.imt.intimamedia.views.physician.acquire.*"
  5. xmlns:report="com.imt.intimamedia.views.physician.report.*"
  6. xmlns:measure="com.imt.intimamedia.views.physician.measure.*"
  7. xmlns:patient="com.imt.intimamedia.views.physician.patient.*"
  8. xmlns:credits="com.imt.intimamedia.views.physician.order.*"
  9. xmlns:profil="com.imt.intimamedia.views.physician.profil.*"
  10. change="updateTitle()"
  11. creationComplete="loadBrowserManager()"
  12. tabIndex="1"
  13. top="100" bottom="35" right="10" creationPolicy="all" width="100%" height="100%">
  14. <mx:Script source="../../scripts/menus/physicianMenu.as" />
  15. <patient:PatientView id="patient" label="{resourceManager.getString('labels', 'physicianPatient')}" width="100%" height="100%" hideEffect="WipeUp" showEffect="WipeDown" buttonMode="true" useHandCursor="true" />
  16. <acquire:AcquireView id="acquire" label="{resourceManager.getString('labels', 'physicianAcquire')}" width="100%" height="100%" hideEffect="WipeUp" showEffect="WipeDown" buttonMode="true" useHandCursor="true" enabled="{ApplicationModelLocator.getInstance().enabledAcquire}"/>
  17. <measure:GeneralMeasureView id="generalMeasure" label="{resourceManager.getString('labels', 'physicianMeasure')}" width="100%" height="100%" hideEffect="WipeUp" showEffect="WipeDown" buttonMode="true" useHandCursor="true" enabled="{ApplicationModelLocator.getInstance().enabledMeasure}" />
  18. <report:ReportView id="report" label="{resourceManager.getString('labels', 'physicianReport')}" width="100%" height="100%" hideEffect="WipeUp" showEffect="WipeDown" buttonMode="true" useHandCursor="true" enabled="{ApplicationModelLocator.getInstance().enabledReport}" show="typeReportRequest()" />
  19. <profil:ProfilView id="profil" label="{resourceManager.getString('labels', 'physicianHome')}" width="100%" height="100%" hideEffect="WipeUp" showEffect="WipeDown" buttonMode="true" useHandCursor="true" />
  20. <!--
  21. <credits:CreditsView id="order" label="{resourceManager.getString('labels', 'physicianOrder')}" width="100%" height="100%" hideEffect="WipeUp" showEffect="WipeDown"/>
  22. -->
  23. </mx:ViewStack>