blob: aa1766b402acfff57b0d0edb24a7710691f1d82d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.views.markers;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.jface.dialogs.InputDialog;
import org.eclipse.jface.window.Window;
import org.eclipse.osgi.util.NLS;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.views.markers.MarkerViewHandler;
import org.eclipse.ui.views.markers.internal.MarkerMessages;
/**
* OpenMarkersViewHandler is used to open another markers view.
*
* @since 3.4
*
*/
public class OpenMarkersViewHandler extends MarkerViewHandler {
/*
* (non-Javadoc)
*
* @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
*/
public Object execute(ExecutionEvent event) throws ExecutionException {
ExtendedMarkersView part = getView(event);
if (part == null)
return null;
try {
String count = ExtendedMarkersView.newSecondaryID();
String defaultName = NLS.bind(MarkerMessages.newViewTitle,
new Object[] { part.getPartName(), count });
InputDialog dialog = new InputDialog(part.getSite().getShell(),
MarkerMessages.NewViewHandler_dialogTitle,
MarkerMessages.NewViewHandler_dialogMessage, defaultName,
null);
if (dialog.open() != Window.OK)
return this;
IViewPart newPart = part.getSite().getPage()
.showView(part.getSite().getId(), count,
IWorkbenchPage.VIEW_ACTIVATE);
if (newPart instanceof ExtendedMarkersView) {
((ExtendedMarkersView) newPart).initializeTitle(dialog
.getValue());
}
} catch (PartInitException e) {
throw new ExecutionException(e.getLocalizedMessage(), e);
}
return this;
}
}