blob: ee1014ea471ca4a1fa7c7dbbadc4696ff12128c1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 Fabio Zadrozny 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:
* Fabio Zadrozny - initial API and implementation - http://eclip.se/8519
*******************************************************************************/
package org.eclipse.e4.ui.macros.internal.actions;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.e4.core.macros.EMacroService;
import org.eclipse.e4.core.macros.MacroPlaybackException;
import org.eclipse.e4.ui.macros.Activator;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.handlers.HandlerUtil;
import org.eclipse.ui.statushandlers.StatusAdapter;
import org.eclipse.ui.statushandlers.StatusManager;
/**
* Activates the playback of the last macro.
*/
public class MacroPlaybackAction extends AbstractHandler {
@Override
public Object execute(ExecutionEvent event) {
try {
PlatformUI.getWorkbench().getService(EMacroService.class).playbackLastMacro();
} catch (MacroPlaybackException e) {
IWorkbenchWindow activeWorkbenchWindow = HandlerUtil.getActiveWorkbenchWindow(event);
if (activeWorkbenchWindow != null) {
StatusAdapter status = new StatusAdapter(new Status(IStatus.ERROR,
Activator.getDefault().getBundle().getSymbolicName(), e.getMessage(), e));
StatusManager.getManager().handle(status, StatusManager.SHOW | StatusManager.LOG);
}
}
return null;
}
}