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 628 by mineap, Mon Jul 18 15:26:12 2011 UTC revision 652 by mineap, Tue Sep 6 05:04:11 2011 UTC
# Line 177  Line 177 
177    
178                          protected function canvas1_creationCompleteHandler(event:FlexEvent):void                          protected function canvas1_creationCompleteHandler(event:FlexEvent):void
179                          {                          {
180                                  if(videoTypeText.text.length == 0){                                  videoType = "-";
181                                          videoTypeText.text = "-";                                  videoServerUrl = "-";
182                                  }                                  connectionType = "-";
183                                  if(videoServerUrlText.text.length == 0) {                                  messageServerUrl = "-";
184                                          videoServerUrlText.text = "-";                                  economyMode = "-";
185                                  }                                  nickName = "-";
186                                  if(connectionTypeText.text.length == 0){                                  isPremium = "-";
                                         connectionTypeText.text = "-";  
                                 }  
                                 if(messageServerUrlText.text.length == 0){  
                                         messageServerUrlText.text = "-";  
                                 }  
                                 if(economyModeText.text.length == 0) {  
                                         economyModeText.text = "-";  
                                 }  
                                 if(nickNameText.text.length == 0){  
                                         nickNameText.text = "-";  
                                 }  
                                 if(premiumText.text.length == 0){  
                                         premiumText.text = "-";  
                                 }  
187                                                                    
188                          }                          }
189    
# Line 333  Line 319 
319                                          <mx:CheckBox label="コメントを再生と同期" left="5" bottom="2" id="checkbox_SyncComment" click="checkboxSyncCommentChanged()" toolTip="コメントリストを再生に同期させてスクロールします。動作が重い場合はチェックを外すと改善することがあります"/>                                          <mx:CheckBox label="コメントを再生と同期" left="5" bottom="2" id="checkbox_SyncComment" click="checkboxSyncCommentChanged()" toolTip="コメントリストを再生に同期させてスクロールします。動作が重い場合はチェックを外すと改善することがあります"/>
320                                          <mx:CheckBox label="許可IDのみ表示" id="checkBox_isShowOnlyPermissionComment" click="checkBoxIsSOPCChanged(event)" left="160" bottom="2" toolTip="許可IDに登録されているIDのコメントのみを表示します"/>                                          <mx:CheckBox label="許可IDのみ表示" id="checkBox_isShowOnlyPermissionComment" click="checkBoxIsSOPCChanged(event)" left="160" bottom="2" toolTip="許可IDに登録されているIDのコメントのみを表示します"/>
321                                  </mx:Canvas>                                  </mx:Canvas>
322                                  <mx:Canvas label="プレイリスト" width="100%" height="100%" id="canvas_playList" creationComplete="checkBox_repeatAllCompleteHandler(event)" verticalScrollPolicy="off" horizontalScrollPolicy="off">                                  <mx:Canvas label="プレイリスト" width="100%" height="100%" id="canvas_playList" verticalScrollPolicy="off" horizontalScrollPolicy="off">
323                                          <mx:DataGrid left="0" right="0" top="20" bottom="53" dataProvider="{playListProvider}" doubleClickEnabled="true"                                          <mx:DataGrid left="0" right="0" top="20" bottom="53" dataProvider="{playListProvider}" doubleClickEnabled="true"
324                                                  dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" dragDrop="playListDragDropHandler(event)" id="dataGrid_playList"                                                  dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" dragDrop="playListDragDropHandler(event)" id="dataGrid_playList"
325                                                  itemDoubleClick="playListDoubleClicked()" showHeaders="false">                                                  itemDoubleClick="playListDoubleClicked()" showHeaders="false">
# Line 343  Line 329 
329                                                  </mx:columns>                                                  </mx:columns>
330                                          </mx:DataGrid>                                          </mx:DataGrid>
331                                          <mx:CheckBox id="checkBox_repeatAll" right="5" bottom="5" label="すべてリピート"                                          <mx:CheckBox id="checkBox_repeatAll" right="5" bottom="5" label="すべてリピート"
332                                                                   change="checkboxRepeatAllChanged()"                                                                   change="checkboxRepeatAllChanged()" creationComplete="checkBox_repeatAllCompleteHandler(event)"
333                                                                   toolTip="プレイリストの項目が最後まで再生されたら最初から再生し直します"/>                                                                   toolTip="プレイリストの項目が最後まで再生されたら最初から再生し直します"/>
334                                          <mx:Button left="10" bottom="28" width="50" label="-"                                          <mx:Button left="10" bottom="28" width="50" label="-"
335                                                             click="playListItemDeleteButtonClicked(event)"                                                             click="playListItemDeleteButtonClicked(event)"
# Line 434  Line 420 
420                                                  </mx:DataGrid>                                                  </mx:DataGrid>
421                                          </mx:VDividedBox>                                          </mx:VDividedBox>
422                                  </mx:Canvas>                                  </mx:Canvas>
423                                  <mx:Canvas label="オススメ" width="100%" height="100%" creationComplete="relationCanvasCreationCompleteHandler(event)">                                  <mx:Canvas label="オススメ" width="100%" height="100%" >
424                                          <mx:ComboBox left="0" top="0" width="120" dataProvider="{relationSortComboboxDataProvider}" id="combobox_relationSort" change="relationSortComboboxChange(event)"></mx:ComboBox>                                          <mx:ComboBox left="0" top="0" width="120"
425                                          <mx:ComboBox left="128" top="0" width="120" dataProvider="{relationOrderComboboxDataProvider}" id="combobox_relationOrder" change="relationOrderComboboxChange(event)"></mx:ComboBox>                                                                   dataProvider="{relationSortComboboxDataProvider}"
426                                                                     id="combobox_relationSort"
427                                                                     change="relationSortComboboxChange(event)"
428                                                                     creationComplete="comboboxRelationSortCreationCompleteHandler(event)">
429                                            </mx:ComboBox>
430                                            <mx:ComboBox left="128" top="0" width="120"
431                                                                     dataProvider="{relationOrderComboboxDataProvider}"
432                                                                     id="combobox_relationOrder"
433                                                                     change="relationOrderComboboxChange(event)"
434                                                                     creationComplete="comboboxRelationOrderCreationCompleteHandler(event)">
435                                            </mx:ComboBox>
436                                          <mx:DataGrid left="0" top="30" bottom="0" right="0" dataProvider="{relationDataProvider}" doubleClickEnabled="true"                                          <mx:DataGrid left="0" top="30" bottom="0" right="0" dataProvider="{relationDataProvider}" doubleClickEnabled="true"
437                                                                   id="datagrid_relation" showHeaders="false" itemDoubleClick="relationItemDoubleClickHandler(event)" rowHeight="70">                                                                   id="datagrid_relation" showHeaders="false" itemDoubleClick="relationItemDoubleClickHandler(event)" rowHeight="70">
438                                                  <mx:columns>                                                  <mx:columns>

Legend:
Removed from v.628  
changed lines
  Added in v.652

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