チェンジセット 3464
- コミット日時:
- 2010/02/27 15:01:16 (3 年前)
- ファイル:
-
- as3/gunyarapaint/branches/gunyarapaint/air/.project (更新) (2 diffs)
- as3/gunyarapaint/branches/gunyarapaint/air/src/ApplicationDelegate-app.xml (更新) (1 diff)
- as3/gunyarapaint/branches/gunyarapaint/air/src/ApplicationDelegate.mxml (更新) (2 diffs)
- as3/gunyarapaint/branches/gunyarapaint/air/src/PlayerDelegate-app.xml (更新) (1 diff)
- as3/gunyarapaint/branches/gunyarapaint/air/src/org/libspark/gunyarapaint/framework/components/BrushesController.mxml (更新) (3 diffs)
- as3/gunyarapaint/branches/gunyarapaint/air/src/org/libspark/gunyarapaint/framework/components/CanvasController.mxml (更新) (3 diffs)
- as3/gunyarapaint/branches/gunyarapaint/air/src/org/libspark/gunyarapaint/framework/components/DrawableCanvas.mxml (更新) (1 diff)
- as3/gunyarapaint/branches/gunyarapaint/air/src/org/libspark/gunyarapaint/framework/components/FormController.mxml (更新) (2 diffs)
- as3/gunyarapaint/branches/gunyarapaint/air/src/org/libspark/gunyarapaint/framework/components/LayersController.mxml (更新) (4 diffs)
- as3/gunyarapaint/branches/gunyarapaint/air/src/org/libspark/gunyarapaint/framework/components/UtilitiesController.mxml (更新) (3 diffs)
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/gunyarapaint/branches/gunyarapaint/air/.project
r3462 r3464 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <projectDescription> 3 3 <name>air</name> 4 <comment />4 <comment></comment> 5 5 <projects> 6 <project>framework</project> 6 7 </projects> 7 8 <buildSpec> … … 23 24 </natures> 24 25 </projectDescription> 25 as3/gunyarapaint/branches/gunyarapaint/air/src/ApplicationDelegate-app.xml
r3255 r3464 4 4 <filename>ApplicationDelegate</filename> 5 5 <name>ApplicationDelegate</name> 6 <version> v1</version>6 <version>0.0.1</version> 7 7 <initialWindow> 8 8 <content></content> 9 <title>ぐにゃらペインター</title> 10 <systemChrome>standard</systemChrome> 11 <minimizable>true</minimizable> 12 <maximizable>true</maximizable> 13 <resizable>true</resizable> 9 14 <width>960</width> 10 15 <height>720</height> as3/gunyarapaint/branches/gunyarapaint/air/src/ApplicationDelegate.mxml
r3462 r3464 6 6 xmlns:my="org.libspark.gunyarapaint.components.halo.*" 7 7 preinitialize="init()" width="960" height="720" 8 implements="org.libspark.gunyarapaint. components.IDelegate"9 xmlns:components="org.libspark.gunyarapaint. components.*">8 implements="org.libspark.gunyarapaint.framework.components.IDelegate" 9 xmlns:components="org.libspark.gunyarapaint.framework.components.*"> 10 10 <!-- 11 11 layout="absolute" … … 82 82 <components:UtilitiesController id="utilitiesController" x="677.95" y="9.8" delegate="{this}"/> 83 83 <components:BrushesController id="brushesController" x="9.95" y="237.2" delegate="{this}"/> 84 <components:CanvasController id="canvasController" x="230" y="209" width="400" height="400" borderColor="#000000" borderWeight="1"delegate="{this}"/>84 <components:CanvasController id="canvasController" x="230" y="209" width="400" height="400" delegate="{this}"/> 85 85 <components:LayersController x="804.2" y="237.65" id="layers" delegate="{this}"/> 86 86 <s:Label text="ver.2009090902" right="10" bottom="10" alpha="0.5"/> as3/gunyarapaint/branches/gunyarapaint/air/src/PlayerDelegate-app.xml
r3255 r3464 1 1 <?xml version="1.0" encoding="utf-8" standalone="no"?> 2 2 <application xmlns="http://ns.adobe.com/air/application/1.5.2"> 3 <id>org.libspark. hkrn.painter</id>4 <filename>Player </filename>5 <name>Player </name>3 <id>org.libspark.gunyarapaint.PlayerDelegate</id> 4 <filename>PlayerDelegate</filename> 5 <name>PlayerDelegate</name> 6 6 <version>0.0.1</version> 7 7 <initialWindow> 8 <content> [This value will be overwritten by Flash Builder in the output app.xml]</content>9 <title> Player</title>8 <content></content> 9 <title>ぐにゃらペイントプレイヤー</title> 10 10 <systemChrome>standard</systemChrome> 11 11 <minimizable>true</minimizable> as3/gunyarapaint/branches/gunyarapaint/air/src/org/libspark/gunyarapaint/framework/components/BrushesController.mxml
r3270 r3464 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <s: Border2 <s:Panel 3 3 xmlns:fx="http://ns.adobe.com/mxml/2009" 4 4 xmlns:s="library://ns.adobe.com/flex/spark" 5 5 xmlns:mx="library://ns.adobe.com/flex/halo" 6 borderColor="#000000" 7 borderWeight="1" 8 width="160" height="450" initialize="init(event)" currentState="default"> 6 width="160" height="450" initialize="init(event)" currentState="default" title="パレット"> 9 7 <fx:Script> 10 8 <
