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 788 by mineap, Sat Apr 21 10:41:13 2012 UTC revision 796 by mineap, Sat Apr 28 11:09:31 2012 UTC
# Line 184  Line 184 
184                                  economyMode = "-";                                  economyMode = "-";
185                                  nickName = "-";                                  nickName = "-";
186                                  isPremium = "-";                                  isPremium = "-";
187                                    format = "-";
188                                    videoSize = "-";
189                                    currentWindowSize = "-";
190                                                                    
191                          }                          }
192    
# Line 473  Line 476 
476                  </mx:Canvas>                  </mx:Canvas>
477                  <mx:Canvas width="100%" height="100%" label="接続情報" creationComplete="canvas1_creationCompleteHandler(event)">                  <mx:Canvas width="100%" height="100%" label="接続情報" creationComplete="canvas1_creationCompleteHandler(event)">
478                          <mx:Label left="10" top="10" text="動画種別:"/>                          <mx:Label left="10" top="10" text="動画種別:"/>
479                          <mx:Label id="videoTypeText" left="83" right="5" top="10" text="{videoType}" truncateToFit="true" selectable="true"/>                          <mx:Label id="videoTypeText" left="140" right="5" top="10" text="{videoType}" truncateToFit="true" selectable="true"/>
480                                                    
481                          <mx:Label left="10" top="30" text="接続種別:"/>                          <mx:Label left="10" top="30" text="接続種別:"/>
482                          <mx:Label id="connectionTypeText" left="83" right="5" top="30" text="{connectionType}" truncateToFit="true" selectable="true"/>                          <mx:Label id="connectionTypeText" left="140" right="5" top="30" text="{connectionType}" truncateToFit="true" selectable="true"/>
483                                                    
484                          <mx:Label left="10" top="50" text="動画サーバー:"/>                          <mx:Label left="10" top="50" text="動画サーバー:"/>
485                          <mx:Label id="videoServerUrlText" left="107" right="5" top="50" text="{videoServerUrl}"  toolTip="{videoServerUrl}" truncateToFit="true" selectable="true"/>                          <mx:Label id="videoServerUrlText" left="140" right="5" top="50" text="{videoServerUrl}"  toolTip="{videoServerUrl}" truncateToFit="true" selectable="true"/>
486                                                    
487                          <mx:Label left="10" top="70" text="メッセージサーバー:"/>                          <mx:Label left="10" top="70" text="メッセージサーバー:"/>
488                          <mx:Label id="messageServerUrlText" left="143" right="5" top="70" text="{messageServerUrl}" toolTip="{messageServerUrl}" truncateToFit="true" selectable="true"/>                          <mx:Label id="messageServerUrlText" left="140" right="5" top="70" text="{messageServerUrl}" toolTip="{messageServerUrl}" truncateToFit="true" selectable="true"/>
489                                                    
490                          <mx:Label left="10" top="90" text="エコノミーモード:"/>                          <mx:Label left="10" top="90" text="エコノミーモード:"/>
491                          <mx:Label id="economyModeText" left="131" right="6" top="90" text="{economyMode}" truncateToFit="true" selectable="true"/>                          <mx:Label id="economyModeText" left="140" right="6" top="90" text="{economyMode}" truncateToFit="true" selectable="true"/>
492                                                    
493                          <mx:Label left="10" top="110" text="ニックネーム:"/>                          <mx:Label left="10" top="110" text="ニックネーム:"/>
494                          <mx:Label id="nickNameText" left="107" right="6" top="110" text="{nickName}" truncateToFit="true" selectable="true"/>                          <mx:Label id="nickNameText" left="140" right="6" top="110" text="{nickName}" truncateToFit="true" selectable="true"/>
495                                                    
496                          <mx:Label left="10" top="130" text="プレミアム:"/>                          <mx:Label left="10" top="130" text="プレミアム:"/>
497                          <mx:Label id="premiumText" left="95" right="6" top="130" text="{isPremium}" truncateToFit="true" selectable="true"/>                          <mx:Label id="premiumText" left="140" right="6" top="130" text="{isPremium}" truncateToFit="true" selectable="true"/>
498                            
499                            <mx:Label left="10" top="150" text="デフォルトのサイズ:"/>
500                            <mx:Label id="formatText" left="140" right="6" top="150" text="{format}" truncateToFit="true" selectable="true"/>
501                            
502                            <mx:Label left="10" top="170" text="現在のサイズ:"/>
503                            <mx:Label id="currentWindowSizeText" left="140" right="6" top="170" text="{currentWindowSize}" truncateToFit="true" selectable="true"/>
504                            
505                            <mx:Label left="10" top="190" text="動画の容量:"/>
506                            <mx:Label id="videoSizeText" left="140" right="6" top="190" text="{videoSize}" truncateToFit="true" selectable="true"/>
507                            
508                            
509                  </mx:Canvas>                  </mx:Canvas>
510                  <mx:Canvas label="設定" width="100%" height="100%">                  <mx:Canvas label="設定" width="100%" height="100%">
511                          <mx:Canvas label="設定" id="canvas_config" verticalScrollPolicy="off" left="0" top="0" bottom="0" right="0"                          <mx:Canvas label="設定" id="canvas_config" verticalScrollPolicy="off" left="0" top="0" bottom="0" right="0"
# Line 531  Line 545 
545                                          </mx:Canvas>                                          </mx:Canvas>
546                                          <mx:Canvas label="コメント表示" left="0" top="0" bottom="0" right="0" id="canvas_config_2">                                          <mx:Canvas label="コメント表示" left="0" top="0" bottom="0" right="0" id="canvas_config_2">
547                                                                                                    
548                                                  <mx:CheckBox label="コメントを太字にする" top="36" left="10" id="checkBox_commentBold"                                                  
549                                                    <mx:CheckBox left="10" top="10" label="「世界の新着」コメントを表示しない"
550                                                                             toolTip="「世界の新着動画」で投稿されたコメントを表示しないようにします。"
551                                                                             id="checkBox_hideSekaShinComment" click="checkBoxHideSekaShinComment(event)"/>
552                                                    <mx:CheckBox label="コメントを太字にする" top="30" left="10" id="checkBox_commentBold"
553                                                                           change="checkBoxCommentBoldChanged(event)"                                                                           change="checkBoxCommentBoldChanged(event)"
554                                                                           creationComplete="configCanvas2CreationCompleteHandler(event)"/>                                                                           creationComplete="configCanvas2CreationCompleteHandler(event)"/>
555                                                  <mx:CheckBox left="10" top="10" label="「世界の新着」コメントを表示しない" toolTip="「世界の新着動画」で投稿されたコメントを表示しないようにします。" id="checkBox_hideSekaShinComment" click="checkBoxHideSekaShinComment(event)"/>                                                  <mx:CheckBox left="10" top="50" label="投稿者フィルターを有効にする"
556                                                  <mx:CheckBox left="10" top="62" label="投稿者フィルターを有効にする" toolTip="動画の投稿者によって設定されたコメントに対するフィルタリングを有効にします。" id="checkBox_isNgUpEnable" change="checkBoxNgUpChanged(event)"/>                                                                           toolTip="動画の投稿者によって設定されたコメントに対するフィルタリングを有効にします。"
557                                                                             id="checkBox_isNgUpEnable" change="checkBoxNgUpChanged(event)"/>
558                                                    <mx:CheckBox left="10" top="70" label="コメントを縦方向に優先して表示する" selected="true"
559                                                                             toolTip="流れるコメントを表示する際、縦方向に最大12個まで優先して表示されます。この設定がオフの場合、同一行に最大5個まで優先して表示します。いずれの場合も、一度に画面に表示できるコメントは最大60個です。"
560                                                                             id="checkBox_isLengthwisePreferred" change="checkBoxIsLengthwisePreferredChanged(event)"/>
561                                                                                                    
562                                                  <mx:Label left="10" top="88" text="表示する通常コメント:"                                                  <mx:Label left="10" top="95" text="表示する通常コメント:"
563                                                                    toolTip="1分間に表示するコメントの数を指定します(動画中での平均)。DL済みのコメント数以上の数を指定しても表示されません。"/>                                                                    toolTip="1分間に表示するコメントの数を指定します(動画中での平均)。DL済みのコメント数以上の数を指定しても表示されません。"/>
564                                                  <mx:NumericStepper left="167" top="85" maximum="100000" stepSize="50"                                                  <mx:NumericStepper left="167" top="92" maximum="100000" stepSize="50"
565                                                                                     value="50" id="commentNumStepper"                                                                                     value="50" id="commentNumStepper"
566                                                                                     change="commentCountNumStepperChanged(event)"                                                                                     change="commentCountNumStepperChanged(event)"
567                                                                                     toolTip="1分間に表示するコメントの数を指定します(動画中での平均)。DL済みのコメント数以上の数を指定しても表示されません。"/>                                                                                     toolTip="1分間に表示するコメントの数を指定します(動画中での平均)。DL済みのコメント数以上の数を指定しても表示されません。"/>
568                                                  <mx:Label left="260" top="88" text="コメント/分"/>                                                  <mx:Label left="260" top="95" text="コメント/分"/>
569                                                                                                    
570                                                  <mx:Label left="10" top="119" text="表示する投稿者コメント:"                                                  <mx:Label left="10" top="125" text="表示する投稿者コメント:"
571                                                                    toolTip="1分間に表示する投稿者コメントの数を指定します(動画中での平均)。DL済みのコメント数以上の数を指定しても表示されません。"/>                                                                    toolTip="1分間に表示する投稿者コメントの数を指定します(動画中での平均)。DL済みのコメント数以上の数を指定しても表示されません。"/>
572                                                  <mx:NumericStepper left="167" top="116" maximum="100000" value="50"                                                  <mx:NumericStepper left="167" top="122" maximum="100000" value="50"
573                                                                                     stepSize="50" id="ownerCommentNumStepper"                                                                                     stepSize="50" id="ownerCommentNumStepper"
574                                                                                     change="ownerCommentCountNumStepperChanged(event)"                                                                                     change="ownerCommentCountNumStepperChanged(event)"
575                                                                                     toolTip="1分間に表示する投稿者コメントの数を指定します(動画中での平均)。DL済みのコメント数以上の数を指定しても表示されません。"/>                                                                                     toolTip="1分間に表示する投稿者コメントの数を指定します(動画中での平均)。DL済みのコメント数以上の数を指定しても表示されません。"/>
576                                                  <mx:Label left="260" top="119" text="コメント/分"/>                                                  <mx:Label left="260" top="125" text="コメント/分"/>
577                                                                                                    
578                                                  <mx:Label text="コメントの大きさ:" left="10" top="147"/>                                                  <mx:Label text="コメントの大きさ:" left="10" top="147"/>
579                                                  <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"/>                                                  <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"/>

Legend:
Removed from v.788  
changed lines
  Added in v.796

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