| 85 |
public var isHideSekaShinComment:Boolean = false; |
public var isHideSekaShinComment:Boolean = false; |
| 86 |
public var isShowHTMLOwnerComment:Boolean = true; |
public var isShowHTMLOwnerComment:Boolean = true; |
| 87 |
public var isEnableWideMode:Boolean = true; |
public var isEnableWideMode:Boolean = true; |
| 88 |
|
public var useOldVersionVideoSize:Boolean = false; |
| 89 |
public var relationSortIndex:int = 0; |
public var relationSortIndex:int = 0; |
| 90 |
public var relationOrderIndex:int = 0; |
public var relationOrderIndex:int = 0; |
| 91 |
public var isNgUpEnable:Boolean = true; |
public var isNgUpEnable:Boolean = true; |
| 653 |
this.playerController.resizePlayerJustVideoSize(this.videoPlayer.nowRatio); |
this.playerController.resizePlayerJustVideoSize(this.videoPlayer.nowRatio); |
| 654 |
} |
} |
| 655 |
|
|
| 656 |
|
private function checkboxUseOldVersionVideoSizeChanged(event:Event):void |
| 657 |
|
{ |
| 658 |
|
this.useOldVersionVideoSize = event.target.selected; |
| 659 |
|
this.playerController.isUseOldVersionVideoSize(this.useOldVersionVideoSize); |
| 660 |
|
this.playerController.resizePlayerJustVideoSize(this.videoPlayer.nowRatio); |
| 661 |
|
} |
| 662 |
|
|
| 663 |
private function checkBox_repeatAllCompleteHandler(event:FlexEvent):void{ |
private function checkBox_repeatAllCompleteHandler(event:FlexEvent):void{ |
| 664 |
checkBox_repeatAll.selected = isPlayListRepeat; |
checkBox_repeatAll.selected = isPlayListRepeat; |
| 665 |
} |
} |
| 802 |
radioButton_resizeVideo.enabled = false; |
radioButton_resizeVideo.enabled = false; |
| 803 |
} |
} |
| 804 |
|
|
| 805 |
|
checkbox_useOldVersionVideoSize.selected = useOldVersionVideoSize; |
| 806 |
|
|
| 807 |
checkbox_enableWideMode.selected = isEnableWideMode; |
checkbox_enableWideMode.selected = isEnableWideMode; |
| 808 |
checkBox_isSmoothing.selected = isSmoothing; |
checkBox_isSmoothing.selected = isSmoothing; |
| 809 |
checkBox_isSmoothingOnlyNotPixelIdenticalDimensions.enabled = isSmoothing; |
checkBox_isSmoothingOnlyNotPixelIdenticalDimensions.enabled = isSmoothing; |
| 1146 |
isEnableWideMode = ConfUtil.parseBoolean(confValue); |
isEnableWideMode = ConfUtil.parseBoolean(confValue); |
| 1147 |
} |
} |
| 1148 |
|
|
| 1149 |
|
confValue = ConfigManager.getInstance().getItem("useOldVersionVideoSize"); |
| 1150 |
|
if (confValue == null) |
| 1151 |
|
{ |
| 1152 |
|
useOldVersionVideoSize = false; |
| 1153 |
|
}else |
| 1154 |
|
{ |
| 1155 |
|
useOldVersionVideoSize = ConfUtil.parseBoolean(confValue); |
| 1156 |
|
} |
| 1157 |
|
|
| 1158 |
|
|
| 1159 |
confValue = ConfigManager.getInstance().getItem("relationSortIndex"); |
confValue = ConfigManager.getInstance().getItem("relationSortIndex"); |
| 1160 |
if(confValue == null){ |
if(confValue == null){ |
| 1161 |
//何もしない |
//何もしない |
| 1327 |
ConfigManager.getInstance().removeItem("isShowHTMLOwnerComment"); |
ConfigManager.getInstance().removeItem("isShowHTMLOwnerComment"); |
| 1328 |
ConfigManager.getInstance().setItem("isShowHTMLOwnerComment", isShowHTMLOwnerComment); |
ConfigManager.getInstance().setItem("isShowHTMLOwnerComment", isShowHTMLOwnerComment); |
| 1329 |
|
|
|
ConfigManager.getInstance().removeItem("isEnableWideMode"); |
|
|
ConfigManager.getInstance().setItem("isEnableWideMode", isEnableWideMode); |
|
|
|
|
| 1330 |
ConfigManager.getInstance().removeItem("relationSortIndex"); |
ConfigManager.getInstance().removeItem("relationSortIndex"); |
| 1331 |
ConfigManager.getInstance().setItem("relationSortIndex", relationSortIndex); |
ConfigManager.getInstance().setItem("relationSortIndex", relationSortIndex); |
| 1332 |
|
|
| 1348 |
ConfigManager.getInstance().removeItem("isEnableWideMode"); |
ConfigManager.getInstance().removeItem("isEnableWideMode"); |
| 1349 |
ConfigManager.getInstance().setItem("isEnableWideMode", isEnableWideMode); |
ConfigManager.getInstance().setItem("isEnableWideMode", isEnableWideMode); |
| 1350 |
|
|
| 1351 |
|
ConfigManager.getInstance().removeItem("useOldVersionVideoSize"); |
| 1352 |
|
ConfigManager.getInstance().setItem("useOldVersionVideoSize", useOldVersionVideoSize); |
| 1353 |
|
|
| 1354 |
ConfigManager.getInstance().removeItem("isFollowInfoViewHeight"); |
ConfigManager.getInstance().removeItem("isFollowInfoViewHeight"); |
| 1355 |
ConfigManager.getInstance().setItem("isFollowInfoViewHeight", isFollowInfoViewHeight); |
ConfigManager.getInstance().setItem("isFollowInfoViewHeight", isFollowInfoViewHeight); |
| 1356 |
|
|