blob: 721d771fda6ec6fd2832cd2e3fe093c0bc7550dc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Mia-Software.
* 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:
* Nicolas Bros (Mia-Software)
*******************************************************************************/
package org.eclipse.gmt.modisco.infra.query.ui.views.queryExecution.internal;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gmt.modisco.infra.query.ui.ImageProvider;
import org.eclipse.gmt.modisco.infra.query.ui.Messages;
import org.eclipse.gmt.modisco.infra.query.ui.views.queryExecution.internal.QueryExecutionView.ContextInfo;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.action.IMenuListener;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.action.MenuManager;
import org.eclipse.jface.viewers.TreeViewer;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.KeyAdapter;
import org.eclipse.swt.events.KeyEvent;
/**
* @deprecated replaced by EMF Facet, cf. https://bugs.eclipse.org/bugs/show_bug.cgi?id=470578
*/
@Deprecated
@SuppressWarnings("synthetic-access")
public class ContextPaneMenuManager extends MenuManager implements IMenuListener {
private final EditableContext context;
private final QueryExecutionView queryExecutionView;
public ContextPaneMenuManager(final QueryExecutionView queryExecutionView,
final EditableContext context, final TreeViewer treeViewer) {
this.queryExecutionView = queryExecutionView;
this.context = context;
addMenuActions();
addMenuListener(this);
addKeyShortcuts(treeViewer);
}
private void addKeyShortcuts(final TreeViewer treeViewer) {
treeViewer.getTree().addKeyListener(new KeyAdapter() {
@Override
public void keyPressed(final KeyEvent e) {
if (e.keyCode == SWT.DEL) {
ContextPaneMenuManager.this.removeSelectedElementsAction.run();
}
}
});
}
private void addMenuActions() {
this.add(this.removeSelectedElementsAction);
this.add(this.removeAllAction);
}
/** This action removes all model elements from the context */
private final IAction removeAllAction = new Action(Messages.ContextPaneMenuManager_RemoveAll) {
{
setImageDescriptor(ImageProvider.getInstance().getRemoveAllImageDescriptor());
}
@Override
public void run() {
ContextPaneMenuManager.this.context.clear();
ContextPaneMenuManager.this.context.done();
}
};
/** This action removes selected model elements from the context */
private final IAction removeSelectedElementsAction = new Action(
Messages.ContextPaneMenuManager_Remove) {
{
setImageDescriptor(ImageProvider.getInstance().getRemoveImageDescriptor());
}
@Override
public void run() {
ContextInfo contextInfo = ContextPaneMenuManager.this.queryExecutionView
.getContextInfo();
for (EObject eObject : contextInfo.getSelectedEObjects()) {
ContextPaneMenuManager.this.context.remove(eObject);
}
ContextPaneMenuManager.this.context.done();
}
};
public void menuAboutToShow(final IMenuManager manager) {
ContextInfo contextInfo = ContextPaneMenuManager.this.queryExecutionView.getContextInfo();
this.removeAllAction.setEnabled(contextInfo.getEObjects().size() > 0);
this.removeSelectedElementsAction.setEnabled(contextInfo.getSelectedEObjects().size() > 0);
}
}