blob: 26959079e15fd06c89962b06475618ff8c539933 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation 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:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.ui.internal.navigator.resources.actions;
import org.eclipse.core.commands.operations.IUndoContext;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.swt.widgets.Tree;
import org.eclipse.ui.IActionBars;
import org.eclipse.ui.actions.ActionContext;
import org.eclipse.ui.navigator.CommonActionProvider;
import org.eclipse.ui.navigator.ICommonActionExtensionSite;
import org.eclipse.ui.navigator.ICommonViewerWorkbenchSite;
import org.eclipse.ui.operations.UndoRedoActionGroup;
/**
* @since 3.2
*
*/
public class RefactorActionProvider extends CommonActionProvider {
private UndoRedoActionGroup undoRedoGroup;
private RefactorActionGroup refactorGroup;
private ICommonActionExtensionSite site;
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.navigator.CommonActionProvider#init(org.eclipse.ui.navigator.ICommonActionExtensionSite)
*/
public void init(ICommonActionExtensionSite anActionSite) {
site = anActionSite;
refactorGroup = new RefactorActionGroup(site.getViewSite().getShell(), (Tree)site.getStructuredViewer().getControl());
IUndoContext workspaceContext = (IUndoContext) ResourcesPlugin
.getWorkspace().getAdapter(IUndoContext.class);
undoRedoGroup = new UndoRedoActionGroup(((ICommonViewerWorkbenchSite) anActionSite.getViewSite()).getSite(),
workspaceContext, true);
}
public void dispose() {
undoRedoGroup.dispose();
refactorGroup.dispose();
}
public void fillActionBars(IActionBars actionBars) {
undoRedoGroup.fillActionBars(actionBars);
refactorGroup.fillActionBars(actionBars);
}
public void fillContextMenu(IMenuManager menu) {
undoRedoGroup.fillContextMenu(menu);
refactorGroup.fillContextMenu(menu);
}
public void setContext(ActionContext context) {
undoRedoGroup.setContext(context);
refactorGroup.setContext(context);
}
public void updateActionBars() {
undoRedoGroup.updateActionBars();
refactorGroup.updateActionBars();
}
}