root/as3/gunyarapaint/trunk/gunyarapaint/src/gunyarapaint.mxml

リビジョン 1104, 2.0 kB (コミッタ: tasuku, コミット時期: 5 年 前)

r55@poppop (orig r54): tasuku | 2008-05-31 22:29:58 +0900

  • added color picker
  • added pen detail dialog
  • changable pixel hinting
  • and so on... but now debugging...
Line 
1 <?xml version="1.0" encoding="utf-8"?>
2 <mx:Application
3   xmlns:mx="http://www.adobe.com/2006/mxml"
4   xmlns:gpcontrol="gunyarapaint.controls.*"
5   layout="absolute" width="736" height="662"
6   creationComplete="init()"
7   borderStyle="solid" cornerRadius="0" borderColor="#333333"
8   backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#F0F0F0, #D0D0D0]"
9   alpha="1.0">
10   <mx:Script source="gunyarapaint.as">
11   </mx:Script>
12   <mx:Canvas id="toolCanvas" x="0" y="0" width="719" height="102">
13     <mx:Label id="versionLabel" x="238" y="9" text="ver.2008050601"/>
14     <mx:Label x="28" y="7" text="名前"/>
15     <mx:TextInput id="fromTextInput" x="55" y="3" maxChars="32" fontSize="14"/>
16     <mx:Label x="10" y="51" text="書き込み"/>
17     <mx:TextArea id="messageTextArea" x="55" y="33" width="406" height="61" fontSize="14">
18       <mx:text></mx:text>
19     </mx:TextArea>
20     <mx:Label x="469" y="76" text="キャンバスの角度"/>
21     <mx:HSlider id="canvasRotate" x="558" y="76" width="152" minimum="-180" maximum="180" snapInterval="5" value="0" />
22     <mx:Label x="517" y="12" text="補助線"/>
23     <mx:NumericStepper id="additionalNumberStepper" x="555" y="10" value="4" minimum="2" maximum="10" stepSize="1"/>
24     <mx:CheckBox id="additionalBoxCheckBox" x="621" y="10" label="縦横"/>
25     <mx:CheckBox id="additionalSkewCheckBox" x="674" y="10" label="斜め"/>
26     <mx:Button id="postOekakiButton" x="353" y="7" label="お絵カキコする!" fillAlphas="[1.0, 1.0, 1.0, 1.0]" fillColors="[#FFFFFF, #FF9999, #FFFFFF, #FFCCCC]" enabled="false"/>
27     <mx:Button id="undoButton" x="469" y="49" label="アンドゥ" enabled="false" paddingLeft="3" paddingRight="3"/>
28     <mx:Button id="redoButton" x="573" y="49" label="リドゥ" enabled="false" paddingLeft="3" paddingRight="3"/>
29   </mx:Canvas>
30   <mx:Canvas id="canvas" width="400" height="300" x="255" y="288">
31   </mx:Canvas>
32   <gpcontrol:PenDetailControl id="penDetail" x="8" y="129">
33   </gpcontrol:PenDetailControl>
34 </mx:Application>
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。