| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?xml version="1.0" encoding="utf-8"?>
- <mx:ViewStack
- xmlns:mx="http://www.adobe.com/2006/mxml"
- xmlns:acquire="com.imt.intimamedia.views.physician.acquire.*"
- xmlns:report="com.imt.intimamedia.views.physician.report.*"
- xmlns:measure="com.imt.intimamedia.views.physician.measure.*"
- xmlns:patient="com.imt.intimamedia.views.physician.patient.*"
- xmlns:credits="com.imt.intimamedia.views.physician.order.*"
- xmlns:profil="com.imt.intimamedia.views.physician.profil.*"
- change="updateTitle()"
- creationComplete="loadBrowserManager()"
- tabIndex="1"
- top="100" bottom="35" right="10" creationPolicy="all" width="100%" height="100%">
- <mx:Script source="../../scripts/menus/physicianMenu.as" />
-
- <patient:PatientView id="patient" label="{resourceManager.getString('labels', 'physicianPatient')}" width="100%" height="100%" hideEffect="WipeUp" showEffect="WipeDown" buttonMode="true" useHandCursor="true" />
-
- <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}"/>
-
- <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}" />
-
- <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()" />
-
- <profil:ProfilView id="profil" label="{resourceManager.getString('labels', 'physicianHome')}" width="100%" height="100%" hideEffect="WipeUp" showEffect="WipeDown" buttonMode="true" useHandCursor="true" />
- <!--
- <credits:CreditsView id="order" label="{resourceManager.getString('labels', 'physicianOrder')}" width="100%" height="100%" hideEffect="WipeUp" showEffect="WipeDown"/>
- -->
- </mx:ViewStack>
|