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 544 - (show annotations) (download)
Mon May 9 11:44:25 2011 UTC (12 years, 11 months ago) by mineap
File size: 35127 byte(s)
WindowsとUbuntuで日本語名のフォントが正しく設定されない件の対策
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!-- VideoInfoView.mxml -->
4 <!-- Copyright (c) 2008-2009 MAP - MineApplicationProject. All Rights Reserved. -->
5
6 <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
21 <fx:Script>
22 <![CDATA[
23 import flash.net.navigateToURL;
24
25 import mx.events.DropdownEvent;
26 import mx.events.IndexChangedEvent;
27
28 import org.mineap.nndd.player.comment.Comments;
29
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 if (videoPlayer != null)
40 {
41 videoPlayer.showVideoPlayerAndVideoInfoView();
42 }
43
44 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
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 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 }
201
202
203 protected function pubUserLinkButton_clickHandler(event:MouseEvent):void
204 {
205 var url:String = pubUserLinkButton.label;
206 if(url != null && url.length > 1){
207 navigateToURL(new URLRequest(url));
208 }else{
209
210 }
211 }
212
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
235
236 ]]>
237 </fx:Script>
238
239 <fx:Script source="org/mineap/nndd/view/VideoInfoView.as" />
240
241 <mx:Canvas left="5" top="2" width="90" height="70" backgroundColor="#969696"
242 contentBackgroundColor="#969696" dropShadowVisible="false">
243 <view:SmoothImage id="image_thumbImg" width="88" height="68" click="button_goToWebClicked(event)"
244 creationComplete="image_thumbImg_creationCompleteHandler(event)" enabled="true"
245 left="1" top="1" scaleContent="true" toolTip="������������������������������������������������������������"/>
246 </mx:Canvas>
247 <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 </mx:columns>
275 </mx:DataGrid>
276 </mx:Canvas>
277 <mx:Canvas label="������������������" width="100%" height="100%" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������">
278 <mx:DateField left="5" top="5" id="dateField_oldComment"/>
279 <mx:NumericStepper left="103" top="5" minimum="0" maximum="23" id="numericStepper_hour_oldComment"/>
280 <mx:Label text="���" left="169" top="7"/>
281 <mx:NumericStepper left="196" top="5" minimum="0" maximum="59" id="numericStepper_min_oldComment"/>
282 <mx:Label text="���" left="262" top="7"/>
283 <mx:Button label="������������" right="5" top="5" click="oldCommentTimeResetButton_clickHandler(event)" toolTip="������������������������������������������"/>
284 <mx:Button label="������(������������������)" right="109" top="30" id="button_oldComment_reloadFromNico" click="button_oldComment_reloadFromNico_clickHandler(event)" toolTip="���������������������������������������������������������������������������������������(���������������������������������������������������������������������������)"/>
285 <mx:Button label="������(������������)" top="30" right="5" id="button_oldComment_reload" click="button_oldComment_reload_clickHandler(event)" toolTip="������������������������������������������������������������������������������������������������"/>
286 <mx:DataGrid left="0" right="0" top="55" bottom="0" dataProvider="{commentListProvider}" resizableColumns="true"
287 id="dataGrid_oldComment" editable="false" rowHeight="22" horizontalScrollPolicy="on" headerRelease="headerReleaseHandler(event)"
288 creationComplete="dataGrid_oldComment_creationCompleteHandler(event)" doubleClickEnabled="true"
289 itemDoubleClick="commentListDoubleClicked(event)">
290 <mx:columns>
291 <mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/>
292 <mx:DataGridColumn headerText="������������" dataField="comment_column" width="300"/>
293 <mx:DataGridColumn headerText="������������ID" dataField="user_id_column" width="150"/>
294 </mx:columns>
295 </mx:DataGrid>
296 </mx:Canvas>
297 <mx:Canvas label="NG������" width="100%" height="100%" toolTip="������������������������NG���������������������������">
298 <mx:ComboBox id="combobox_ngKind" left="5" top="5" width="85" height="22"
299 dataProvider="{Comments.NG_KIND_ARRAY}" selectedIndex="0"></mx:ComboBox>
300 <mx:TextInput left="97" enabled="true" id="textInput_ng" enter="ngTextInputEnter(event)" right="97" top="5"/>
301
302 <mx:Button right="50" top="5" width="40" label="+"
303 click="addItemToNgList()" enabled="true"
304 toolTip="NG������������������������������������"/>
305 <mx:Button id="button_removeNgList" right="5" top="5" width="40"
306 label="-" click="removeItemFromNgList()"
307 toolTip="NG���������������������������������������"/>
308 <mx:DataGrid id="dataGrid_NG" dataProvider="{ngListProvider}" itemClick="ngListItemClicked(event)" left="0" bottom="0" right="0" top="35">
309 <mx:columns>
310 <mx:DataGridColumn headerText="������" dataField="ng_kind_column" width="80"/>
311 <mx:DataGridColumn headerText="������" dataField="ng_word_column"/>
312 </mx:columns>
313 </mx:DataGrid>
314
315 </mx:Canvas>
316 </mx:TabNavigator>
317 <mx:Button label="ID���NG" bottom="23" left="5" enabled="true" id="button_addNgList_ID" click="addNGListIdButtonClicked()" toolTip="���������������������������ID���NG������������������"/>
318 <mx:Button label="���������������NG" left="80" bottom="23" id="button_addNgList_Word" click="addNGListWordButtonClicked()" toolTip="������������������������(������)���NG������������������"/>
319 <mx:Button label="ID���������" left="180" bottom="23" click="addPermissionIdButtonClicked()" toolTip="���������������������������ID���������ID������������������"/>
320 <mx:CheckBox label="������������������������������" left="5" bottom="2" id="checkbox_SyncComment" click="checkboxSyncCommentChanged()" toolTip="������������������������������������������������������������������������������������������������������������������������������������������������������������"/>
321 <mx:CheckBox label="������ID������������" id="checkBox_isShowOnlyPermissionComment" click="checkBoxIsSOPCChanged(event)" left="160" bottom="2" toolTip="������ID������������������������ID���������������������������������������"/>
322 </mx:Canvas>
323 <mx:Canvas label="������������������" width="100%" height="100%" id="canvas_playList" creationComplete="checkBox_repeatAllCompleteHandler(event)" verticalScrollPolicy="off" horizontalScrollPolicy="off">
324 <mx:DataGrid left="0" right="0" top="20" bottom="53" dataProvider="{playListProvider}" doubleClickEnabled="true"
325 dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" dragDrop="playListDragDropHandler(event)" id="dataGrid_playList"
326 itemDoubleClick="playListDoubleClicked()" showHeaders="false">
327 <mx:columns>
328 <mx:DataGridColumn>
329 </mx:DataGridColumn>
330 </mx:columns>
331 </mx:DataGrid>
332 <mx:CheckBox id="checkBox_repeatAll" right="5" bottom="5" label="���������������������"
333 change="checkboxRepeatAllChanged()"
334 toolTip="���������������������������������������������������������������������������������������������"/>
335 <mx:Button left="10" bottom="28" width="50" label="-"
336 click="playListItemDeleteButtonClicked(event)"
337 toolTip="������������������������������������������������������������"/>
338 <mx:Button id="button_reverse" left="68" bottom="28" width="50" label="������"
339 click="playListReverseButtonClicked(event)"
340 toolTip="������������������������������������������������������"/>
341 <mx:Button left="10" bottom="3" label="������"
342 click="playListSaveButtonClicked(event)" toolTip="���������������������������������������������������"/>
343 <mx:Button left="89" bottom="3" label="���������"
344 click="playListClearButtonClicked(event)" toolTip="������������������������������������������"/>
345 <mx:Button id="button_shuffle" left="126" bottom="28" width="80" label="���������������"
346 click="playListShuffleButtonClicked(event)"
347 toolTip="���������������������������������������������������"/>
348 <mx:Label left="0" top="0" right="0" id="label_playListTitle" text="{label_playListTitle_dataProvider}"/>
349 </mx:Canvas>
350 <mx:Canvas label="������" width="100%" height="100%" id="canvas_Tag">
351 <mx:TabNavigator left="0" top="0" bottom="0" right="0">
352 <mx:Canvas label="������������" width="100%" height="100%">
353 <mx:List id="list_nicoTag" dataProvider="{nicoTagProvider}" doubleClickEnabled="true" itemDoubleClick="tagListDoubleClickEventHandler(event)" left="0" top="0" bottom="0" right="0"></mx:List>
354 </mx:Canvas>
355 <mx:Canvas label="������������" width="100%" height="100%">
356 <mx:List id="list_localTag" dataProvider="{localTagProvider}" doubleClickEnabled="true" itemDoubleClick="tagListDoubleClickEventHandler(event)" left="0" top="0" bottom="0" right="0"></mx:List>
357 </mx:Canvas>
358 </mx:TabNavigator>
359 </mx:Canvas>
360 <mx:Canvas label="������" width="100%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off" id="canvas_ichiba">
361 <mx:TabNavigator left="0" top="0" bottom="0" right="0" id="tab_inner_ichiba">
362 <mx:Canvas label="������������" width="100%" height="100%">
363 <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)">
364 <mx:columns>
365 <mx:DataGridColumn dataField="col_image" width="80">
366 <mx:itemRenderer>
367 <fx:Component><mx:Image width="80" height="80" /></fx:Component>
368 </mx:itemRenderer>
369 </mx:DataGridColumn>
370 <mx:DataGridColumn dataField="col_info"/>
371 </mx:columns>
372 </mx:DataGrid>
373 </mx:Canvas>
374 <mx:Canvas label="������������" width="100%" height="100%">
375 <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)">
376 <mx:columns>
377 <mx:DataGridColumn dataField="col_image" width="80">
378 <mx:itemRenderer>
379 <fx:Component><mx:Image width="80" height="80" /></fx:Component>
380 </mx:itemRenderer>
381 </mx:DataGridColumn>
382 <mx:DataGridColumn dataField="col_info"/>
383 </mx:columns>
384 </mx:DataGrid>
385 </mx:Canvas>
386 </mx:TabNavigator>
387 </mx:Canvas>
388 <mx:Canvas label="���������" width="100%" height="100%" id="canvas_owner" verticalScrollPolicy="off" horizontalScrollPolicy="off">
389
390 <mx:Canvas left="5" top="0" width="50" height="50" backgroundColor="#969696"
391 contentBackgroundColor="#969696" dropShadowVisible="false">
392 <view:SmoothImage id="image_pubUserIcon" width="48" height="48"
393 doubleClick="pubUserLinkButton_clickHandler(event)"
394 doubleClickEnabled="true" top="1" left="1"
395 source="{pubUserNameIconUrl}"/>
396 </mx:Canvas>
397 <mx:Label left="63" top="0" text="���������������"/>
398 <mx:Label id="label_pubUserName" left="133" right="5" top="0"
399 text="{pubUserName}"/>
400 <mx:LinkButton id="pubUserLinkButton" left="58" top="22"
401 label="{pubUserLinkButtonText}"
402 click="pubUserLinkButton_clickHandler(event)"
403 color="#0000FF" textDecoration="underline"
404 toolTip="������������������������������������������������������������������������"/>
405
406 <mx:VDividedBox left="0" top="50" bottom="0" right="0">
407 <mx:TabNavigator width="100%" height="180">
408 <mx:Canvas id="canvas_owner_onNico" label="������������" width="100%" height="100%">
409 <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)"/>
410 </mx:Canvas>
411 <mx:Canvas id="canvas_owner_local" label="������������" width="100%" height="100%">
412 <mx:TextArea id="textArea_owner" editable="false" wordWrap="true" left="0" top="0" bottom="0" right="0" htmlText="{owner_text_local}" link="ownerTextLinkClicked(event)"/>
413 </mx:Canvas>
414 </mx:TabNavigator>
415 <mx:DataGrid width="100%" height="50%" id="dataGrid_ownerComment" dataProvider="{ownerCommentProvider}" doubleClickEnabled="true" itemDoubleClick="commentListDoubleClicked(event)" rowHeight="22">
416 <mx:columns>
417 <mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/>
418 <mx:DataGridColumn headerText="������������" dataField="command_column" width="100"/>
419 <mx:DataGridColumn headerText="������������" dataField="comment_column"/>
420 </mx:columns>
421 </mx:DataGrid>
422 </mx:VDividedBox>
423 </mx:Canvas>
424 <mx:Canvas label="������������" width="100%" height="100%" creationComplete="relationCanvasCreationCompleteHandler(event)">
425 <mx:ComboBox left="0" top="0" width="120" dataProvider="{relationSortComboboxDataProvider}" id="combobox_relationSort" change="relationSortComboboxChange(event)"></mx:ComboBox>
426 <mx:ComboBox left="128" top="0" width="120" dataProvider="{relationOrderComboboxDataProvider}" id="combobox_relationOrder" change="relationOrderComboboxChange(event)"></mx:ComboBox>
427 <mx:DataGrid left="0" top="30" bottom="0" right="0" dataProvider="{relationDataProvider}" doubleClickEnabled="true"
428 id="datagrid_relation" showHeaders="false" itemDoubleClick="relationItemDoubleClickHandler(event)" rowHeight="70">
429 <mx:columns>
430 <mx:DataGridColumn dataField="col_image" width="80">
431 <mx:itemRenderer>
432 <fx:Component><mx:Image width="80" height="70" /></fx:Component>
433 </mx:itemRenderer>
434 </mx:DataGridColumn>
435 <mx:DataGridColumn dataField="col_info"/>
436 </mx:columns>
437 </mx:DataGrid>
438 </mx:Canvas>
439 </mx:TabNavigator>
440 </mx:Canvas>
441 <mx:Canvas width="100%" height="100%" label="������������" creationComplete="canvas1_creationCompleteHandler(event)">
442 <mx:Label left="10" top="10" text="���������������"/>
443 <mx:Label id="videoTypeText" left="83" right="5" top="10" text="{videoType}" truncateToFit="true" selectable="true"/>
444
445 <mx:Label left="10" top="30" text="���������������"/>
446 <mx:Label id="connectionTypeText" left="83" right="5" top="30" text="{connectionType}" truncateToFit="true" selectable="true"/>
447
448 <mx:Label left="10" top="50" text="���������������������"/>
449 <mx:Label id="videoServerUrlText" left="107" right="5" top="50" text="{videoServerUrl}" toolTip="{videoServerUrl}" truncateToFit="true" selectable="true"/>
450
451 <mx:Label left="10" top="70" text="������������������������������"/>
452 <mx:Label id="messageServerUrlText" left="143" right="5" top="70" text="{messageServerUrl}" toolTip="{messageServerUrl}" truncateToFit="true" selectable="true"/>
453
454 <mx:Label left="10" top="90" text="���������������������������"/>
455 <mx:Label id="economyModeText" left="131" right="6" top="90" text="{economyMode}" truncateToFit="true" selectable="true"/>
456
457 <mx:Label left="10" top="110" text="���������������������"/>
458 <mx:Label id="nickNameText" left="107" right="6" top="110" text="{nickName}" truncateToFit="true" selectable="true"/>
459
460 <mx:Label left="10" top="130" text="������������������"/>
461 <mx:Label id="premiumText" left="95" right="6" top="130" text="{isPremium}" truncateToFit="true" selectable="true"/>
462 </mx:Canvas>
463 <mx:Canvas label="������" width="100%" height="100%">
464 <mx:Canvas label="������" id="canvas_config" verticalScrollPolicy="off" left="0" top="0" bottom="0" right="0"
465 backgroundColor="#ffffff">
466 <mx:TabNavigator left="0" top="0" bottom="0" right="0" id="tab_config">
467 <mx:Canvas label="������������" left="0" top="0" bottom="0" right="0" id="canvas_config_1"
468 creationComplete="configCanvas1CreationCompleteHandler(event)">
469 <mx:CheckBox label="Player������������������������������������������" id="checkbox_resizePlayerEachPlay" change="checkboxResizePlayerEachPlay(event)" left="10" top="10"/>
470
471 <mx:RadioButtonGroup id="radioGroup_resizeType" selectedValue="1" />
472 <mx:RadioButton label="������������������������������������" id="radioButton_resizeNicoDou" groupName="radioGroup_resizeType" value="1" left="35" top="28" change="radioButtonResizeTypeChanged(event)" toolTip="������������������������������������������������������������������������������������������������������������"/>
473 <mx:CheckBox label="16:9���������������������������" id="checkbox_enableWideMode" selected="true" left="68" top="45" change="checkboxEnableWideModeChanged(event)" toolTip="���������������������16:9���������������������������������������������Player���������������16:9���������������������"/>
474 <mx:RadioButton label="���������������������������������" id="radioButton_resizeVideo" groupName="radioGroup_resizeType" value="2" left="35" top="70" change="radioButtonResizeTypeChanged(event)" toolTip="���������������������������������������������������������������������������������������"/>
475
476 <mx:CheckBox left="10" top="122"
477 label="���������������������������������������������"
478 toolTip="FLV/MP4���������������������������������������������������������"
479 id="checkBox_isSmoothing"
480 change="checkBoxSmoothingChanged(event)"
481 selected="true"/>
482 <mx:CheckBox left="35" top="149"
483 label="���������������������������������������������������������"
484 toolTip="FLV/MP4���������������������������������������������������������������������������������������������������������������������"
485 id="checkBox_isSmoothingOnlyNotPixelIdenticalDimensions"
486 change="checkBoxSmoothingOnlyNotPixelIdenticalDimensionsChanged(event)"
487 selected="true"/>
488
489 <mx:CheckBox label="������������������������������������������������������������" id="checkBox_isAlwaysEconomyForStreaming" left="10" top="96" change="checkBoxAlwaysEconomyChanged(event)" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������������"/>
490 <mx:Label x="10" y="182" text="������������:"/>
491 <mx:HSlider minimum="2" maximum="3" snapInterval="1" value="2" left="143" top="182" change="playerQualitySliderChanged(event)" id="slider_playerQuality" right="10" toolTip="Player���������������������������������������������������������������������������"
492 dataTipFormatFunction="showQualitySliderDataTipFunction"/>
493 <mx:Label text="���" left="143" top="208"/>
494 <mx:Label right="10" top="208" text="������"/>
495
496 </mx:Canvas>
497 <mx:Canvas label="������������������" left="0" top="0" bottom="0" right="0" id="canvas_config_2"
498 creationComplete="configCanvas2CreationCompleteHandler(event)">
499
500 <mx:CheckBox label="������������������������������" top="36" left="10" id="checkBox_commentBold" change="checkBoxCommentBoldChanged(event)"/>
501 <mx:CheckBox left="10" top="10" label="���������������������������������������������������" toolTip="������������������������������������������������������������������������������������������������" id="checkBox_hideSekaShinComment" click="checkBoxHideSekaShinComment(event)"/>
502 <mx:CheckBox left="10" top="62" label="������������������������������������������" toolTip="������������������������������������������������������������������������������������������������������������������" id="checkBox_isNgUpEnable" change="checkBoxNgUpChanged(event)"/>
503
504 <mx:Label left="10" top="88" text="���������������������������������"
505 toolTip="1���������������������������������������������������������(���������������������)���DL������������������������������������������������������������������������������"/>
506 <mx:NumericStepper left="167" top="85" maximum="100000" stepSize="50"
507 value="50" id="commentNumStepper"
508 change="commentCountNumStepperChanged(event)"
509 toolTip="1���������������������������������������������������������(���������������������)���DL������������������������������������������������������������������������������"/>
510 <mx:Label left="260" top="88" text="������������/���"/>
511
512 <mx:Label left="10" top="119" text="������������������������������������"
513 toolTip="1������������������������������������������������������������������(���������������������)���DL������������������������������������������������������������������������������"/>
514 <mx:NumericStepper left="167" top="116" maximum="100000" value="50"
515 stepSize="50" id="ownerCommentNumStepper"
516 change="ownerCommentCountNumStepperChanged(event)"
517 toolTip="1������������������������������������������������������������������(���������������������)���DL������������������������������������������������������������������������������"/>
518 <mx:Label left="260" top="119" text="������������/���"/>
519
520 <mx:Label text="���������������������������" left="10" top="147"/>
521 <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"/>
522 <mx:Label text="0.5���" left="143" top="173"/>
523 <mx:Label right="10" top="173" text="1.5���"/>
524 <mx:Label text="���������������FPS���" left="10" top="199" toolTip="������������������������FPS���������������������������������������������������������������"/>
525 <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���������������������������������������������������������������"/>
526 <mx:Label text="7.5fps" left="143" top="225"/>
527 <mx:Label right="10" top="225" text="120fps"/>
528 <mx:Label x="10" y="249" text="���������������������������"/>
529 <mx:HSlider y="249" left="143" minimum="1" maximum="5" snapInterval="1" right="10" showDataTip="true" value="3" id="slider_showCommentTime" change="sliderShowCommentTimeChanged(event)"/>
530 <mx:Label text="1���" left="143" top="275"/>
531 <mx:Label text="5���" top="275" right="10"/>
532 <mx:Label x="10" y="301" text="������������������������������" toolTip="������������������������������Player���������[Comment]������������������/������������������������������������������"/>
533 <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="������������������������������[���������������������]������������������������������������������"/>
534 <mx:Label text="1%" left="143" top="327"/>
535 <mx:Label text="100%" top="327" right="10"/>
536
537 </mx:Canvas>
538 <mx:Canvas label="���������" left="0" top="0" bottom="0" right="0" id="canvas_config_3"
539 creationComplete="configCanvas3CreationCompleteHandler(event)">
540 <mx:CheckBox label="Player���������������������������������" id="checkbox_PlayerAlwaysFront" change="checkBoxPlayerAlwaysFrontChanged(event)" minHeight="20" left="10" top="10"/>
541 <mx:CheckBox label="InfoView���������������������������������" id="checkbox_InfoViewAlwaysFront" change="checkBoxInfoViewAlwaysFrontChanged(event)" minHeight="20" left="10" top="38"/>
542 <mx:CheckBox label="InfoView���Player������������������" id="checkbox_playerFollow" change="checkboxPlayerFollowChanged(event)" left="10" top="66"/>
543 <mx:CheckBox label="InfoView������������Player���������������" id="checkbox_followInfoViewHeight" change="checkboxFollowInfoViewHeight(event)" left="10" top="93"
544 toolTip="InfoView���������������Player���������������������������������������������"/>
545
546 <mx:CheckBox label="Player���������������������������������" left="10" top="133" id="checkBox_showAlwaysNicowariArea" change="checkBoxShowAlwaysNicowariAreaChanged(event)" toolTip="Player���������������������������������������������������������������������������������������������������������������������������������������"/>
547 <mx:CheckBox label="Player���������������������������������" left="10" top="159" id="checkbox_hideTagArea" change="checkboxHideTagAreaChanged(event)" toolTip="Player���������������������������������������������������"/>
548 <mx:CheckBox id="checkbox_hideUnderController" left="10" top="185" height="22"
549 label="Player������������������������������������������"
550 change="checkboxHideUnderControllerChanged(event)" fontWeight="normal"
551 rollOut="videoPlayer.videoController.rollOut(event)"
552 rollOver="videoPlayer.videoController.rollOver(event)"
553 toolTip="Player���������������������������������������������������������������������������������������������������������������������"/>
554
555 <mx:CheckBox label="���������������������������������������������" left="11" top="225" id="checkBox_renewComment" click="checkBoxRenewCommentChanged()" toolTip="������������������������������������������������������������������������������������������������"/>
556 <mx:CheckBox label="������������������������������������" left="36" top="247" id="checkBox_renewTagAndNicowari" click="checkBoxRenewTagNicowariChanged()" toolTip="������������������������������������������������������������������������������"/>
557 <mx:CheckBox label="���������������������������������������������������������������������������������" left="36" top="267" id="checkBox_isAppendComment" change="checkBoxAppendCommentChanged(event)" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������NNDD������������������������������������������������������������������������������������������������������"/>
558
559 <mx:CheckBox label="������������������������������������" left="11" top="293" id="checkBox_enableJump" click="checkBoxIsEnableJump(event)" toolTip="������������������������������������������������������������������������������"/>
560 <mx:CheckBox label="���������������������������������������������������������" left="36" top="314" id="checkBox_askToUserOnJump" click="checkBoxIsAskToUserOnJump(event)" toolTip="���������������������������������������������������������������������������������������������������������������"/>
561 <mx:HRule left="10" right="10" top="120" height="5"/>
562 <mx:HRule left="10" right="10" top="212" height="5"/>
563
564
565 </mx:Canvas>
566 </mx:TabNavigator>
567 </mx:Canvas>
568 </mx:Canvas>
569 </mx:ViewStack>
570 <mx:ToggleButtonBar dataProvider="{viewstack1}" left="5" bottom="5" fontWeight="normal" height="20">
571 </mx:ToggleButtonBar>
572 <mx:Button id="button_videoOpen" right="5" bottom="5" width="87" height="20" label="���������������..."
573 click="button_videoOpen_clickHandler(event)"/>
574
575
576 </s:Window>

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