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

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