Develop and Download Open Source Software

Browse Subversion Repository

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

Parent Directory Parent Directory | Revision Log Revision Log


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

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