Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /NNDDv2/trunk/src/VideoInfoView.mxml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 499 - (hide annotations) (download)
Sat Apr 30 10:19:08 2011 UTC (12 years, 11 months ago) by mineap
File size: 33180 byte(s)
ネイティブインストーラ向けの自動アップデート機能を実装
1 mineap 361 <?xml version="1.0" encoding="utf-8"?>
2    
3     <!-- VideoInfoView.mxml -->
4     <!-- Copyright (c) 2008-2009 MAP - MineApplicationProject. All Rights Reserved. -->
5    
6 mineap 499 <mx:Window xmlns:mx="http://www.adobe.com/2006/mxml"
7     xmlns:ns1="*"
8     xmlns:view="org.mineap.nndd.view.*"
9     width="400" height="580" minWidth="300" minHeight="300"
10     activate="window1_activateHandler(event)" backgroundColor="#FFFFFF"
11     closing="windowClosing(event)" horizontalScrollPolicy="off" layout="absolute"
12     title="Info" verticalScrollPolicy="off" windowComplete="windowCompleteHandler()"
13     windowMove="windowMove(event)" windowResize="windowResized(event)">
14 mineap 361
15     <mx:Script>
16     <![CDATA[
17 mineap 490 import flash.net.navigateToURL;
18    
19 mineap 361 import mx.events.DropdownEvent;
20     import mx.events.IndexChangedEvent;
21    
22 mineap 383 import org.mineap.nndd.player.comment.Comments;
23 mineap 361
24     private var thumbImgMenu:ContextMenu;
25     private var thumbImgMenuItem1:ContextMenuItem;
26     private var thumbImgMenuItem2:ContextMenuItem;
27     private var thumbImgMenuItem3:ContextMenuItem;
28     private var thumbImgMenuItem4:ContextMenuItem;
29     private var thumbImgMenuItem5:ContextMenuItem;
30    
31     protected function window1_activateHandler(event:Event):void
32     {
33     Mouse.show();
34     }
35    
36     protected function image_thumbImg_creationCompleteHandler(event:FlexEvent):void
37     {
38     thumbImgMenu = new ContextMenu();
39    
40     thumbImgMenuItem1 = new ContextMenuItem(Message.L_OPEN_DEFAULT_WEB_BROWSER);
41     thumbImgMenuItem1.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, button_goToWebClicked);
42    
43     thumbImgMenuItem2 = new ContextMenuItem(Message.L_TWEET, true);
44     thumbImgMenuItem2.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, tweet);
45    
46     thumbImgMenuItem3 = new ContextMenuItem(Message.L_ADD_HATENA_BOOKMARK, true);
47     thumbImgMenuItem3.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, addHatenaBookmark);
48    
49     thumbImgMenuItem4 = new ContextMenuItem(Message.L_OPEN_NICOSOUND, true);
50     thumbImgMenuItem4.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, openNicoSound);
51    
52     thumbImgMenuItem5 = new ContextMenuItem(Message.L_OPEN_NICOMIMI, false)
53     thumbImgMenuItem5.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, openNicomimi);
54    
55     thumbImgMenu.customItems.push(thumbImgMenuItem1, thumbImgMenuItem2, thumbImgMenuItem3, thumbImgMenuItem4, thumbImgMenuItem5);
56    
57     image_thumbImg.contextMenu = thumbImgMenu;
58    
59     }
60    
61    
62     protected function checkbox_showHtml_rollOverHandler(event:MouseEvent):void
63     {
64     checkbox_showHtml.alpha = 1.0;
65     }
66    
67    
68     protected function checkbox_showHtml_rollOutHandler(event:MouseEvent):void
69     {
70     checkbox_showHtml.alpha = 0.3;
71     }
72    
73    
74     protected function checkbox_showHtml_changeHandler(event:Event):void
75     {
76    
77     isShowHTMLOwnerComment = checkbox_showHtml.selected;
78    
79     //���������������������������
80     var str:String = owner_text_temp;
81     owner_text_temp = owner_text_nico;
82     owner_text_nico = str;
83     }
84    
85    
86     protected function checkbox_showHtml_creationCompleteHandler(event:FlexEvent):void
87     {
88     checkbox_showHtml.setConstraintValue("backgroundColor", new int("0x000000"));
89    
90     }
91    
92    
93     protected function comboBox_mylist_closeHandler(event:DropdownEvent):void
94     {
95     var index:int = comboBox_mylist.selectedIndex;
96     if(index != -1){
97     ConfigManager.getInstance().setItem("infoViewSelectedMyListIndex", index);
98     }
99     }
100    
101    
102     protected function button_videoOpen_clickHandler(event:MouseEvent):void
103     {
104     if(videoPlayer != null){
105     videoPlayer.fileOpen();
106     }
107     }
108    
109    
110     protected function button_oldComment_reload_clickHandler(event:MouseEvent):void
111     {
112     reloadOldComment();
113     }
114    
115     public function reloadOldComment():void{
116     playerController.reloadLocalComment(this.oldCommentDate);
117     }
118    
119     public function get oldCommentDate():Date{
120     var date:Date = null;
121     if(dateField_oldComment == null){
122     date = null;
123     }else{
124     date = dateField_oldComment.selectedDate;
125     date.hours = numericStepper_hour_oldComment.value;
126     date.minutes = numericStepper_min_oldComment.value;
127     }
128     return date;
129     }
130    
131     public function resetOldCommentDate():void{
132     var date:Date = new Date();
133     if(dateField_oldComment != null){
134     dateField_oldComment.selectedDate = date;
135     numericStepper_hour_oldComment.value = date.hours;
136     numericStepper_min_oldComment.value = date.minutes;
137     }
138     }
139    
140     protected function dataGrid_oldComment_creationCompleteHandler(event:FlexEvent):void
141     {
142     resetOldCommentDate();
143     }
144    
145     protected function tabNavigator_comment_changeHandler(event:IndexChangedEvent):void
146     {
147     // ������������������������������������������������������
148     if(event.oldIndex == 1){
149     playerController.reloadLocalComment();
150     }
151     }
152    
153     protected function oldCommentTimeResetButton_clickHandler(event:MouseEvent):void
154     {
155     resetOldCommentDate();
156     }
157    
158    
159     protected function button_oldComment_reloadFromNico_clickHandler(event:MouseEvent):void
160     {
161     playerController.getOldCommentFromNico(oldCommentDate);
162     }
163    
164 mineap 484
165     protected function canvas1_creationCompleteHandler(event:FlexEvent):void
166     {
167     if(videoTypeText.text.length == 0){
168     videoTypeText.text = "-";
169     }
170     if(videoServerUrlText.text.length == 0) {
171     videoServerUrlText.text = "-";
172     }
173     if(connectionTypeText.text.length == 0){
174     connectionTypeText.text = "-";
175     }
176 mineap 490 if(messageServerUrlText.text.length == 0){
177     messageServerUrlText.text = "-";
178     }
179     if(economyModeText.text.length == 0) {
180     economyModeText.text = "-";
181     }
182     if(nickNameText.text.length == 0){
183     nickNameText.text = "-";
184     }
185     if(premiumText.text.length == 0){
186     premiumText.text = "-";
187     }
188    
189 mineap 484 }
190    
191 mineap 490
192     protected function pubUserLinkButton_clickHandler(event:MouseEvent):void
193     {
194     var user:String = pubUserLinkButton.label;
195     if(user.length >= 5){
196     var url:String = "http://www.nicovideo.jp/" + user;
197     navigateToURL(new URLRequest(url));
198     }else{
199    
200     }
201     }
202 mineap 498
203     protected function showQualitySliderDataTipFunction(value:Number):String
204     {
205     var str:String = "���";
206     switch(value){
207     case 0:
208     str = "���";
209     break;
210     case 1:
211     str = "���"
212     break;
213     case 2:
214     str = "���"
215     break;
216     case 3:
217     str = "������";
218     break;
219     default:
220     str = "���";
221     }
222     return str;
223     }
224 mineap 490
225 mineap 361 ]]>
226     </mx:Script>
227    
228 mineap 371 <mx:Script source="org/mineap/nndd/view/VideoInfoView.as" />
229 mineap 361
230 mineap 490 <mx:Canvas left="5" top="2" width="90" height="70" backgroundColor="#969696"
231     contentBackgroundColor="#969696" dropShadowVisible="false">
232 mineap 491 <view:SmoothImage id="image_thumbImg" width="88" height="68" click="button_goToWebClicked(event)"
233 mineap 490 creationComplete="image_thumbImg_creationCompleteHandler(event)" enabled="true"
234     left="1" top="1" scaleContent="true" toolTip="������������������������������������������������������������"/>
235     </mx:Canvas>
236 mineap 361 <mx:ComboBox left="100" top="53" right="128" id="comboBox_mylist" dataProvider="{myListDataProvider}" close="comboBox_mylist_closeHandler(event)" height="20"></mx:ComboBox>
237     <mx:Button id="button_mylist" right="74" top="53" width="50" height="20" label="������"
238     click="myListAddButtonClicked(event)" toolTip="���������������������������������������������������������������"/>
239     <mx:VRule width="12" height="20" top="53" right="58"/>
240    
241     <mx:Button id="button_download" right="5" top="53" width="50" height="20" label="DL"
242     click="button_addDownloadList(event)" toolTip="������������������������������������������������������"/>
243    
244     <mx:TextArea left="5" top="75" right="5" height="73" htmlText="{owner_text_nico}" id="textArea_upperOwnerText" link="ownerTextLinkClicked(event)"/>
245     <mx:CheckBox label="HTML" right="20" id="checkbox_showHtml" alpha="0.3" enabled="true" selected="true" rollOver="checkbox_showHtml_rollOverHandler(event)"
246     rollOut="checkbox_showHtml_rollOutHandler(event)" change="checkbox_showHtml_changeHandler(event)" top="127" creationComplete="checkbox_showHtml_creationCompleteHandler(event)"
247     toolTip="HTML���������������������������������������������������������������������������������������������������������������������������������������������������������������������" fontWeight="bold"/>
248     <mx:Text id="text_info" left="100" top="2" height="55"/>
249     <mx:ViewStack id="viewstack1" left="5" right="5" top="150" bottom="27">
250     <mx:Canvas label="������������" width="100%" height="100%" id="canvas_videoInfo">
251     <mx:TabNavigator left="0" right="0" top="0" bottom="0">
252     <mx:Canvas label="������������" width="100%" height="100%" id="canvas_comment_parent">
253     <mx:TabNavigator right="0" left="0" top="0" bottom="48" id="tabNavigator_comment" change="tabNavigator_comment_changeHandler(event)">
254     <mx:Canvas label="���������������������" width="100%" height="100%" id="canvas_comment" toolTip="������������������������������������������">
255     <mx:DataGrid left="0" right="0" top="0" bottom="0" dataProvider="{commentListProvider}" resizableColumns="true"
256     id="dataGrid_comment" headerRelease="headerReleaseHandler(event)" doubleClickEnabled="true"
257     itemDoubleClick="commentListDoubleClicked(event)" editable="false" rowHeight="22"
258     horizontalScrollPolicy="on">
259     <mx:columns>
260     <mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/>
261     <mx:DataGridColumn headerText="������������" dataField="comment_column" width="300"/>
262     <mx:DataGridColumn headerText="������������ID" dataField="user_id_column" width="150"/>
263     </mx:columns>
264     </mx:DataGrid>
265     </mx:Canvas>
266     <mx:Canvas label="������������������" width="100%" height="100%" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������">
267     <mx:DateField left="5" top="5" id="dateField_oldComment"/>
268     <mx:NumericStepper left="103" top="5" minimum="0" maximum="23" id="numericStepper_hour_oldComment"/>
269     <mx:Label text="���" left="169" top="7"/>
270     <mx:NumericStepper left="196" top="5" minimum="0" maximum="59" id="numericStepper_min_oldComment"/>
271     <mx:Label text="���" left="262" top="7"/>
272     <mx:Button label="������������" right="5" top="5" click="oldCommentTimeResetButton_clickHandler(event)" toolTip="������������������������������������������"/>
273     <mx:Button label="������(������������������)" right="109" top="30" id="button_oldComment_reloadFromNico" click="button_oldComment_reloadFromNico_clickHandler(event)" toolTip="���������������������������������������������������������������������������������������(���������������������������������������������������������������������������)"/>
274     <mx:Button label="������(������������)" top="30" right="5" id="button_oldComment_reload" click="button_oldComment_reload_clickHandler(event)" toolTip="������������������������������������������������������������������������������������������������"/>
275     <mx:DataGrid left="0" right="0" top="55" bottom="0" dataProvider="{commentListProvider}" resizableColumns="true"
276     id="dataGrid_oldComment" editable="false" rowHeight="22" horizontalScrollPolicy="on" headerRelease="headerReleaseHandler(event)"
277     creationComplete="dataGrid_oldComment_creationCompleteHandler(event)" doubleClickEnabled="true"
278     itemDoubleClick="commentListDoubleClicked(event)">
279     <mx:columns>
280     <mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/>
281     <mx:DataGridColumn headerText="������������" dataField="comment_column" width="300"/>
282     <mx:DataGridColumn headerText="������������ID" dataField="user_id_column" width="150"/>
283     </mx:columns>
284     </mx:DataGrid>
285     </mx:Canvas>
286     <mx:Canvas label="NG������" width="100%" height="100%" toolTip="������������������������NG���������������������������">
287 mineap 460 <mx:ComboBox id="combobox_ngKind" left="5" top="5" width="85" height="22"
288     dataProvider="{Comments.NG_KIND_ARRAY}" selectedIndex="0"></mx:ComboBox>
289 mineap 361 <mx:TextInput left="97" enabled="true" id="textInput_ng" enter="ngTextInputEnter(event)" right="97" top="5"/>
290    
291     <mx:Button right="50" top="5" width="40" label="+"
292     click="addItemToNgList()" enabled="true"
293     toolTip="NG������������������������������������"/>
294     <mx:Button id="button_removeNgList" right="5" top="5" width="40"
295     label="-" click="removeItemFromNgList()"
296     toolTip="NG���������������������������������������"/>
297     <mx:DataGrid id="dataGrid_NG" dataProvider="{ngListProvider}" itemClick="ngListItemClicked(event)" left="0" bottom="0" right="0" top="35">
298     <mx:columns>
299     <mx:DataGridColumn headerText="������" dataField="ng_kind_column" width="80"/>
300     <mx:DataGridColumn headerText="������" dataField="ng_word_column"/>
301     </mx:columns>
302     </mx:DataGrid>
303    
304     </mx:Canvas>
305     </mx:TabNavigator>
306     <mx:Button label="ID���NG" bottom="23" left="5" enabled="true" id="button_addNgList_ID" click="addNGListIdButtonClicked()" toolTip="���������������������������ID���NG������������������"/>
307     <mx:Button label="���������������NG" left="80" bottom="23" id="button_addNgList_Word" click="addNGListWordButtonClicked()" toolTip="������������������������(������)���NG������������������"/>
308     <mx:Button label="ID���������" left="180" bottom="23" click="addPermissionIdButtonClicked()" toolTip="���������������������������ID���������ID������������������"/>
309     <mx:CheckBox label="������������������������������" left="5" bottom="2" id="checkbox_SyncComment" click="checkboxSyncCommentChanged()" toolTip="������������������������������������������������������������������������������������������������������������������������������������������������������������"/>
310     <mx:CheckBox label="������ID������������" id="checkBox_isShowOnlyPermissionComment" click="checkBoxIsSOPCChanged(event)" left="160" bottom="2" toolTip="������ID������������������������ID���������������������������������������"/>
311     </mx:Canvas>
312     <mx:Canvas label="������������������" width="100%" height="100%" id="canvas_playList" creationComplete="checkBox_repeatAllCompleteHandler(event)" verticalScrollPolicy="off" horizontalScrollPolicy="off">
313 mineap 476 <mx:DataGrid left="0" right="0" top="20" bottom="53" dataProvider="{playListProvider}" doubleClickEnabled="true"
314 mineap 361 dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" dragDrop="playListDragDropHandler(event)" id="dataGrid_playList"
315     itemDoubleClick="playListDoubleClicked()" showHeaders="false">
316     <mx:columns>
317     <mx:DataGridColumn>
318     </mx:DataGridColumn>
319     </mx:columns>
320     </mx:DataGrid>
321     <mx:CheckBox id="checkBox_repeatAll" right="5" bottom="5" label="���������������������"
322     change="checkboxRepeatAllChanged()"
323     toolTip="���������������������������������������������������������������������������������������������"/>
324 mineap 476 <mx:Button left="10" bottom="28" width="50" label="-"
325 mineap 361 click="playListItemDeleteButtonClicked(event)"
326     toolTip="������������������������������������������������������������"/>
327 mineap 476 <mx:Button id="button_reverse" left="68" bottom="28" width="50" label="������"
328 mineap 361 click="playListReverseButtonClicked(event)"
329     toolTip="������������������������������������������������������"/>
330 mineap 476 <mx:Button left="10" bottom="3" label="������"
331 mineap 361 click="playListSaveButtonClicked(event)" toolTip="���������������������������������������������������"/>
332 mineap 476 <mx:Button left="89" bottom="3" label="���������"
333 mineap 361 click="playListClearButtonClicked(event)" toolTip="������������������������������������������"/>
334 mineap 476 <mx:Button id="button_shuffle" left="126" bottom="28" width="80" label="���������������"
335     click="playListShuffleButtonClicked(event)"
336     toolTip="���������������������������������������������������"/>
337 mineap 361 <mx:Label left="0" top="0" right="0" id="label_playListTitle" text="{label_playListTitle_dataProvider}"/>
338     </mx:Canvas>
339     <mx:Canvas label="������" width="100%" height="100%" id="canvas_Tag">
340     <mx:TabNavigator left="0" top="0" bottom="0" right="0">
341     <mx:Canvas label="������������" width="100%" height="100%">
342     <mx:List id="list_nicoTag" dataProvider="{nicoTagProvider}" doubleClickEnabled="true" itemDoubleClick="tagListDoubleClickEventHandler(event)" left="0" top="0" bottom="0" right="0"></mx:List>
343     </mx:Canvas>
344     <mx:Canvas label="������������" width="100%" height="100%">
345     <mx:List id="list_localTag" dataProvider="{localTagProvider}" doubleClickEnabled="true" itemDoubleClick="tagListDoubleClickEventHandler(event)" left="0" top="0" bottom="0" right="0"></mx:List>
346     </mx:Canvas>
347     </mx:TabNavigator>
348     </mx:Canvas>
349     <mx:Canvas label="������" width="100%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off" id="canvas_ichiba">
350     <mx:TabNavigator left="0" top="0" bottom="0" right="0" id="tab_inner_ichiba">
351     <mx:Canvas label="������������" width="100%" height="100%">
352     <mx:DataGrid showHeaders="false" left="0" top="0" bottom="0" right="0" rowHeight="80" dataProvider="{ichibaNicoProvider}" id="dataGrid_ichiba_nico" doubleClickEnabled="true" itemDoubleClick="ichibaDataGridDoubleClicked(event)">
353     <mx:columns>
354     <mx:DataGridColumn dataField="col_image" width="80">
355     <mx:itemRenderer>
356     <mx:Component><mx:Image width="80" height="80" /></mx:Component>
357     </mx:itemRenderer>
358     </mx:DataGridColumn>
359     <mx:DataGridColumn dataField="col_info"/>
360     </mx:columns>
361     </mx:DataGrid>
362     </mx:Canvas>
363     <mx:Canvas label="������������" width="100%" height="100%">
364     <mx:DataGrid showHeaders="false" left="0" top="0" bottom="0" right="0" rowHeight="80" dataProvider="{ichibaLocalProvider}" id="dataGrid_ichiba_local" doubleClickEnabled="true" itemDoubleClick="ichibaDataGridDoubleClicked(event)">
365     <mx:columns>
366     <mx:DataGridColumn dataField="col_image" width="80">
367     <mx:itemRenderer>
368     <mx:Component><mx:Image width="80" height="80" /></mx:Component>
369     </mx:itemRenderer>
370     </mx:DataGridColumn>
371     <mx:DataGridColumn dataField="col_info"/>
372     </mx:columns>
373     </mx:DataGrid>
374     </mx:Canvas>
375     </mx:TabNavigator>
376     </mx:Canvas>
377     <mx:Canvas label="���������" width="100%" height="100%" id="canvas_owner">
378 mineap 490 <mx:VDividedBox left="0" top="50" bottom="0" right="0">
379     <mx:TabNavigator width="100%" height="180">
380 mineap 361 <mx:Canvas id="canvas_owner_onNico" label="������������" width="100%" height="100%">
381     <mx:TextArea id="textArea_owner_onNico" editable="false" wordWrap="true" left="0" top="0" bottom="0" right="0" htmlText="{owner_text_nico}" link="ownerTextLinkClicked(event)"/>
382     </mx:Canvas>
383     <mx:Canvas id="canvas_owner_local" label="������������" width="100%" height="100%">
384     <mx:TextArea id="textArea_owner" editable="false" wordWrap="true" left="0" top="0" bottom="0" right="0" htmlText="{owner_text_local}" link="ownerTextLinkClicked(event)"/>
385     </mx:Canvas>
386     </mx:TabNavigator>
387     <mx:DataGrid width="100%" height="50%" id="dataGrid_ownerComment" dataProvider="{ownerCommentProvider}" doubleClickEnabled="true" itemDoubleClick="commentListDoubleClicked(event)" rowHeight="22">
388     <mx:columns>
389     <mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/>
390     <mx:DataGridColumn headerText="������������" dataField="command_column" width="100"/>
391     <mx:DataGridColumn headerText="������������" dataField="comment_column"/>
392     </mx:columns>
393     </mx:DataGrid>
394     </mx:VDividedBox>
395 mineap 490
396     <mx:Canvas left="5" top="0" width="50" height="50" backgroundColor="#969696"
397     contentBackgroundColor="#969696" dropShadowVisible="false">
398 mineap 491 <view:SmoothImage id="image_pubUserIcon" width="48" height="48"
399 mineap 490 doubleClick="pubUserLinkButton_clickHandler(event)"
400     doubleClickEnabled="true" top="1" left="1"
401     source="{pubUserNameIconUrl}"/>
402     </mx:Canvas>
403     <mx:Label left="63" top="0" text="���������������"/>
404     <mx:Label id="label_pubUserName" left="133" right="5" top="0"
405     text="{pubUserName}"/>
406     <mx:LinkButton id="pubUserLinkButton" left="58" top="22"
407     label="{pubUserLinkButtonText}"
408     click="pubUserLinkButton_clickHandler(event)"
409     color="#0000FF" textDecoration="underline"
410     toolTip="������������������������������������������������������������������������"/>
411    
412    
413 mineap 361 </mx:Canvas>
414     <mx:Canvas label="������������" width="100%" height="100%" creationComplete="relationCanvasCreationCompleteHandler(event)">
415     <mx:ComboBox left="0" top="0" width="120" dataProvider="{relationSortComboboxDataProvider}" id="combobox_relationSort" change="relationSortComboboxChange(event)"></mx:ComboBox>
416     <mx:ComboBox left="128" top="0" width="120" dataProvider="{relationOrderComboboxDataProvider}" id="combobox_relationOrder" change="relationOrderComboboxChange(event)"></mx:ComboBox>
417     <mx:DataGrid left="0" top="30" bottom="0" right="0" dataProvider="{relationDataProvider}" doubleClickEnabled="true"
418     id="datagrid_relation" showHeaders="false" itemDoubleClick="relationItemDoubleClickHandler(event)" rowHeight="70">
419     <mx:columns>
420     <mx:DataGridColumn dataField="col_image" width="80">
421     <mx:itemRenderer>
422     <mx:Component><mx:Image width="80" height="70" /></mx:Component>
423     </mx:itemRenderer>
424     </mx:DataGridColumn>
425     <mx:DataGridColumn dataField="col_info"/>
426     </mx:columns>
427     </mx:DataGrid>
428     </mx:Canvas>
429     </mx:TabNavigator>
430     </mx:Canvas>
431 mineap 484 <mx:Canvas width="100%" height="100%" label="������������" creationComplete="canvas1_creationCompleteHandler(event)">
432     <mx:Label left="10" top="10" text="���������������"/>
433 mineap 490 <mx:Label id="videoTypeText" left="83" right="5" top="10" text="{videoType}" truncateToFit="true" selectable="true"/>
434 mineap 484
435     <mx:Label left="10" top="30" text="���������������"/>
436 mineap 490 <mx:Label id="connectionTypeText" left="83" right="5" top="30" text="{connectionType}" truncateToFit="true" selectable="true"/>
437 mineap 484
438     <mx:Label left="10" top="50" text="���������������������"/>
439 mineap 490 <mx:Label id="videoServerUrlText" left="107" right="5" top="50" text="{videoServerUrl}" toolTip="{videoServerUrl}" truncateToFit="true" selectable="true"/>
440    
441     <mx:Label left="10" top="70" text="������������������������������"/>
442     <mx:Label id="messageServerUrlText" left="143" right="5" top="70" text="{messageServerUrl}" toolTip="{messageServerUrl}" truncateToFit="true" selectable="true"/>
443    
444     <mx:Label left="10" top="90" text="���������������������������"/>
445     <mx:Label id="economyModeText" left="131" right="6" top="90" text="{economyMode}" truncateToFit="true" selectable="true"/>
446    
447     <mx:Label left="10" top="110" text="���������������������"/>
448     <mx:Label id="nickNameText" left="107" right="6" top="110" text="{nickName}" truncateToFit="true" selectable="true"/>
449    
450     <mx:Label left="10" top="130" text="������������������"/>
451     <mx:Label id="premiumText" left="95" right="6" top="130" text="{isPremium}" truncateToFit="true" selectable="true"/>
452 mineap 484 </mx:Canvas>
453 mineap 361 <mx:Canvas label="������" width="100%" height="100%">
454 mineap 498 <mx:Canvas label="������" id="canvas_config" verticalScrollPolicy="off" left="0" top="0" bottom="0" right="0"
455 mineap 361 backgroundColor="#ffffff">
456 mineap 498 <mx:TabNavigator left="0" top="0" bottom="0" right="0" id="tab_config">
457     <mx:Canvas label="������������" left="0" top="0" bottom="0" right="0" id="canvas_config_1"
458     creationComplete="configCanvas1CreationCompleteHandler(event)">
459     <mx:CheckBox label="Player������������������������������������������" id="checkbox_resizePlayerEachPlay" change="checkboxResizePlayerEachPlay(event)" left="10" top="10"/>
460    
461     <mx:RadioButtonGroup id="radioGroup_resizeType" selectedValue="1" />
462     <mx:RadioButton label="������������������������������������" id="radioButton_resizeNicoDou" groupName="radioGroup_resizeType" value="1" left="35" top="28" change="radioButtonResizeTypeChanged(event)" toolTip="������������������������������������������������������������������������������������������������������������"/>
463     <mx:CheckBox label="16:9���������������������������" id="checkbox_enableWideMode" selected="true" left="68" top="45" change="checkboxEnableWideModeChanged(event)" toolTip="���������������������16:9���������������������������������������������Player���������������16:9���������������������"/>
464     <mx:RadioButton label="���������������������������������" id="radioButton_resizeVideo" groupName="radioGroup_resizeType" value="2" left="35" top="70" change="radioButtonResizeTypeChanged(event)" toolTip="���������������������������������������������������������������������������������������"/>
465    
466     <mx:CheckBox left="10" top="122" label="���������������������������������������������" toolTip="FLV/MP4���������������������������������������������������������" id="checkBox_isSmoothing" change="checkBoxSmoothingChanged(event)" selected="true"/>
467     <mx:CheckBox label="������������������������������������������������������������" id="checkBox_isAlwaysEconomyForStreaming" left="10" top="96" change="checkBoxAlwaysEconomyChanged(event)" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������������"/>
468     <mx:Label x="10" y="148" text="������������:"/>
469     <mx:HSlider minimum="2" maximum="3" snapInterval="1" value="2" left="143" top="148" change="playerQualitySliderChanged(event)" id="slider_playerQuality" right="10" toolTip="Player���������������������������������������������������������������������������"
470     dataTipFormatFunction="showQualitySliderDataTipFunction"/>
471     <mx:Label text="���" left="143" top="174"/>
472     <mx:Label right="10" top="174" text="������"/>
473    
474     </mx:Canvas>
475     <mx:Canvas label="������������������" left="0" top="0" bottom="0" right="0" id="canvas_config_2"
476     creationComplete="configCanvas2CreationCompleteHandler(event)">
477    
478     <mx:CheckBox label="������������������������������" top="36" left="10" id="checkBox_commentBold" change="checkBoxCommentBoldChanged(event)"/>
479     <mx:CheckBox left="10" top="10" label="���������������������������������������������������" toolTip="������������������������������������������������������������������������������������������������" id="checkBox_hideSekaShinComment" click="checkBoxHideSekaShinComment(event)"/>
480     <mx:CheckBox left="10" top="62" label="������������������������������������������" toolTip="������������������������������������������������������������������������������������������������������������������" id="checkBox_isNgUpEnable" change="checkBoxNgUpChanged(event)"/>
481    
482     <mx:Label text="���������������������������" left="10" top="92"/>
483     <mx:HSlider minimum="0.5" maximum="1.5" snapInterval="0.1" value="1" left="143" top="92" change="commentScaleSliderChanged(event)" id="slider_commentScale" right="10"/>
484     <mx:Label text="0.5���" left="143" top="118"/>
485     <mx:Label right="10" top="118" text="1.5���"/>
486     <mx:Label text="���������������FPS���" left="10" top="144" toolTip="������������������������FPS������������������������������������������������������������"/>
487     <mx:HSlider minimum="1" maximum="5" value="2" left="143" top="144" snapInterval="1" dataTipFormatFunction="fpsDataTipFormatFunction" id="slider_fps" change="sliderFpsChanged(event)" right="10" toolTip="������������������������FPS������������������������������������������������������������"/>
488     <mx:Label text="7.5fps" left="143" top="170"/>
489     <mx:Label right="10" top="170" text="120fps"/>
490     <mx:Label x="10" y="196" text="���������������������������"/>
491     <mx:HSlider y="196" left="143" minimum="50" maximum="2500" snapInterval="50" right="10" showDataTip="true" value="250" id="slider_showCommentCount" change="sliderShowCommentCountChanged(event)" toolTip="������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������"/>
492     <mx:Label text="50" left="143" top="222"/>
493     <mx:Label right="10" top="222" text="2500"/>
494     <mx:Label x="10" y="248" text="���������������������������"/>
495     <mx:HSlider y="248" left="143" minimum="1" maximum="5" snapInterval="1" right="10" showDataTip="true" value="3" id="slider_showCommentTime" change="sliderShowCommentTimeChanged(event)"/>
496     <mx:Label text="1���" left="143" top="274"/>
497     <mx:Label text="5���" top="274" right="10"/>
498     <mx:Label x="10" y="300" text="������������������������������" toolTip="������������������������������[���������������������]���������������������������������������"/>
499     <mx:HSlider y="300" left="143" minimum="1" maximum="100" snapInterval="1" right="10" showDataTip="true" value="100" id="slider_commentAlpha" change="sliderCommentAlphaChanged(event)" toolTip="������������������������������[���������������������]���������������������������������������"/>
500     <mx:Label text="1%" left="143" top="326"/>
501     <mx:Label text="100%" top="326" right="10"/>
502     </mx:Canvas>
503     <mx:Canvas label="���������" left="0" top="0" bottom="0" right="0" id="canvas_config_3"
504     creationComplete="configCanvas3CreationCompleteHandler(event)">
505     <mx:CheckBox label="Player���������������������������������" id="checkbox_PlayerAlwaysFront" change="checkBoxPlayerAlwaysFrontChanged(event)" minHeight="20" left="10" top="10"/>
506     <mx:CheckBox label="InfoView���������������������������������" id="checkbox_InfoViewAlwaysFront" change="checkBoxInfoViewAlwaysFrontChanged(event)" minHeight="20" left="10" top="38"/>
507     <mx:CheckBox label="InfoView���Player������������������" id="checkbox_playerFollow" change="checkboxPlayerFollowChanged(event)" left="10" top="66"/>
508    
509     <mx:CheckBox label="���������������������������������������������" left="10" top="173" id="checkBox_renewComment" click="checkBoxRenewCommentChanged()" toolTip="������������������������������������������������������������������������������������������������"/>
510     <mx:CheckBox label="������������������������������������" left="35" top="195" id="checkBox_renewTagAndNicowari" click="checkBoxRenewTagNicowariChanged()" toolTip="������������������������������������������������������������������������������"/>
511     <mx:CheckBox label="���������������������������������������������������������������������������������" left="35" top="215" id="checkBox_isAppendComment" change="checkBoxAppendCommentChanged(event)" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������NNDD������������������������������������������������������������������������������������������������������"/>
512    
513     <mx:CheckBox label="Player���������������������������������" left="10" top="92" id="checkBox_showAlwaysNicowariArea" change="checkBoxShowAlwaysNicowariAreaChanged(event)" toolTip="Player���������������������������������������������������������������������������������������������������������������������������������������"/>
514     <mx:CheckBox label="Player���������������������������������" left="10" top="118" id="checkbox_hideTagArea" change="checkboxHideTagAreaChanged(event)" toolTip="Player���������������������������������������������������"/>
515     <mx:CheckBox id="checkbox_hideUnderController" left="10" top="144" height="22"
516     label="Player������������������������������������������"
517     change="checkboxHideUnderControllerChanged(event)" fontWeight="normal"
518     rollOut="videoPlayer.videoController.rollOut(event)"
519     rollOver="videoPlayer.videoController.rollOver(event)"
520     toolTip="Player���������������������������������������������������������������������������������������������������������������������"/>
521    
522     <mx:CheckBox label="������������������������������������" left="10" top="241" id="checkBox_enableJump" click="checkBoxIsEnableJump(event)" toolTip="������������������������������������������������������������������������������"/>
523     <mx:CheckBox label="���������������������������������������������������������" left="35" top="262" id="checkBox_askToUserOnJump" click="checkBoxIsAskToUserOnJump(event)" toolTip="���������������������������������������������������������������������������������������������������������������"/>
524    
525    
526     </mx:Canvas>
527     </mx:TabNavigator>
528 mineap 361 </mx:Canvas>
529     </mx:Canvas>
530     </mx:ViewStack>
531     <mx:ToggleButtonBar dataProvider="{viewstack1}" left="5" bottom="5" fontWeight="normal" height="20">
532     </mx:ToggleButtonBar>
533 mineap 484 <mx:Button id="button_videoOpen" right="5" bottom="5" width="87" height="20" label="���������������..."
534     click="button_videoOpen_clickHandler(event)"/>
535 mineap 361
536    
537     </mx:Window>

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26