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 526 - (hide annotations) (download)
Thu May 5 16:53:06 2011 UTC (12 years, 11 months ago) by mineap
File size: 34470 byte(s)
InfoViewの高さをPlayerに応じて変更する機能を実装
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 mineap 505 var url:String = pubUserLinkButton.label;
195     if(url != null && url.length > 1){
196 mineap 490 navigateToURL(new URLRequest(url));
197     }else{
198    
199     }
200     }
201 mineap 498
202     protected function showQualitySliderDataTipFunction(value:Number):String
203     {
204     var str:String = "���";
205     switch(value){
206     case 0:
207     str = "���";
208     break;
209     case 1:
210     str = "���"
211     break;
212     case 2:
213     str = "���"
214     break;
215     case 3:
216     str = "������";
217     break;
218     default:
219     str = "���";
220     }
221     return str;
222     }
223 mineap 490
224 mineap 361 ]]>
225     </mx:Script>
226    
227 mineap 371 <mx:Script source="org/mineap/nndd/view/VideoInfoView.as" />
228 mineap 361
229 mineap 490 <mx:Canvas left="5" top="2" width="90" height="70" backgroundColor="#969696"
230     contentBackgroundColor="#969696" dropShadowVisible="false">
231 mineap 491 <view:SmoothImage id="image_thumbImg" width="88" height="68" click="button_goToWebClicked(event)"
232 mineap 490 creationComplete="image_thumbImg_creationCompleteHandler(event)" enabled="true"
233     left="1" top="1" scaleContent="true" toolTip="������������������������������������������������������������"/>
234     </mx:Canvas>
235 mineap 361 <mx:ComboBox left="100" top="53" right="128" id="comboBox_mylist" dataProvider="{myListDataProvider}" close="comboBox_mylist_closeHandler(event)" height="20"></mx:ComboBox>
236     <mx:Button id="button_mylist" right="74" top="53" width="50" height="20" label="������"
237     click="myListAddButtonClicked(event)" toolTip="���������������������������������������������������������������"/>
238     <mx:VRule width="12" height="20" top="53" right="58"/>
239    
240     <mx:Button id="button_download" right="5" top="53" width="50" height="20" label="DL"
241     click="button_addDownloadList(event)" toolTip="������������������������������������������������������"/>
242    
243     <mx:TextArea left="5" top="75" right="5" height="73" htmlText="{owner_text_nico}" id="textArea_upperOwnerText" link="ownerTextLinkClicked(event)"/>
244     <mx:CheckBox label="HTML" right="20" id="checkbox_showHtml" alpha="0.3" enabled="true" selected="true" rollOver="checkbox_showHtml_rollOverHandler(event)"
245     rollOut="checkbox_showHtml_rollOutHandler(event)" change="checkbox_showHtml_changeHandler(event)" top="127" creationComplete="checkbox_showHtml_creationCompleteHandler(event)"
246     toolTip="HTML���������������������������������������������������������������������������������������������������������������������������������������������������������������������" fontWeight="bold"/>
247     <mx:Text id="text_info" left="100" top="2" height="55"/>
248     <mx:ViewStack id="viewstack1" left="5" right="5" top="150" bottom="27">
249     <mx:Canvas label="������������" width="100%" height="100%" id="canvas_videoInfo">
250     <mx:TabNavigator left="0" right="0" top="0" bottom="0">
251     <mx:Canvas label="������������" width="100%" height="100%" id="canvas_comment_parent">
252     <mx:TabNavigator right="0" left="0" top="0" bottom="48" id="tabNavigator_comment" change="tabNavigator_comment_changeHandler(event)">
253     <mx:Canvas label="���������������������" width="100%" height="100%" id="canvas_comment" toolTip="������������������������������������������">
254     <mx:DataGrid left="0" right="0" top="0" bottom="0" dataProvider="{commentListProvider}" resizableColumns="true"
255     id="dataGrid_comment" headerRelease="headerReleaseHandler(event)" doubleClickEnabled="true"
256     itemDoubleClick="commentListDoubleClicked(event)" editable="false" rowHeight="22"
257     horizontalScrollPolicy="on">
258     <mx:columns>
259     <mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/>
260     <mx:DataGridColumn headerText="������������" dataField="comment_column" width="300"/>
261     <mx:DataGridColumn headerText="������������ID" dataField="user_id_column" width="150"/>
262     </mx:columns>
263     </mx:DataGrid>
264     </mx:Canvas>
265     <mx:Canvas label="������������������" width="100%" height="100%" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������">
266     <mx:DateField left="5" top="5" id="dateField_oldComment"/>
267     <mx:NumericStepper left="103" top="5" minimum="0" maximum="23" id="numericStepper_hour_oldComment"/>
268     <mx:Label text="���" left="169" top="7"/>
269     <mx:NumericStepper left="196" top="5" minimum="0" maximum="59" id="numericStepper_min_oldComment"/>
270     <mx:Label text="���" left="262" top="7"/>
271     <mx:Button label="������������" right="5" top="5" click="oldCommentTimeResetButton_clickHandler(event)" toolTip="������������������������������������������"/>
272     <mx:Button label="������(������������������)" right="109" top="30" id="button_oldComment_reloadFromNico" click="button_oldComment_reloadFromNico_clickHandler(event)" toolTip="���������������������������������������������������������������������������������������(���������������������������������������������������������������������������)"/>
273     <mx:Button label="������(������������)" top="30" right="5" id="button_oldComment_reload" click="button_oldComment_reload_clickHandler(event)" toolTip="������������������������������������������������������������������������������������������������"/>
274     <mx:DataGrid left="0" right="0" top="55" bottom="0" dataProvider="{commentListProvider}" resizableColumns="true"
275     id="dataGrid_oldComment" editable="false" rowHeight="22" horizontalScrollPolicy="on" headerRelease="headerReleaseHandler(event)"
276     creationComplete="dataGrid_oldComment_creationCompleteHandler(event)" doubleClickEnabled="true"
277     itemDoubleClick="commentListDoubleClicked(event)">
278     <mx:columns>
279     <mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/>
280     <mx:DataGridColumn headerText="������������" dataField="comment_column" width="300"/>
281     <mx:DataGridColumn headerText="������������ID" dataField="user_id_column" width="150"/>
282     </mx:columns>
283     </mx:DataGrid>
284     </mx:Canvas>
285     <mx:Canvas label="NG������" width="100%" height="100%" toolTip="������������������������NG���������������������������">
286 mineap 460 <mx:ComboBox id="combobox_ngKind" left="5" top="5" width="85" height="22"
287     dataProvider="{Comments.NG_KIND_ARRAY}" selectedIndex="0"></mx:ComboBox>
288 mineap 361 <mx:TextInput left="97" enabled="true" id="textInput_ng" enter="ngTextInputEnter(event)" right="97" top="5"/>
289    
290     <mx:Button right="50" top="5" width="40" label="+"
291     click="addItemToNgList()" enabled="true"
292     toolTip="NG������������������������������������"/>
293     <mx:Button id="button_removeNgList" right="5" top="5" width="40"
294     label="-" click="removeItemFromNgList()"
295     toolTip="NG���������������������������������������"/>
296     <mx:DataGrid id="dataGrid_NG" dataProvider="{ngListProvider}" itemClick="ngListItemClicked(event)" left="0" bottom="0" right="0" top="35">
297     <mx:columns>
298     <mx:DataGridColumn headerText="������" dataField="ng_kind_column" width="80"/>
299     <mx:DataGridColumn headerText="������" dataField="ng_word_column"/>
300     </mx:columns>
301     </mx:DataGrid>
302    
303     </mx:Canvas>
304     </mx:TabNavigator>
305     <mx:Button label="ID���NG" bottom="23" left="5" enabled="true" id="button_addNgList_ID" click="addNGListIdButtonClicked()" toolTip="���������������������������ID���NG������������������"/>
306     <mx:Button label="���������������NG" left="80" bottom="23" id="button_addNgList_Word" click="addNGListWordButtonClicked()" toolTip="������������������������(������)���NG������������������"/>
307     <mx:Button label="ID���������" left="180" bottom="23" click="addPermissionIdButtonClicked()" toolTip="���������������������������ID���������ID������������������"/>
308     <mx:CheckBox label="������������������������������" left="5" bottom="2" id="checkbox_SyncComment" click="checkboxSyncCommentChanged()" toolTip="������������������������������������������������������������������������������������������������������������������������������������������������������������"/>
309     <mx:CheckBox label="������ID������������" id="checkBox_isShowOnlyPermissionComment" click="checkBoxIsSOPCChanged(event)" left="160" bottom="2" toolTip="������ID������������������������ID���������������������������������������"/>
310     </mx:Canvas>
311     <mx:Canvas label="������������������" width="100%" height="100%" id="canvas_playList" creationComplete="checkBox_repeatAllCompleteHandler(event)" verticalScrollPolicy="off" horizontalScrollPolicy="off">
312 mineap 476 <mx:DataGrid left="0" right="0" top="20" bottom="53" dataProvider="{playListProvider}" doubleClickEnabled="true"
313 mineap 361 dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" dragDrop="playListDragDropHandler(event)" id="dataGrid_playList"
314     itemDoubleClick="playListDoubleClicked()" showHeaders="false">
315     <mx:columns>
316     <mx:DataGridColumn>
317     </mx:DataGridColumn>
318     </mx:columns>
319     </mx:DataGrid>
320     <mx:CheckBox id="checkBox_repeatAll" right="5" bottom="5" label="���������������������"
321     change="checkboxRepeatAllChanged()"
322     toolTip="���������������������������������������������������������������������������������������������"/>
323 mineap 476 <mx:Button left="10" bottom="28" width="50" label="-"
324 mineap 361 click="playListItemDeleteButtonClicked(event)"
325     toolTip="������������������������������������������������������������"/>
326 mineap 476 <mx:Button id="button_reverse" left="68" bottom="28" width="50" label="������"
327 mineap 361 click="playListReverseButtonClicked(event)"
328     toolTip="������������������������������������������������������"/>
329 mineap 476 <mx:Button left="10" bottom="3" label="������"
330 mineap 361 click="playListSaveButtonClicked(event)" toolTip="���������������������������������������������������"/>
331 mineap 476 <mx:Button left="89" bottom="3" label="���������"
332 mineap 361 click="playListClearButtonClicked(event)" toolTip="������������������������������������������"/>
333 mineap 476 <mx:Button id="button_shuffle" left="126" bottom="28" width="80" label="���������������"
334     click="playListShuffleButtonClicked(event)"
335     toolTip="���������������������������������������������������"/>
336 mineap 361 <mx:Label left="0" top="0" right="0" id="label_playListTitle" text="{label_playListTitle_dataProvider}"/>
337     </mx:Canvas>
338     <mx:Canvas label="������" width="100%" height="100%" id="canvas_Tag">
339     <mx:TabNavigator left="0" top="0" bottom="0" right="0">
340     <mx:Canvas label="������������" width="100%" height="100%">
341     <mx:List id="list_nicoTag" dataProvider="{nicoTagProvider}" doubleClickEnabled="true" itemDoubleClick="tagListDoubleClickEventHandler(event)" left="0" top="0" bottom="0" right="0"></mx:List>
342     </mx:Canvas>
343     <mx:Canvas label="������������" width="100%" height="100%">
344     <mx:List id="list_localTag" dataProvider="{localTagProvider}" doubleClickEnabled="true" itemDoubleClick="tagListDoubleClickEventHandler(event)" left="0" top="0" bottom="0" right="0"></mx:List>
345     </mx:Canvas>
346     </mx:TabNavigator>
347     </mx:Canvas>
348     <mx:Canvas label="������" width="100%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off" id="canvas_ichiba">
349     <mx:TabNavigator left="0" top="0" bottom="0" right="0" id="tab_inner_ichiba">
350     <mx:Canvas label="������������" width="100%" height="100%">
351     <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)">
352     <mx:columns>
353     <mx:DataGridColumn dataField="col_image" width="80">
354     <mx:itemRenderer>
355     <mx:Component><mx:Image width="80" height="80" /></mx:Component>
356     </mx:itemRenderer>
357     </mx:DataGridColumn>
358     <mx:DataGridColumn dataField="col_info"/>
359     </mx:columns>
360     </mx:DataGrid>
361     </mx:Canvas>
362     <mx:Canvas label="������������" width="100%" height="100%">
363     <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)">
364     <mx:columns>
365     <mx:DataGridColumn dataField="col_image" width="80">
366     <mx:itemRenderer>
367     <mx:Component><mx:Image width="80" height="80" /></mx:Component>
368     </mx:itemRenderer>
369     </mx:DataGridColumn>
370     <mx:DataGridColumn dataField="col_info"/>
371     </mx:columns>
372     </mx:DataGrid>
373     </mx:Canvas>
374     </mx:TabNavigator>
375     </mx:Canvas>
376 mineap 505 <mx:Canvas label="���������" width="100%" height="100%" id="canvas_owner" verticalScrollPolicy="off" horizontalScrollPolicy="off">
377    
378     <mx:Canvas left="5" top="0" width="50" height="50" backgroundColor="#969696"
379     contentBackgroundColor="#969696" dropShadowVisible="false">
380     <view:SmoothImage id="image_pubUserIcon" width="48" height="48"
381     doubleClick="pubUserLinkButton_clickHandler(event)"
382     doubleClickEnabled="true" top="1" left="1"
383     source="{pubUserNameIconUrl}"/>
384     </mx:Canvas>
385     <mx:Label left="63" top="0" text="���������������"/>
386     <mx:Label id="label_pubUserName" left="133" right="5" top="0"
387     text="{pubUserName}"/>
388     <mx:LinkButton id="pubUserLinkButton" left="58" top="22"
389     label="{pubUserLinkButtonText}"
390     click="pubUserLinkButton_clickHandler(event)"
391     color="#0000FF" textDecoration="underline"
392     toolTip="������������������������������������������������������������������������"/>
393    
394 mineap 490 <mx:VDividedBox left="0" top="50" bottom="0" right="0">
395     <mx:TabNavigator width="100%" height="180">
396 mineap 361 <mx:Canvas id="canvas_owner_onNico" label="������������" width="100%" height="100%">
397     <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)"/>
398     </mx:Canvas>
399     <mx:Canvas id="canvas_owner_local" label="������������" width="100%" height="100%">
400     <mx:TextArea id="textArea_owner" editable="false" wordWrap="true" left="0" top="0" bottom="0" right="0" htmlText="{owner_text_local}" link="ownerTextLinkClicked(event)"/>
401     </mx:Canvas>
402     </mx:TabNavigator>
403     <mx:DataGrid width="100%" height="50%" id="dataGrid_ownerComment" dataProvider="{ownerCommentProvider}" doubleClickEnabled="true" itemDoubleClick="commentListDoubleClicked(event)" rowHeight="22">
404     <mx:columns>
405     <mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/>
406     <mx:DataGridColumn headerText="������������" dataField="command_column" width="100"/>
407     <mx:DataGridColumn headerText="������������" dataField="comment_column"/>
408     </mx:columns>
409     </mx:DataGrid>
410     </mx:VDividedBox>
411     </mx:Canvas>
412     <mx:Canvas label="������������" width="100%" height="100%" creationComplete="relationCanvasCreationCompleteHandler(event)">
413     <mx:ComboBox left="0" top="0" width="120" dataProvider="{relationSortComboboxDataProvider}" id="combobox_relationSort" change="relationSortComboboxChange(event)"></mx:ComboBox>
414     <mx:ComboBox left="128" top="0" width="120" dataProvider="{relationOrderComboboxDataProvider}" id="combobox_relationOrder" change="relationOrderComboboxChange(event)"></mx:ComboBox>
415     <mx:DataGrid left="0" top="30" bottom="0" right="0" dataProvider="{relationDataProvider}" doubleClickEnabled="true"
416     id="datagrid_relation" showHeaders="false" itemDoubleClick="relationItemDoubleClickHandler(event)" rowHeight="70">
417     <mx:columns>
418     <mx:DataGridColumn dataField="col_image" width="80">
419     <mx:itemRenderer>
420     <mx:Component><mx:Image width="80" height="70" /></mx:Component>
421     </mx:itemRenderer>
422     </mx:DataGridColumn>
423     <mx:DataGridColumn dataField="col_info"/>
424     </mx:columns>
425     </mx:DataGrid>
426     </mx:Canvas>
427     </mx:TabNavigator>
428     </mx:Canvas>
429 mineap 484 <mx:Canvas width="100%" height="100%" label="������������" creationComplete="canvas1_creationCompleteHandler(event)">
430     <mx:Label left="10" top="10" text="���������������"/>
431 mineap 490 <mx:Label id="videoTypeText" left="83" right="5" top="10" text="{videoType}" truncateToFit="true" selectable="true"/>
432 mineap 484
433     <mx:Label left="10" top="30" text="���������������"/>
434 mineap 490 <mx:Label id="connectionTypeText" left="83" right="5" top="30" text="{connectionType}" truncateToFit="true" selectable="true"/>
435 mineap 484
436     <mx:Label left="10" top="50" text="���������������������"/>
437 mineap 490 <mx:Label id="videoServerUrlText" left="107" right="5" top="50" text="{videoServerUrl}" toolTip="{videoServerUrl}" truncateToFit="true" selectable="true"/>
438    
439     <mx:Label left="10" top="70" text="������������������������������"/>
440     <mx:Label id="messageServerUrlText" left="143" right="5" top="70" text="{messageServerUrl}" toolTip="{messageServerUrl}" truncateToFit="true" selectable="true"/>
441    
442     <mx:Label left="10" top="90" text="���������������������������"/>
443     <mx:Label id="economyModeText" left="131" right="6" top="90" text="{economyMode}" truncateToFit="true" selectable="true"/>
444    
445     <mx:Label left="10" top="110" text="���������������������"/>
446     <mx:Label id="nickNameText" left="107" right="6" top="110" text="{nickName}" truncateToFit="true" selectable="true"/>
447    
448     <mx:Label left="10" top="130" text="������������������"/>
449     <mx:Label id="premiumText" left="95" right="6" top="130" text="{isPremium}" truncateToFit="true" selectable="true"/>
450 mineap 484 </mx:Canvas>
451 mineap 361 <mx:Canvas label="������" width="100%" height="100%">
452 mineap 498 <mx:Canvas label="������" id="canvas_config" verticalScrollPolicy="off" left="0" top="0" bottom="0" right="0"
453 mineap 361 backgroundColor="#ffffff">
454 mineap 498 <mx:TabNavigator left="0" top="0" bottom="0" right="0" id="tab_config">
455     <mx:Canvas label="������������" left="0" top="0" bottom="0" right="0" id="canvas_config_1"
456     creationComplete="configCanvas1CreationCompleteHandler(event)">
457     <mx:CheckBox label="Player������������������������������������������" id="checkbox_resizePlayerEachPlay" change="checkboxResizePlayerEachPlay(event)" left="10" top="10"/>
458    
459     <mx:RadioButtonGroup id="radioGroup_resizeType" selectedValue="1" />
460     <mx:RadioButton label="������������������������������������" id="radioButton_resizeNicoDou" groupName="radioGroup_resizeType" value="1" left="35" top="28" change="radioButtonResizeTypeChanged(event)" toolTip="������������������������������������������������������������������������������������������������������������"/>
461     <mx:CheckBox label="16:9���������������������������" id="checkbox_enableWideMode" selected="true" left="68" top="45" change="checkboxEnableWideModeChanged(event)" toolTip="���������������������16:9���������������������������������������������Player���������������16:9���������������������"/>
462     <mx:RadioButton label="���������������������������������" id="radioButton_resizeVideo" groupName="radioGroup_resizeType" value="2" left="35" top="70" change="radioButtonResizeTypeChanged(event)" toolTip="���������������������������������������������������������������������������������������"/>
463    
464     <mx:CheckBox left="10" top="122" label="���������������������������������������������" toolTip="FLV/MP4���������������������������������������������������������" id="checkBox_isSmoothing" change="checkBoxSmoothingChanged(event)" selected="true"/>
465     <mx:CheckBox label="������������������������������������������������������������" id="checkBox_isAlwaysEconomyForStreaming" left="10" top="96" change="checkBoxAlwaysEconomyChanged(event)" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������������"/>
466     <mx:Label x="10" y="148" text="������������:"/>
467     <mx:HSlider minimum="2" maximum="3" snapInterval="1" value="2" left="143" top="148" change="playerQualitySliderChanged(event)" id="slider_playerQuality" right="10" toolTip="Player���������������������������������������������������������������������������"
468     dataTipFormatFunction="showQualitySliderDataTipFunction"/>
469     <mx:Label text="���" left="143" top="174"/>
470     <mx:Label right="10" top="174" text="������"/>
471    
472     </mx:Canvas>
473     <mx:Canvas label="������������������" left="0" top="0" bottom="0" right="0" id="canvas_config_2"
474     creationComplete="configCanvas2CreationCompleteHandler(event)">
475    
476     <mx:CheckBox label="������������������������������" top="36" left="10" id="checkBox_commentBold" change="checkBoxCommentBoldChanged(event)"/>
477     <mx:CheckBox left="10" top="10" label="���������������������������������������������������" toolTip="������������������������������������������������������������������������������������������������" id="checkBox_hideSekaShinComment" click="checkBoxHideSekaShinComment(event)"/>
478     <mx:CheckBox left="10" top="62" label="������������������������������������������" toolTip="������������������������������������������������������������������������������������������������������������������" id="checkBox_isNgUpEnable" change="checkBoxNgUpChanged(event)"/>
479    
480 mineap 508 <mx:Label left="10" top="88" text="���������������������������������"
481     toolTip="1���������������������������������������������������������(���������������������)���DL������������������������������������������������������������������������������"/>
482     <mx:NumericStepper left="167" top="85" maximum="100000" stepSize="50"
483     value="50" id="commentNumStepper"
484     change="commentCountNumStepperChanged(event)"
485     toolTip="1���������������������������������������������������������(���������������������)���DL������������������������������������������������������������������������������"/>
486     <mx:Label left="260" top="88" text="������������/���"/>
487    
488     <mx:Label left="10" top="119" text="������������������������������������"
489     toolTip="1������������������������������������������������������������������(���������������������)���DL������������������������������������������������������������������������������"/>
490     <mx:NumericStepper left="167" top="116" maximum="100000" value="50"
491     stepSize="50" id="ownerCommentNumStepper"
492     change="ownerCommentCountNumStepperChanged(event)"
493     toolTip="1������������������������������������������������������������������(���������������������)���DL������������������������������������������������������������������������������"/>
494     <mx:Label left="260" top="119" text="������������/���"/>
495    
496     <mx:Label text="���������������������������" left="10" top="147"/>
497     <mx:HSlider minimum="0.5" maximum="1.5" snapInterval="0.1" value="1" left="143" top="147" change="commentScaleSliderChanged(event)" id="slider_commentScale" right="10"/>
498     <mx:Label text="0.5���" left="143" top="173"/>
499     <mx:Label right="10" top="173" text="1.5���"/>
500 mineap 526 <mx:Label text="���������������FPS���" left="10" top="199" toolTip="������������������������FPS���������������������������������������������������������������"/>
501     <mx:HSlider minimum="1" maximum="5" value="2" left="143" top="199" snapInterval="1" dataTipFormatFunction="fpsDataTipFormatFunction" id="slider_fps" change="sliderFpsChanged(event)" right="10" toolTip="������������������������FPS���������������������������������������������������������������"/>
502 mineap 508 <mx:Label text="7.5fps" left="143" top="225"/>
503     <mx:Label right="10" top="225" text="120fps"/>
504     <mx:Label x="10" y="249" text="���������������������������"/>
505     <mx:HSlider y="249" left="143" minimum="1" maximum="5" snapInterval="1" right="10" showDataTip="true" value="3" id="slider_showCommentTime" change="sliderShowCommentTimeChanged(event)"/>
506     <mx:Label text="1���" left="143" top="275"/>
507     <mx:Label text="5���" top="275" right="10"/>
508 mineap 526 <mx:Label x="10" y="301" text="������������������������������" toolTip="������������������������������Player���������[Comment]������������������/������������������������������������������"/>
509     <mx:HSlider y="301" left="143" minimum="1" maximum="100" snapInterval="1" right="10" showDataTip="true" value="100" id="slider_commentAlpha" change="sliderCommentAlphaChanged(event)" toolTip="������������������������������[���������������������]������������������������������������������"/>
510 mineap 508 <mx:Label text="1%" left="143" top="327"/>
511     <mx:Label text="100%" top="327" right="10"/>
512    
513 mineap 498 </mx:Canvas>
514     <mx:Canvas label="���������" left="0" top="0" bottom="0" right="0" id="canvas_config_3"
515     creationComplete="configCanvas3CreationCompleteHandler(event)">
516     <mx:CheckBox label="Player���������������������������������" id="checkbox_PlayerAlwaysFront" change="checkBoxPlayerAlwaysFrontChanged(event)" minHeight="20" left="10" top="10"/>
517     <mx:CheckBox label="InfoView���������������������������������" id="checkbox_InfoViewAlwaysFront" change="checkBoxInfoViewAlwaysFrontChanged(event)" minHeight="20" left="10" top="38"/>
518     <mx:CheckBox label="InfoView���Player������������������" id="checkbox_playerFollow" change="checkboxPlayerFollowChanged(event)" left="10" top="66"/>
519 mineap 526 <mx:CheckBox label="InfoView������������Player���������������" id="checkbox_followInfoViewHeight" change="checkboxFollowInfoViewHeight(event)" left="10" top="93"
520     toolTip="InfoView���������������Player���������������������������������������������"/>
521 mineap 498
522 mineap 526 <mx:CheckBox label="Player���������������������������������" left="10" top="133" id="checkBox_showAlwaysNicowariArea" change="checkBoxShowAlwaysNicowariAreaChanged(event)" toolTip="Player���������������������������������������������������������������������������������������������������������������������������������������"/>
523     <mx:CheckBox label="Player���������������������������������" left="10" top="159" id="checkbox_hideTagArea" change="checkboxHideTagAreaChanged(event)" toolTip="Player���������������������������������������������������"/>
524     <mx:CheckBox id="checkbox_hideUnderController" left="10" top="185" height="22"
525 mineap 498 label="Player������������������������������������������"
526     change="checkboxHideUnderControllerChanged(event)" fontWeight="normal"
527     rollOut="videoPlayer.videoController.rollOut(event)"
528     rollOver="videoPlayer.videoController.rollOver(event)"
529     toolTip="Player���������������������������������������������������������������������������������������������������������������������"/>
530    
531 mineap 526 <mx:CheckBox label="���������������������������������������������" left="11" top="225" id="checkBox_renewComment" click="checkBoxRenewCommentChanged()" toolTip="������������������������������������������������������������������������������������������������"/>
532     <mx:CheckBox label="������������������������������������" left="36" top="247" id="checkBox_renewTagAndNicowari" click="checkBoxRenewTagNicowariChanged()" toolTip="������������������������������������������������������������������������������"/>
533     <mx:CheckBox label="���������������������������������������������������������������������������������" left="36" top="267" id="checkBox_isAppendComment" change="checkBoxAppendCommentChanged(event)" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������NNDD������������������������������������������������������������������������������������������������������"/>
534 mineap 498
535 mineap 526 <mx:CheckBox label="������������������������������������" left="11" top="293" id="checkBox_enableJump" click="checkBoxIsEnableJump(event)" toolTip="������������������������������������������������������������������������������"/>
536     <mx:CheckBox label="���������������������������������������������������������" left="36" top="314" id="checkBox_askToUserOnJump" click="checkBoxIsAskToUserOnJump(event)" toolTip="���������������������������������������������������������������������������������������������������������������"/>
537     <mx:HRule left="10" right="10" top="120" height="5"/>
538     <mx:HRule left="10" right="10" top="212" height="5"/>
539 mineap 498
540 mineap 526
541 mineap 498 </mx:Canvas>
542     </mx:TabNavigator>
543 mineap 361 </mx:Canvas>
544     </mx:Canvas>
545     </mx:ViewStack>
546     <mx:ToggleButtonBar dataProvider="{viewstack1}" left="5" bottom="5" fontWeight="normal" height="20">
547     </mx:ToggleButtonBar>
548 mineap 484 <mx:Button id="button_videoOpen" right="5" bottom="5" width="87" height="20" label="���������������..."
549     click="button_videoOpen_clickHandler(event)"/>
550 mineap 361
551    
552     </mx:Window>

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