blob: 5bbf6784ac9d7cd15d7c943c073fd59751bffd28 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2011 Tasktop Technologies and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.cdt.ui.actions;
import org.eclipse.cdt.ui.CUIPlugin;
import org.eclipse.cdt.ui.PreferenceConstants;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.mylyn.internal.cdt.ui.CDTUIBridgePlugin;
import org.eclipse.swt.widgets.Event;
import org.eclipse.ui.IActionDelegate2;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;
/**
* @author Mik Kersten
* @author Shawn Minto
*/
public class ToggleActiveFoldingAction extends Action implements IWorkbenchWindowActionDelegate, IActionDelegate2 {
private static ToggleActiveFoldingAction INSTANCE;
private IAction parentAction = null;
public ToggleActiveFoldingAction() {
INSTANCE = this;
setText(Messages.ToggleActiveFoldingAction_Active_Folding);
}
public static void toggleFolding(boolean on) {
if (INSTANCE.parentAction != null) {
INSTANCE.valueChanged(INSTANCE.parentAction, on);
}
}
public void run(IAction action) {
valueChanged(action, action.isChecked());
}
private void valueChanged(IAction action, final boolean on) {
if (on) {
CUIPlugin.getDefault().getPreferenceStore().setValue(PreferenceConstants.EDITOR_FOLDING_ENABLED, true);
}
action.setChecked(on);
CDTUIBridgePlugin.getDefault().getPreferenceStore().setValue(CDTUIBridgePlugin.AUTO_FOLDING_ENABLED, on);
}
public void setActiveEditor(IAction action, IEditorPart targetEditor) {
// don't care when the active editor changes
}
public void selectionChanged(IAction action, ISelection selection) {
// don't care when the selection changes
}
public void init(IAction action) {
this.parentAction = action;
valueChanged(action,
CDTUIBridgePlugin.getDefault().getPreferenceStore().getBoolean(CDTUIBridgePlugin.AUTO_FOLDING_ENABLED));
}
public void dispose() {
// don't need to do anything
}
public void runWithEvent(IAction action, Event event) {
run(action);
}
public void init(IWorkbenchWindow window) {
}
}