blob: f73e3f801a5989d8fcc4056fa5240f65021ea60a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Carsten Hiesserich 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:
* Carsten Hiesserich - initial API and implementation
*******************************************************************************/
package org.eclipse.vex.ui.internal.handlers;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.jface.window.Window;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.vex.core.internal.widget.swt.VexWidget;
import org.eclipse.vex.core.provisional.dom.DocumentValidationException;
import org.eclipse.vex.ui.internal.VexPlugin;
import org.eclipse.vex.ui.internal.swt.ProcessingInstrDialog;
public class AddProcessingInstructionHandler extends AbstractVexWidgetHandler {
@Override
public void execute(final VexWidget widget) throws ExecutionException {
if (widget.canInsertProcessingInstruction()) {
final Shell shell = VexPlugin.getDefault().getWorkbench().getActiveWorkbenchWindow().getShell();
final ProcessingInstrDialog dialog = new ProcessingInstrDialog(shell, "");
dialog.create();
if (dialog.open() == Window.OK && widget.canInsertProcessingInstruction()) {
try {
widget.insertProcessingInstruction(dialog.getTarget());
} catch (final DocumentValidationException e) {
}
}
}
}
}