| 5 | | <mx:Canvas width="100%" height="44"> |
|---|
| 6 | | <mx:Button x="8" y="8" id="bStartStop" width="60" label="Start" click="bStartStop_ClickHandler(event)"/> |
|---|
| 7 | | <mx:Button x="76" y="8" id="bClear" label="Clear" click="bClear_ClickHandler(event)"/> |
|---|
| | 6 | <mx:Canvas width="100%" height="48"> |
|---|
| | 7 | <mx:Button x="8" y="8" id="bRecordStop" styleName="RecordStopIconBtn" toggle="true" toolTip="Record" click="bRecordStop_ClickHandler(event)"/> |
|---|
| | 8 | <mx:Label id="tElapseTime" x="48" y="15" text="00:00:00.000" styleName="TimeLabel"/> |
|---|
| | 9 | <mx:Button id="bClear" x="174" y="11" click="bClear_ClickHandler(event)" styleName="ClearIconBtn" toolTip="Clear record"/> |
|---|
| | 10 | <mx:Label x="210" y="14" text="Interval Time:" styleName="InfoLabel"/> |
|---|
| | 11 | <mx:Label id="tElapseMax" x="314" y="14" text="Max 00.000" click="tElapseMax_ClickHandler(event)" styleName="InfoLabel"/> |
|---|
| | 12 | <mx:Label id="tElapseMin" x="404" y="14" text="Min 00.000" click="tElapseMin_ClickHandler(event)" styleName="InfoLabel"/> |
|---|
| | 13 | <mx:Label id="tElapseAve" x="490" y="14" text="Ave 00.000" styleName="InfoLabel"/> |
|---|
| | 14 | <mx:Label id="tFPS" x="580" y="14" text="FPS: 000" styleName="InfoLabel"/> |
|---|
| | 15 | <mx:Button id="bInfo" right="12" y="11" click="bInfo_ClickHandler(event)" styleName="InfoIconBtn" toolTip="Show information"/> |
|---|
| | 16 | <mx:HRule y="47" width="100%" strokeWidth="1" strokeColor="#555555"/> |
|---|
| 9 | | <mx:HBox width="100%" height="100%"> |
|---|
| 10 | | <mx:VBox width="150" height="100%"> |
|---|
| 11 | | <mx:Canvas id="threadName" width="100%" height="100%" verticalScrollPolicy="off"/> |
|---|
| 12 | | <mx:HSlider width="150" height="20" id="hsScale" minimum="0.25" maximum="4" snapInterval="0.25" value="1.0" change="hsScale_ChangeHandler(event)"/> |
|---|
| 13 | | </mx:VBox> |
|---|
| 14 | | <mx:Canvas id="threadTime" width="100%" height="100%" verticalScrollPolicy="off"/> |
|---|
| 15 | | </mx:HBox> |
|---|
| | 18 | <mx:Canvas width="100%" height="100%"> |
|---|
| | 19 | <mx:HDividedBox width="100%" height="100%"> |
|---|
| | 20 | <mx:VBox id="vbThread" width="150" height="100%" minWidth="150"> |
|---|
| | 21 | <mx:Canvas width="100%" height="100%" verticalScrollPolicy="off" horizontalScrollPolicy="off"> |
|---|
| | 22 | <mx:Canvas id="threadName"/> |
|---|
| | 23 | </mx:Canvas> |
|---|
| | 24 | <mx:HBox width="100%" height="18" verticalAlign="center"> |
|---|
| | 25 | <!-- mx:Image source="@Embed('icons/ZoomMin.png')" left="8"/ --> |
|---|
| | 26 | <mx:HSlider width="{vbThread.width}" height="100%" id="hsScale" minimum="0.25" maximum="4" snapInterval="0.25" value="1.0" change="hsScale_ChangeHandler(event)"/> |
|---|
| | 27 | <!-- mx:Image source="@Embed('icons/ZoomMax.png')" right="8"/ --> |
|---|
| | 28 | </mx:HBox> |
|---|
| | 29 | </mx:VBox> |
|---|
| | 30 | <mx:Canvas id="threadTimeContainer" width="100%" height="100%" verticalScrollPolicy="off"> |
|---|
| | 31 | <mx:Canvas id="threadTime"/> |
|---|
| | 32 | </mx:Canvas> |
|---|
| | 33 | </mx:HDividedBox> |
|---|
| | 34 | </mx:Canvas> |
|---|