blob: 63cb38eca8f4c09304c9ff431e1de603ef3ce97d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2009 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
* Oakland Software (Francis Upton - francisu@ieee.org)
* bug 214271 Undo/redo not enabled if nothing selected
******************************************************************************/
package org.eclipse.ui.navigator.resources;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.ui.IActionBars;
import org.eclipse.ui.IWorkbenchActionConstants;
import org.eclipse.ui.internal.navigator.framelist.GoIntoAction;
import org.eclipse.ui.navigator.CommonActionProvider;
import org.eclipse.ui.navigator.CommonViewer;
import org.eclipse.ui.navigator.ICommonActionExtensionSite;
/**
* Provides the Go Into action for the {@link ProjectExplorer}
*
* @since 3.4
*
*/
public class GoIntoActionProvider extends CommonActionProvider {
private GoIntoAction goIntoAction;
public void init(ICommonActionExtensionSite anActionSite) {
anActionSite.getViewSite().getShell();
CommonViewer viewer = (CommonViewer) anActionSite.getStructuredViewer();
goIntoAction = new GoIntoAction(viewer.getFrameList());
}
public void dispose() {
goIntoAction.dispose();
}
public void fillActionBars(IActionBars actionBars) {
actionBars.setGlobalActionHandler(IWorkbenchActionConstants.GO_INTO, goIntoAction);
}
public void fillContextMenu(IMenuManager menu) {
menu.appendToGroup("group.new", goIntoAction); //$NON-NLS-1$
}
public void updateActionBars() {
goIntoAction.update();
}
}