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

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