Develop and Download Open Source Software

Browse Subversion Repository

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 876 by mineap, Sat Jul 7 08:49:54 2012 UTC revision 879 by mineap, Sat Jul 7 10:04:38 2012 UTC
# Line 355  Line 355 
355                                                                          </mx:columns>                                                                          </mx:columns>
356                                                                  </mx:DataGrid>                                                                  </mx:DataGrid>
357                                                          </mx:Canvas>                                                          </mx:Canvas>
358                                                          <mx:Canvas label="過去コメント" width="100%" height="100%" toolTip="過去コメントを表示します。過去コメントが動画に表示されるのは、このタブを開いている間だけです。">                                                          <mx:Canvas label="過去コメント" width="100%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off"
359                                                                  <mx:DateField left="5" top="5" id="dateField_oldComment"/>                                                                             toolTip="過去コメントを表示します。過去コメントが動画に表示されるのは、このタブを開いている間だけです。">
360                                                                  <mx:NumericStepper left="103" top="5" minimum="0" maximum="23" id="numericStepper_hour_oldComment"/>                                                                  <s:HGroup left="5" top="5" right="5">
361                                                                  <mx:Label text="時" left="169" top="7"/>                                                                          <mx:DateField  id="dateField_oldComment"/>
362                                                                  <mx:NumericStepper left="196" top="5" minimum="0" maximum="59" id="numericStepper_min_oldComment"/>                                                                          <mx:NumericStepper minimum="0" maximum="23" id="numericStepper_hour_oldComment"/>
363                                                                  <mx:Label text="分" left="262" top="7"/>                                                                          <mx:Label text="時" />
364                                                                  <mx:Button label="リセット" right="5" top="5" click="oldCommentTimeResetButton_clickHandler(event)" toolTip="現在の時刻にリセットします。"/>                                                                          <mx:NumericStepper minimum="0" maximum="59" id="numericStepper_min_oldComment"/>
365                                                                  <mx:Button label="更新(ニコニコ動画)" right="109" top="30" id="button_oldComment_reloadFromNico" click="button_oldComment_reloadFromNico_clickHandler(event)" toolTip="指定した時刻以前のコメントをニコニコ動画から読み込みます。(この機能はプレミアムアカウントでのみ利用可能です。)"/>                                                                          <mx:Label text="分" />
366                                                                  <mx:Button label="更新(ローカル)" top="30" right="5" id="button_oldComment_reload" click="button_oldComment_reload_clickHandler(event)" toolTip="指定した時刻以前のコメントをローカルのファイルから読み込みます。"/>                                                                          <s:Spacer width="100%" />
367                                                                            <mx:Button label="リセット" click="oldCommentTimeResetButton_clickHandler(event)" toolTip="現在の時刻にリセットします。"/>
368                                                                    </s:HGroup>
369                                                                    
370                                                                    <s:HGroup right="5" top="30">
371                                                                            <mx:Button label="更新(ニコニコ動画)" id="button_oldComment_reloadFromNico"
372                                                                                               click="button_oldComment_reloadFromNico_clickHandler(event)"
373                                                                                               toolTip="指定した時刻以前のコメントをニコニコ動画から読み込みます。(この機能はプレミアムアカウントでのみ利用可能です。)"/>
374                                                                            <mx:Button label="更新(ローカル)" id="button_oldComment_reload"
375                                                                                               click="button_oldComment_reload_clickHandler(event)"
376                                                                                               toolTip="指定した時刻以前のコメントをローカルのファイルから読み込みます。"/>
377                                                                    </s:HGroup>
378                                                                    
379                                                                  <mx:DataGrid left="0" right="0" top="55" bottom="0" dataProvider="{commentListProvider}" resizableColumns="true"                                                                  <mx:DataGrid left="0" right="0" top="55" bottom="0" dataProvider="{commentListProvider}" resizableColumns="true"
380                                                                                  id="dataGrid_oldComment" editable="false" rowHeight="22" horizontalScrollPolicy="on" headerRelease="headerReleaseHandler(event)"                                                                                  id="dataGrid_oldComment" editable="false" rowHeight="22" horizontalScrollPolicy="on" headerRelease="headerReleaseHandler(event)"
381                                                                                  creationComplete="dataGrid_oldComment_creationCompleteHandler(event)" doubleClickEnabled="true"                                                                                  creationComplete="dataGrid_oldComment_creationCompleteHandler(event)" doubleClickEnabled="true"
# Line 380  Line 392 
392                                                                  </mx:DataGrid>                                                                  </mx:DataGrid>
393                                                          </mx:Canvas>                                                          </mx:Canvas>
394                                                          <mx:Canvas label="NG設定" width="100%" height="100%" toolTip="コメントに対するNG設定を管理します。">                                                          <mx:Canvas label="NG設定" width="100%" height="100%" toolTip="コメントに対するNG設定を管理します。">
                                                                 <mx:ComboBox id="combobox_ngKind" left="5" top="5" width="85" height="22"  
                                                                                          dataProvider="{Comments.NG_KIND_ARRAY}" selectedIndex="0"></mx:ComboBox>  
                                                                 <mx:TextInput left="97" enabled="true" id="textInput_ng" enter="ngTextInputEnter(event)" right="97" top="5"/>  
395                                                                                                                                    
396                                                                  <mx:Button right="50" top="5" width="40" label="+"                                                                  <s:HGroup top="5" right="5" left="5">
397                                                                                     click="addItemToNgList()" enabled="true"                                                                          <mx:ComboBox id="combobox_ngKind" width="85"
398                                                                                     toolTip="NGリストに項目を追加します"/>                                                                                                   dataProvider="{Comments.NG_KIND_ARRAY}" selectedIndex="0"></mx:ComboBox>
399                                                                  <mx:Button id="button_removeNgList" right="5" top="5" width="40"                                                                          <mx:TextInput enabled="true" id="textInput_ng" enter="ngTextInputEnter(event)" width="100%" />
400                                                                                     label="-" click="removeItemFromNgList()"                                                                          <mx:Button width="40" label="+"
401                                                                                     toolTip="NGリストから項目を削除します"/>                                                                                             click="addItemToNgList()" enabled="true"
402                                                                                               toolTip="NGリストに項目を追加します"/>
403                                                                            <mx:Button id="button_removeNgList"  width="40"
404                                                                                               label="-" click="removeItemFromNgList()"
405                                                                                               toolTip="NGリストから項目を削除します"/>
406                                                                    </s:HGroup>
407                                                                  <mx:DataGrid id="dataGrid_NG" dataProvider="{ngListProvider}"                                                                  <mx:DataGrid id="dataGrid_NG" dataProvider="{ngListProvider}"
408                                                                                           itemClick="ngListItemClicked(event)" left="0" bottom="0" right="0" top="35"                                                                                           itemClick="ngListItemClicked(event)" left="0" bottom="0" right="0" top="35"
409                                                                                           contentBackgroundAlpha="0.3">                                                                                           contentBackgroundAlpha="0.3">
# Line 421  Line 435 
435                                                                                                    
436                                                  <mx:Label left="0" top="0" right="0" id="label_playListTitle" text="{label_playListTitle_dataProvider}"/>                                                  <mx:Label left="0" top="0" right="0" id="label_playListTitle" text="{label_playListTitle_dataProvider}"/>
437                                                                                                    
438                                                  <mx:DataGrid left="0" right="0" top="20" bottom="53" dataProvider="{playListProvider}" doubleClickEnabled="true"                                                  <mx:DataGrid left="0" right="0" top="20" bottom="55" dataProvider="{playListProvider}" doubleClickEnabled="true"
439                                                          dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" dragDrop="playListDragDropHandler(event)" id="dataGrid_playList"                                                          dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" dragDrop="playListDragDropHandler(event)" id="dataGrid_playList"
440                                                          itemDoubleClick="playListDoubleClicked()" showHeaders="false"                                                          itemDoubleClick="playListDoubleClicked()" showHeaders="false"
441                                                          creationComplete="dataGrid_playList_creationCompleteHandler(event)"                                                          creationComplete="dataGrid_playList_creationCompleteHandler(event)"

Legend:
Removed from v.876  
changed lines
  Added in v.879

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