blob: 6b63da01ddd184e9245c15b4090c55d711a86478 [file] [log] [blame]
/*
* Copyright 2000-2012 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.android.uipreview;
import com.intellij.openapi.components.*;
import org.jetbrains.annotations.NotNull;
@State(
name = "AndroidEditors",
storages = {
@Storage(file = StoragePathMacros.APP_CONFIG + "/androidEditors.xml")
}
)
public class AndroidEditorSettings implements PersistentStateComponent<AndroidEditorSettings.MyState> {
private GlobalState myGlobalState = new GlobalState();
public static AndroidEditorSettings getInstance() {
return ServiceManager.getService(AndroidEditorSettings.class);
}
@NotNull
public GlobalState getGlobalState() {
return myGlobalState;
}
@Override
public MyState getState() {
final MyState state = new MyState();
state.setState(myGlobalState);
return state;
}
@Override
public void loadState(MyState state) {
myGlobalState = state.getState();
}
public static class MyState {
private GlobalState myGlobalState = new GlobalState();
public GlobalState getState() {
return myGlobalState;
}
public void setState(GlobalState state) {
myGlobalState = state;
}
}
public static class GlobalState {
private boolean myVisible = true;
private boolean myHideForNonLayoutFiles = true;
private boolean myShowDeviceFrames = true;
private boolean myShowEffects = true;
private boolean myRetina = true;
private boolean myPreferXmlEditor = false;
public boolean isRetina() {
return myRetina;
}
public void setRetina(boolean retina) {
myRetina = retina;
}
public boolean isVisible() {
return myVisible;
}
public void setVisible(boolean visible) {
myVisible = visible;
}
public boolean isHideForNonLayoutFiles() {
return myHideForNonLayoutFiles;
}
public void setHideForNonLayoutFiles(boolean hideForNonLayoutFiles) {
myHideForNonLayoutFiles = hideForNonLayoutFiles;
}
public boolean isShowDeviceFrames() {
return myShowDeviceFrames;
}
public void setShowDeviceFrames(boolean showDeviceFrames) {
myShowDeviceFrames = showDeviceFrames;
}
public boolean isShowEffects() {
return myShowEffects;
}
public void setShowEffects(boolean showEffects) {
myShowEffects = showEffects;
}
public boolean isPreferXmlEditor() {
return myPreferXmlEditor;
}
public void setPreferXmlEditor(boolean preferXmlEditor) {
myPreferXmlEditor = preferXmlEditor;
}
}
}