Develop and Download Open Source Software

Browse Subversion Repository

Diff of /NNDDv2/trunk/src/org/mineap/nndd/view/VideoInfoView.as

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

revision 817 by mineap, Wed May 2 12:27:43 2012 UTC revision 824 by mineap, Fri May 4 15:10:45 2012 UTC
# Line 95  public var playerQuality:int = 2; Line 95  public var playerQuality:int = 2;
95  public var isFollowInfoViewHeight:Boolean = false;  public var isFollowInfoViewHeight:Boolean = false;
96  public var isNotPlayNicowari:Boolean = false;  public var isNotPlayNicowari:Boolean = false;
97  public var isOpenFileDialogWhenOpenPlayer:Boolean = false;  public var isOpenFileDialogWhenOpenPlayer:Boolean = false;
98    public var is184:Boolean = true;
99    
100  public static const RESIZE_TYPE_NICO:int = 1;  public static const RESIZE_TYPE_NICO:int = 1;
101  public static const RESIZE_TYPE_VIDEO:int = 2;  public static const RESIZE_TYPE_VIDEO:int = 2;
# Line 686  private function checkBoxIsAskToUserOnJu Line 687  private function checkBoxIsAskToUserOnJu
687          isAskToUserOnJump = event.currentTarget.selected;          isAskToUserOnJump = event.currentTarget.selected;
688  }  }
689    
690    private function checkBoxIs184(event:MouseEvent):void
691    {
692            is184 = event.currentTarget.selected;
693    }
694    
695  private function checkBoxHideSekaShinComment(event:MouseEvent):void{  private function checkBoxHideSekaShinComment(event:MouseEvent):void{
696          isHideSekaShinComment = event.currentTarget.selected;          isHideSekaShinComment = event.currentTarget.selected;
697                    
# Line 872  private function configCanvas3CreationCo Line 878  private function configCanvas3CreationCo
878          checkBox_askToUserOnJump.selected = isAskToUserOnJump;          checkBox_askToUserOnJump.selected = isAskToUserOnJump;
879          checkBox_askToUserOnJump.enabled = isEnableJump;          checkBox_askToUserOnJump.enabled = isEnableJump;
880                    
881            checkBox_is184.selected = is184;
882                    
883  }  }
884    
# Line 1229  private function readStore():void{ Line 1236  private function readStore():void{
1236                          this.isOpenFileDialogWhenOpenPlayer = ConfUtil.parseBoolean(confValue);                          this.isOpenFileDialogWhenOpenPlayer = ConfUtil.parseBoolean(confValue);
1237                  }                  }
1238                                    
1239                    confValue = ConfigManager.getInstance().getItem("is184");
1240                    if (confValue != null)
1241                    {
1242                            this.is184 = ConfUtil.parseBoolean(confValue);
1243                    }
1244                    
1245          }catch(error:Error){          }catch(error:Error){
1246                  trace(error.getStackTrace());                  trace(error.getStackTrace());
1247                  Alert.show(Message.M_CONF_FILE_IS_BROKEN, Message.M_ERROR);                  Alert.show(Message.M_CONF_FILE_IS_BROKEN, Message.M_ERROR);
# Line 1380  public function saveStore():void{ Line 1393  public function saveStore():void{
1393                  ConfigManager.getInstance().removeItem("isOpenFileDialogWhenOpenPlayer");                  ConfigManager.getInstance().removeItem("isOpenFileDialogWhenOpenPlayer");
1394                  ConfigManager.getInstance().setItem("isOpenFileDialogWhenOpenPlayer", isOpenFileDialogWhenOpenPlayer);                  ConfigManager.getInstance().setItem("isOpenFileDialogWhenOpenPlayer", isOpenFileDialogWhenOpenPlayer);
1395                                    
1396                    ConfigManager.getInstance().removeItem("is184");
1397                    ConfigManager.getInstance().setItem("is184", is184);
1398                    
1399                  ConfigManager.getInstance().save();                  ConfigManager.getInstance().save();
1400                                    
1401          }catch(error:Error){          }catch(error:Error){

Legend:
Removed from v.817  
changed lines
  Added in v.824

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