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

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