blob: 31550001b53b7e9de6fd4b613b90f8daa6e41b37 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.ui.branch.graph.core;
import org.eclipse.gef.ContextMenuProvider;
import org.eclipse.gef.EditPartViewer;
import org.eclipse.gef.ui.actions.GEFActionConstants;
import org.eclipse.gef.ui.actions.PrintAction;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.action.IMenuManager;
/**
* @author Roberto E. Escobar
*/
public class BranchGraphEditorContextMenuProvider extends ContextMenuProvider {
private final BranchGraphEditor editor;
public BranchGraphEditorContextMenuProvider(EditPartViewer viewer, BranchGraphEditor editor) {
super(viewer);
this.editor = editor;
}
@Override
public void buildContextMenu(IMenuManager menu) {
GEFActionConstants.addStandardActionGroups(menu);
menu.appendToGroup(GEFActionConstants.GROUP_PRINT, new PrintAction(editor));
}
private IAction getAction(String actionId) {
return editor.getActionRegistry().getAction(actionId);
}
}