| 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" title="Info" |
| 7 |
layout="absolute" width="400" height="580" horizontalScrollPolicy="off" verticalScrollPolicy="off" |
| 8 |
windowComplete="windowCompleteHandler()" closing="windowClosing(event)" windowMove="windowMove(event)" windowResize="windowResized(event)" |
| 9 |
minWidth="300" minHeight="300" xmlns:ns1="*" activate="window1_activateHandler(event)"> |
| 10 |
|
| 11 |
<mx:Script> |
| 12 |
<![CDATA[ |
| 13 |
import mx.events.DropdownEvent; |
| 14 |
import mx.events.IndexChangedEvent; |
| 15 |
|
| 16 |
import org.mineap.nndd.player.comment.Comments; |
| 17 |
|
| 18 |
private var thumbImgMenu:ContextMenu; |
| 19 |
private var thumbImgMenuItem1:ContextMenuItem; |
| 20 |
private var thumbImgMenuItem2:ContextMenuItem; |
| 21 |
private var thumbImgMenuItem3:ContextMenuItem; |
| 22 |
private var thumbImgMenuItem4:ContextMenuItem; |
| 23 |
private var thumbImgMenuItem5:ContextMenuItem; |
| 24 |
|
| 25 |
protected function window1_activateHandler(event:Event):void |
| 26 |
{ |
| 27 |
Mouse.show(); |
| 28 |
} |
| 29 |
|
| 30 |
protected function image_thumbImg_creationCompleteHandler(event:FlexEvent):void |
| 31 |
{ |
| 32 |
thumbImgMenu = new ContextMenu(); |
| 33 |
|
| 34 |
thumbImgMenuItem1 = new ContextMenuItem(Message.L_OPEN_DEFAULT_WEB_BROWSER); |
| 35 |
thumbImgMenuItem1.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, button_goToWebClicked); |
| 36 |
|
| 37 |
thumbImgMenuItem2 = new ContextMenuItem(Message.L_TWEET, true); |
| 38 |
thumbImgMenuItem2.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, tweet); |
| 39 |
|
| 40 |
thumbImgMenuItem3 = new ContextMenuItem(Message.L_ADD_HATENA_BOOKMARK, true); |
| 41 |
thumbImgMenuItem3.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, addHatenaBookmark); |
| 42 |
|
| 43 |
thumbImgMenuItem4 = new ContextMenuItem(Message.L_OPEN_NICOSOUND, true); |
| 44 |
thumbImgMenuItem4.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, openNicoSound); |
| 45 |
|
| 46 |
thumbImgMenuItem5 = new ContextMenuItem(Message.L_OPEN_NICOMIMI, false) |
| 47 |
thumbImgMenuItem5.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, openNicomimi); |
| 48 |
|
| 49 |
thumbImgMenu.customItems.push(thumbImgMenuItem1, thumbImgMenuItem2, thumbImgMenuItem3, thumbImgMenuItem4, thumbImgMenuItem5); |
| 50 |
|
| 51 |
image_thumbImg.contextMenu = thumbImgMenu; |
| 52 |
|
| 53 |
} |
| 54 |
|
| 55 |
|
| 56 |
protected function checkbox_showHtml_rollOverHandler(event:MouseEvent):void |
| 57 |
{ |
| 58 |
checkbox_showHtml.alpha = 1.0; |
| 59 |
} |
| 60 |
|
| 61 |
|
| 62 |
protected function checkbox_showHtml_rollOutHandler(event:MouseEvent):void |
| 63 |
{ |
| 64 |
checkbox_showHtml.alpha = 0.3; |
| 65 |
} |
| 66 |
|
| 67 |
|
| 68 |
protected function checkbox_showHtml_changeHandler(event:Event):void |
| 69 |
{ |
| 70 |
|
| 71 |
isShowHTMLOwnerComment = checkbox_showHtml.selected; |
| 72 |
|
| 73 |
//��������������������������� |
| 74 |
var str:String = owner_text_temp; |
| 75 |
owner_text_temp = owner_text_nico; |
| 76 |
owner_text_nico = str; |
| 77 |
} |
| 78 |
|
| 79 |
|
| 80 |
protected function checkbox_showHtml_creationCompleteHandler(event:FlexEvent):void |
| 81 |
{ |
| 82 |
checkbox_showHtml.setConstraintValue("backgroundColor", new int("0x000000")); |
| 83 |
|
| 84 |
} |
| 85 |
|
| 86 |
|
| 87 |
protected function comboBox_mylist_closeHandler(event:DropdownEvent):void |
| 88 |
{ |
| 89 |
var index:int = comboBox_mylist.selectedIndex; |
| 90 |
if(index != -1){ |
| 91 |
ConfigManager.getInstance().setItem("infoViewSelectedMyListIndex", index); |
| 92 |
} |
| 93 |
} |
| 94 |
|
| 95 |
|
| 96 |
protected function button_videoOpen_clickHandler(event:MouseEvent):void |
| 97 |
{ |
| 98 |
if(videoPlayer != null){ |
| 99 |
videoPlayer.fileOpen(); |
| 100 |
} |
| 101 |
} |
| 102 |
|
| 103 |
|
| 104 |
protected function button_oldComment_reload_clickHandler(event:MouseEvent):void |
| 105 |
{ |
| 106 |
reloadOldComment(); |
| 107 |
} |
| 108 |
|
| 109 |
public function reloadOldComment():void{ |
| 110 |
playerController.reloadLocalComment(this.oldCommentDate); |
| 111 |
} |
| 112 |
|
| 113 |
public function get oldCommentDate():Date{ |
| 114 |
var date:Date = null; |
| 115 |
if(dateField_oldComment == null){ |
| 116 |
date = null; |
| 117 |
}else{ |
| 118 |
date = dateField_oldComment.selectedDate; |
| 119 |
date.hours = numericStepper_hour_oldComment.value; |
| 120 |
date.minutes = numericStepper_min_oldComment.value; |
| 121 |
} |
| 122 |
return date; |
| 123 |
} |
| 124 |
|
| 125 |
public function resetOldCommentDate():void{ |
| 126 |
var date:Date = new Date(); |
| 127 |
if(dateField_oldComment != null){ |
| 128 |
dateField_oldComment.selectedDate = date; |
| 129 |
numericStepper_hour_oldComment.value = date.hours; |
| 130 |
numericStepper_min_oldComment.value = date.minutes; |
| 131 |
} |
| 132 |
} |
| 133 |
|
| 134 |
protected function dataGrid_oldComment_creationCompleteHandler(event:FlexEvent):void |
| 135 |
{ |
| 136 |
resetOldCommentDate(); |
| 137 |
} |
| 138 |
|
| 139 |
protected function tabNavigator_comment_changeHandler(event:IndexChangedEvent):void |
| 140 |
{ |
| 141 |
// ������������������������������������������������������ |
| 142 |
if(event.oldIndex == 1){ |
| 143 |
playerController.reloadLocalComment(); |
| 144 |
} |
| 145 |
} |
| 146 |
|
| 147 |
protected function oldCommentTimeResetButton_clickHandler(event:MouseEvent):void |
| 148 |
{ |
| 149 |
resetOldCommentDate(); |
| 150 |
} |
| 151 |
|
| 152 |
|
| 153 |
protected function button_oldComment_reloadFromNico_clickHandler(event:MouseEvent):void |
| 154 |
{ |
| 155 |
playerController.getOldCommentFromNico(oldCommentDate); |
| 156 |
} |
| 157 |
|
| 158 |
]]> |
| 159 |
</mx:Script> |
| 160 |
|
| 161 |
<mx:Script source="org/mineap/nndd/view/VideoInfoView.as" /> |
| 162 |
|
| 163 |
<mx:Image id="image_thumbImg" left="5" top="2" scaleContent="true" height="70" click="button_goToWebClicked(event)" |
| 164 |
toolTip="������������������������������������������������������������" enabled="true" width="92" creationComplete="image_thumbImg_creationCompleteHandler(event)"/> |
| 165 |
|
| 166 |
<mx:ComboBox left="100" top="53" right="128" id="comboBox_mylist" dataProvider="{myListDataProvider}" close="comboBox_mylist_closeHandler(event)" height="20"></mx:ComboBox> |
| 167 |
<mx:Button id="button_mylist" right="74" top="53" width="50" height="20" label="������" |
| 168 |
click="myListAddButtonClicked(event)" toolTip="���������������������������������������������������������������"/> |
| 169 |
<mx:VRule width="12" height="20" top="53" right="58"/> |
| 170 |
|
| 171 |
<mx:Button id="button_download" right="5" top="53" width="50" height="20" label="DL" |
| 172 |
click="button_addDownloadList(event)" toolTip="������������������������������������������������������"/> |
| 173 |
|
| 174 |
<mx:TextArea left="5" top="75" right="5" height="73" htmlText="{owner_text_nico}" id="textArea_upperOwnerText" link="ownerTextLinkClicked(event)"/> |
| 175 |
<mx:CheckBox label="HTML" right="20" id="checkbox_showHtml" alpha="0.3" enabled="true" selected="true" rollOver="checkbox_showHtml_rollOverHandler(event)" |
| 176 |
rollOut="checkbox_showHtml_rollOutHandler(event)" change="checkbox_showHtml_changeHandler(event)" top="127" creationComplete="checkbox_showHtml_creationCompleteHandler(event)" |
| 177 |
toolTip="HTML���������������������������������������������������������������������������������������������������������������������������������������������������������������������" fontWeight="bold"/> |
| 178 |
<mx:Text id="text_info" left="100" top="2" height="55"/> |
| 179 |
<mx:ViewStack id="viewstack1" left="5" right="5" top="150" bottom="27"> |
| 180 |
<mx:Canvas label="������������" width="100%" height="100%" id="canvas_videoInfo"> |
| 181 |
<mx:TabNavigator left="0" right="0" top="0" bottom="0"> |
| 182 |
<mx:Canvas label="������������" width="100%" height="100%" id="canvas_comment_parent"> |
| 183 |
<mx:TabNavigator right="0" left="0" top="0" bottom="48" id="tabNavigator_comment" change="tabNavigator_comment_changeHandler(event)"> |
| 184 |
<mx:Canvas label="���������������������" width="100%" height="100%" id="canvas_comment" toolTip="������������������������������������������"> |
| 185 |
<mx:DataGrid left="0" right="0" top="0" bottom="0" dataProvider="{commentListProvider}" resizableColumns="true" |
| 186 |
id="dataGrid_comment" headerRelease="headerReleaseHandler(event)" doubleClickEnabled="true" |
| 187 |
itemDoubleClick="commentListDoubleClicked(event)" editable="false" rowHeight="22" |
| 188 |
horizontalScrollPolicy="on"> |
| 189 |
<mx:columns> |
| 190 |
<mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/> |
| 191 |
<mx:DataGridColumn headerText="������������" dataField="comment_column" width="300"/> |
| 192 |
<mx:DataGridColumn headerText="������������ID" dataField="user_id_column" width="150"/> |
| 193 |
</mx:columns> |
| 194 |
</mx:DataGrid> |
| 195 |
</mx:Canvas> |
| 196 |
<mx:Canvas label="������������������" width="100%" height="100%" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������"> |
| 197 |
<mx:DateField left="5" top="5" id="dateField_oldComment"/> |
| 198 |
<mx:NumericStepper left="103" top="5" minimum="0" maximum="23" id="numericStepper_hour_oldComment"/> |
| 199 |
<mx:Label text="���" left="169" top="7"/> |
| 200 |
<mx:NumericStepper left="196" top="5" minimum="0" maximum="59" id="numericStepper_min_oldComment"/> |
| 201 |
<mx:Label text="���" left="262" top="7"/> |
| 202 |
<mx:Button label="������������" right="5" top="5" click="oldCommentTimeResetButton_clickHandler(event)" toolTip="������������������������������������������"/> |
| 203 |
<mx:Button label="������(������������������)" right="109" top="30" id="button_oldComment_reloadFromNico" click="button_oldComment_reloadFromNico_clickHandler(event)" toolTip="���������������������������������������������������������������������������������������(���������������������������������������������������������������������������)"/> |
| 204 |
<mx:Button label="������(������������)" top="30" right="5" id="button_oldComment_reload" click="button_oldComment_reload_clickHandler(event)" toolTip="������������������������������������������������������������������������������������������������"/> |
| 205 |
<mx:DataGrid left="0" right="0" top="55" bottom="0" dataProvider="{commentListProvider}" resizableColumns="true" |
| 206 |
id="dataGrid_oldComment" editable="false" rowHeight="22" horizontalScrollPolicy="on" headerRelease="headerReleaseHandler(event)" |
| 207 |
creationComplete="dataGrid_oldComment_creationCompleteHandler(event)" doubleClickEnabled="true" |
| 208 |
itemDoubleClick="commentListDoubleClicked(event)"> |
| 209 |
<mx:columns> |
| 210 |
<mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/> |
| 211 |
<mx:DataGridColumn headerText="������������" dataField="comment_column" width="300"/> |
| 212 |
<mx:DataGridColumn headerText="������������ID" dataField="user_id_column" width="150"/> |
| 213 |
</mx:columns> |
| 214 |
</mx:DataGrid> |
| 215 |
</mx:Canvas> |
| 216 |
<mx:Canvas label="NG������" width="100%" height="100%" toolTip="������������������������NG���������������������������"> |
| 217 |
<mx:ComboBox id="combobox_ngKind" left="5" top="5" width="85" height="22" |
| 218 |
dataProvider="{Comments.NG_KIND_ARRAY}" selectedIndex="0"></mx:ComboBox> |
| 219 |
<mx:TextInput left="97" enabled="true" id="textInput_ng" enter="ngTextInputEnter(event)" right="97" top="5"/> |
| 220 |
|
| 221 |
<mx:Button right="50" top="5" width="40" label="+" |
| 222 |
click="addItemToNgList()" enabled="true" |
| 223 |
toolTip="NG������������������������������������"/> |
| 224 |
<mx:Button id="button_removeNgList" right="5" top="5" width="40" |
| 225 |
label="-" click="removeItemFromNgList()" |
| 226 |
toolTip="NG���������������������������������������"/> |
| 227 |
<mx:DataGrid id="dataGrid_NG" dataProvider="{ngListProvider}" itemClick="ngListItemClicked(event)" left="0" bottom="0" right="0" top="35"> |
| 228 |
<mx:columns> |
| 229 |
<mx:DataGridColumn headerText="������" dataField="ng_kind_column" width="80"/> |
| 230 |
<mx:DataGridColumn headerText="������" dataField="ng_word_column"/> |
| 231 |
</mx:columns> |
| 232 |
</mx:DataGrid> |
| 233 |
|
| 234 |
</mx:Canvas> |
| 235 |
</mx:TabNavigator> |
| 236 |
<mx:Button label="ID���NG" bottom="23" left="5" enabled="true" id="button_addNgList_ID" click="addNGListIdButtonClicked()" toolTip="���������������������������ID���NG������������������"/> |
| 237 |
<mx:Button label="���������������NG" left="80" bottom="23" id="button_addNgList_Word" click="addNGListWordButtonClicked()" toolTip="������������������������(������)���NG������������������"/> |
| 238 |
<mx:Button label="ID���������" left="180" bottom="23" click="addPermissionIdButtonClicked()" toolTip="���������������������������ID���������ID������������������"/> |
| 239 |
<mx:CheckBox label="������������������������������" left="5" bottom="2" id="checkbox_SyncComment" click="checkboxSyncCommentChanged()" toolTip="������������������������������������������������������������������������������������������������������������������������������������������������������������"/> |
| 240 |
<mx:CheckBox label="������ID������������" id="checkBox_isShowOnlyPermissionComment" click="checkBoxIsSOPCChanged(event)" left="160" bottom="2" toolTip="������ID������������������������ID���������������������������������������"/> |
| 241 |
</mx:Canvas> |
| 242 |
<mx:Canvas label="������������������" width="100%" height="100%" id="canvas_playList" creationComplete="checkBox_repeatAllCompleteHandler(event)" verticalScrollPolicy="off" horizontalScrollPolicy="off"> |
| 243 |
<mx:DataGrid left="0" right="0" top="20" bottom="53" dataProvider="{playListProvider}" doubleClickEnabled="true" |
| 244 |
dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" dragDrop="playListDragDropHandler(event)" id="dataGrid_playList" |
| 245 |
itemDoubleClick="playListDoubleClicked()" showHeaders="false"> |
| 246 |
<mx:columns> |
| 247 |
<mx:DataGridColumn> |
| 248 |
</mx:DataGridColumn> |
| 249 |
</mx:columns> |
| 250 |
</mx:DataGrid> |
| 251 |
<mx:CheckBox id="checkBox_repeatAll" right="5" bottom="5" label="���������������������" |
| 252 |
change="checkboxRepeatAllChanged()" |
| 253 |
toolTip="���������������������������������������������������������������������������������������������"/> |
| 254 |
<mx:Button left="10" bottom="28" width="50" label="-" |
| 255 |
click="playListItemDeleteButtonClicked(event)" |
| 256 |
toolTip="������������������������������������������������������������"/> |
| 257 |
<mx:Button id="button_reverse" left="68" bottom="28" width="50" label="������" |
| 258 |
click="playListReverseButtonClicked(event)" |
| 259 |
toolTip="������������������������������������������������������"/> |
| 260 |
<mx:Button left="10" bottom="3" label="������" |
| 261 |
click="playListSaveButtonClicked(event)" toolTip="���������������������������������������������������"/> |
| 262 |
<mx:Button left="89" bottom="3" label="���������" |
| 263 |
click="playListClearButtonClicked(event)" toolTip="������������������������������������������"/> |
| 264 |
<mx:Button id="button_shuffle" left="126" bottom="28" width="80" label="���������������" |
| 265 |
click="playListShuffleButtonClicked(event)" |
| 266 |
toolTip="���������������������������������������������������"/> |
| 267 |
<mx:Label left="0" top="0" right="0" id="label_playListTitle" text="{label_playListTitle_dataProvider}"/> |
| 268 |
</mx:Canvas> |
| 269 |
<mx:Canvas label="������" width="100%" height="100%" id="canvas_Tag"> |
| 270 |
<mx:TabNavigator left="0" top="0" bottom="0" right="0"> |
| 271 |
<mx:Canvas label="������������" width="100%" height="100%"> |
| 272 |
<mx:List id="list_nicoTag" dataProvider="{nicoTagProvider}" doubleClickEnabled="true" itemDoubleClick="tagListDoubleClickEventHandler(event)" left="0" top="0" bottom="0" right="0"></mx:List> |
| 273 |
</mx:Canvas> |
| 274 |
<mx:Canvas label="������������" width="100%" height="100%"> |
| 275 |
<mx:List id="list_localTag" dataProvider="{localTagProvider}" doubleClickEnabled="true" itemDoubleClick="tagListDoubleClickEventHandler(event)" left="0" top="0" bottom="0" right="0"></mx:List> |
| 276 |
</mx:Canvas> |
| 277 |
</mx:TabNavigator> |
| 278 |
</mx:Canvas> |
| 279 |
<mx:Canvas label="������" width="100%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off" id="canvas_ichiba"> |
| 280 |
<mx:TabNavigator left="0" top="0" bottom="0" right="0" id="tab_inner_ichiba"> |
| 281 |
<mx:Canvas label="������������" width="100%" height="100%"> |
| 282 |
<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)"> |
| 283 |
<mx:columns> |
| 284 |
<mx:DataGridColumn dataField="col_image" width="80"> |
| 285 |
<mx:itemRenderer> |
| 286 |
<mx:Component><mx:Image width="80" height="80" /></mx:Component> |
| 287 |
</mx:itemRenderer> |
| 288 |
</mx:DataGridColumn> |
| 289 |
<mx:DataGridColumn dataField="col_info"/> |
| 290 |
</mx:columns> |
| 291 |
</mx:DataGrid> |
| 292 |
</mx:Canvas> |
| 293 |
<mx:Canvas label="������������" width="100%" height="100%"> |
| 294 |
<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)"> |
| 295 |
<mx:columns> |
| 296 |
<mx:DataGridColumn dataField="col_image" width="80"> |
| 297 |
<mx:itemRenderer> |
| 298 |
<mx:Component><mx:Image width="80" height="80" /></mx:Component> |
| 299 |
</mx:itemRenderer> |
| 300 |
</mx:DataGridColumn> |
| 301 |
<mx:DataGridColumn dataField="col_info"/> |
| 302 |
</mx:columns> |
| 303 |
</mx:DataGrid> |
| 304 |
</mx:Canvas> |
| 305 |
</mx:TabNavigator> |
| 306 |
</mx:Canvas> |
| 307 |
<mx:Canvas label="���������" width="100%" height="100%" id="canvas_owner"> |
| 308 |
<mx:VDividedBox left="0" top="0" bottom="0" right="0"> |
| 309 |
<mx:TabNavigator width="100%" height="200"> |
| 310 |
<mx:Canvas id="canvas_owner_onNico" label="������������" width="100%" height="100%"> |
| 311 |
<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)"/> |
| 312 |
</mx:Canvas> |
| 313 |
<mx:Canvas id="canvas_owner_local" label="������������" width="100%" height="100%"> |
| 314 |
<mx:TextArea id="textArea_owner" editable="false" wordWrap="true" left="0" top="0" bottom="0" right="0" htmlText="{owner_text_local}" link="ownerTextLinkClicked(event)"/> |
| 315 |
</mx:Canvas> |
| 316 |
</mx:TabNavigator> |
| 317 |
<mx:DataGrid width="100%" height="50%" id="dataGrid_ownerComment" dataProvider="{ownerCommentProvider}" doubleClickEnabled="true" itemDoubleClick="commentListDoubleClicked(event)" rowHeight="22"> |
| 318 |
<mx:columns> |
| 319 |
<mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/> |
| 320 |
<mx:DataGridColumn headerText="������������" dataField="command_column" width="100"/> |
| 321 |
<mx:DataGridColumn headerText="������������" dataField="comment_column"/> |
| 322 |
</mx:columns> |
| 323 |
</mx:DataGrid> |
| 324 |
</mx:VDividedBox> |
| 325 |
</mx:Canvas> |
| 326 |
<mx:Canvas label="������������" width="100%" height="100%" creationComplete="relationCanvasCreationCompleteHandler(event)"> |
| 327 |
<mx:ComboBox left="0" top="0" width="120" dataProvider="{relationSortComboboxDataProvider}" id="combobox_relationSort" change="relationSortComboboxChange(event)"></mx:ComboBox> |
| 328 |
<mx:ComboBox left="128" top="0" width="120" dataProvider="{relationOrderComboboxDataProvider}" id="combobox_relationOrder" change="relationOrderComboboxChange(event)"></mx:ComboBox> |
| 329 |
<mx:DataGrid left="0" top="30" bottom="0" right="0" dataProvider="{relationDataProvider}" doubleClickEnabled="true" |
| 330 |
id="datagrid_relation" showHeaders="false" itemDoubleClick="relationItemDoubleClickHandler(event)" rowHeight="70"> |
| 331 |
<mx:columns> |
| 332 |
<mx:DataGridColumn dataField="col_image" width="80"> |
| 333 |
<mx:itemRenderer> |
| 334 |
<mx:Component><mx:Image width="80" height="70" /></mx:Component> |
| 335 |
</mx:itemRenderer> |
| 336 |
</mx:DataGridColumn> |
| 337 |
<mx:DataGridColumn dataField="col_info"/> |
| 338 |
</mx:columns> |
| 339 |
</mx:DataGrid> |
| 340 |
</mx:Canvas> |
| 341 |
</mx:TabNavigator> |
| 342 |
</mx:Canvas> |
| 343 |
<mx:Canvas label="������" width="100%" height="100%"> |
| 344 |
<mx:Canvas label="������" id="canvas_config" verticalScrollPolicy="on" left="0" top="0" bottom="0" right="0" creationComplete="configCanvasCreationCompleteHandler(event)" |
| 345 |
backgroundColor="#ffffff"> |
| 346 |
<mx:CheckBox label="Player���������������������������������" id="checkbox_PlayerAlwaysFront" change="checkBoxPlayerAlwaysFrontChanged(event)" minHeight="20" left="10" top="10"/> |
| 347 |
<mx:CheckBox label="InfoView���������������������������������" id="checkbox_InfoViewAlwaysFront" change="checkBoxInfoViewAlwaysFrontChanged(event)" minHeight="20" left="10" top="40"/> |
| 348 |
<mx:CheckBox label="InfoView���Player������������������" id="checkbox_playerFollow" change="checkboxPlayerFollowChanged(event)" left="10" top="70"/> |
| 349 |
<mx:CheckBox label="Player������������������������������������������" id="checkbox_resizePlayerEachPlay" change="checkboxResizePlayerEachPlay(event)" left="10" top="100"/> |
| 350 |
<mx:RadioButton label="������������������������������������" id="radioButton_resizeNicoDou" groupName="radioGroup_resizeType" value="1" left="35" top="118" change="radioButtonResizeTypeChanged(event)" toolTip="������������������������������������������������������������������������������������������������������������"/> |
| 351 |
<mx:RadioButton label="���������������������������������" id="radioButton_resizeVideo" groupName="radioGroup_resizeType" value="2" left="35" top="160" change="radioButtonResizeTypeChanged(event)" toolTip="���������������������������������������������������������������������������������������"/> |
| 352 |
<mx:RadioButtonGroup id="radioGroup_resizeType" selectedValue="1" /> |
| 353 |
<mx:CheckBox label="16:9���������������������������" id="checkbox_enableWideMode" selected="true" left="68" top="135" change="checkboxEnableWideModeChanged(event)" toolTip="���������������������16:9���������������������������������������������Player���������������16:9���������������������"/> |
| 354 |
<mx:CheckBox label="Player���������������������������������" left="10" top="190" id="checkBox_showAlwaysNicowariArea" change="checkBoxShowAlwaysNicowariAreaChanged(event)" toolTip="Player���������������������������������������������������������������������������������������������������������������������������������������"/> |
| 355 |
<mx:CheckBox label="Player���������������������������������" left="10" top="220" id="checkbox_hideTagArea" change="checkboxHideTagAreaChanged(event)" toolTip="Player���������������������������������������������������"/> |
| 356 |
<mx:CheckBox id="checkbox_hideUnderController" left="10" top="250" height="22" |
| 357 |
label="Player������������������������������������������" |
| 358 |
change="checkboxHideUnderControllerChanged(event)" fontWeight="normal" |
| 359 |
rollOut="videoPlayer.videoController.rollOut(event)" |
| 360 |
rollOver="videoPlayer.videoController.rollOver(event)" |
| 361 |
toolTip="Player���������������������������������������������������������������������������������������������������������������������"/> |
| 362 |
<mx:CheckBox label="���������������������������������������������" left="10" top="280" id="checkBox_renewComment" click="checkBoxRenewCommentChanged()" toolTip="������������������������������������������������������������������������������������������������"/> |
| 363 |
<mx:CheckBox label="������������������������������������" left="35" top="301" id="checkBox_renewTagAndNicowari" click="checkBoxRenewTagNicowariChanged()" toolTip="������������������������������������������������������������������������������"/> |
| 364 |
<mx:CheckBox label="���������������������������������������������������������������������������������" left="35" top="321" id="checkBox_isAppendComment" change="checkBoxAppendCommentChanged(event)" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������NNDD������������������������������������������������������������������������������������������������������"/> |
| 365 |
<mx:CheckBox label="������������������������������������" left="10" top="381" id="checkBox_enableJump" click="checkBoxIsEnableJump(event)" toolTip="������������������������������������������������������������������������������"/> |
| 366 |
<mx:CheckBox label="���������������������������������������������������������" left="35" top="402" id="checkBox_askToUserOnJump" click="checkBoxIsAskToUserOnJump(event)" toolTip="���������������������������������������������������������������������������������������������������������������"/> |
| 367 |
<mx:CheckBox left="10" top="351" label="���������������������������������������������������" toolTip="������������������������������������������������������������������������������������������������" id="checkBox_hideSekaShinComment" click="checkBoxHideSekaShinComment(event)"/> |
| 368 |
<mx:CheckBox label="������������������������������" top="432" left="10" id="checkBox_commentBold" change="checkBoxCommentBoldChanged(event)"/> |
| 369 |
<mx:CheckBox label="������������������������������������������������������������" id="checkBox_isAlwaysEconomyForStreaming" left="10" top="462" change="checkBoxAlwaysEconomyChanged(event)" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������������"/> |
| 370 |
<mx:CheckBox left="10" top="492" label="������������������������������������������" toolTip="������������������������������������������������������������������������������������������������������������������" id="checkBox_isNgUpEnable" change="checkBoxNgUpChanged(event)"/> |
| 371 |
|
| 372 |
<mx:Label text="���������������������������" left="10" top="522"/> |
| 373 |
<mx:HSlider minimum="0.5" maximum="1.5" snapInterval="0.1" value="1" left="143" top="522" change="commentScaleSliderChanged(event)" id="slider_commentScale" right="10"/> |
| 374 |
<mx:Label text="0.5���" left="143" top="548"/> |
| 375 |
<mx:Label right="10" top="548" text="1.5���"/> |
| 376 |
<mx:Label text="���������������FPS���" left="10" top="574" toolTip="������������������������FPS������������������������������������������������������������"/> |
| 377 |
<mx:HSlider minimum="1" maximum="5" value="2" left="143" top="574" snapInterval="1" dataTipFormatFunction="fpsDataTipFormatFunction" id="slider_fps" change="sliderFpsChanged(event)" right="10" toolTip="������������������������FPS������������������������������������������������������������"/> |
| 378 |
<mx:Label text="7.5fps" left="143" top="600"/> |
| 379 |
<mx:Label right="10" top="600" text="120fps"/> |
| 380 |
<mx:Label x="10" y="626" text="���������������������������"/> |
| 381 |
<mx:HSlider y="626" left="143" minimum="50" maximum="2500" snapInterval="50" right="10" showDataTip="true" value="250" id="slider_showCommentCount" change="sliderShowCommentCountChanged(event)" toolTip="������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������"/> |
| 382 |
<mx:Label text="50" left="143" top="652"/> |
| 383 |
<mx:Label right="10" top="652" text="2500"/> |
| 384 |
<mx:Label x="10" y="678" text="���������������������������"/> |
| 385 |
<mx:HSlider y="678" left="143" minimum="1" maximum="5" snapInterval="1" right="10" showDataTip="true" value="3" id="slider_showCommentTime" change="sliderShowCommentTimeChanged(event)"/> |
| 386 |
<mx:Label text="1���" left="143" top="704"/> |
| 387 |
<mx:Label text="5���" top="704" right="10"/> |
| 388 |
<mx:Label x="10" y="730" text="������������������������������" toolTip="������������������������������[���������������������]���������������������������������������"/> |
| 389 |
<mx:HSlider y="730" left="143" minimum="1" maximum="100" snapInterval="1" right="10" showDataTip="true" value="100" id="slider_commentAlpha" change="sliderCommentAlphaChanged(event)" toolTip="������������������������������[���������������������]���������������������������������������"/> |
| 390 |
<mx:Label text="1%" left="143" top="756"/> |
| 391 |
<mx:Label text="100%" top="756" right="10"/> |
| 392 |
|
| 393 |
|
| 394 |
</mx:Canvas> |
| 395 |
</mx:Canvas> |
| 396 |
</mx:ViewStack> |
| 397 |
<mx:ToggleButtonBar dataProvider="{viewstack1}" left="5" bottom="5" fontWeight="normal" height="20"> |
| 398 |
</mx:ToggleButtonBar> |
| 399 |
<mx:Button label="���������������..." left="149" bottom="5" height="20" id="button_videoOpen" click="button_videoOpen_clickHandler(event)"/> |
| 400 |
|
| 401 |
|
| 402 |
</mx:Window> |