blob: ee872b8c0c1fe5e94a0589742969f7bf416ee08d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2014 Kalray
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Xavier Raynaud - Initial API and implementation
*******************************************************************************/
package org.eclipse.tracecompass.tmf.ui.views.filter;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.tracecompass.tmf.core.filter.model.ITmfFilterTreeNode;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PlatformUI;
/**
* Handler for delete command in filter view
* @author Xavier Raynaud <xavier.raynaud@kalray.eu>
*/
public class DeleteHandler extends AbstractHandler {
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
// Check if we are closing down
IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
if (window == null) {
return null;
}
IWorkbenchPage page = window.getActivePage();
FilterView part = (FilterView) page.getActivePart();
ISelection sel = part.getViewSite().getSelectionProvider().getSelection();
if (sel instanceof IStructuredSelection) {
IStructuredSelection selection = (IStructuredSelection) sel;
Object o = selection.getFirstElement();
if (o instanceof ITmfFilterTreeNode) {
ITmfFilterTreeNode node = (ITmfFilterTreeNode) o;
node.remove();
part.refresh();
}
}
return null;
}
@Override
public boolean isEnabled() {
// Check if we are closing down
IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
if (window == null) {
return false;
}
// Get the selection
IWorkbenchPage page = window.getActivePage();
IWorkbenchPart part = page.getActivePart();
if (part instanceof FilterView) {
FilterView tcv = (FilterView) part;
ISelection selection = tcv.getSite().getSelectionProvider().getSelection();
// only enable if tree is in focus
if (!selection.isEmpty() && tcv.isTreeInFocus()) {
return true;
}
}
return false;
}
}