blob: a71d29577354b3648f57dbdbed34560e062c21af [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:
* Kentarou FUKUDA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.model.ui.editor.actions;
import org.eclipse.actf.model.ui.IModelService;
import org.eclipse.actf.model.ui.editor.browser.DefaultWebBrowserNavigationEventListener;
import org.eclipse.actf.model.ui.editor.browser.IWebBrowserACTF;
import org.eclipse.actf.model.ui.editor.browser.IWebBrowserNavigationEventListener;
import org.eclipse.actf.model.ui.editor.browser.WebBrowserNavigationEvent;
import org.eclipse.actf.model.ui.util.ModelServiceMessages;
import org.eclipse.actf.model.ui.util.ModelServiceUtils;
import org.eclipse.actf.ui.util.PlatformUIUtil;
import org.eclipse.jface.action.Action;
import org.eclipse.ui.ISharedImages;
public class GoBackAction extends Action {
private String message = ModelServiceMessages.getString("WebBrowser.Backward_4");
private String message_tp = ModelServiceMessages.getString("WebBrowser.Backward_4_tp");
private IWebBrowserNavigationEventListener defaultListener = new DefaultWebBrowserNavigationEventListener();
public GoBackAction() {
this(true);
}
public GoBackAction(boolean flag) {
setText(message);
setToolTipText(message_tp);
if (flag)
setImageDescriptor(PlatformUIUtil.getSharedImageDescriptor(ISharedImages.IMG_TOOL_BACK));
}
public void run() {
IModelService modelService = ModelServiceUtils.getActiveModelService();
if (modelService != null && modelService instanceof IWebBrowserACTF) {
WebBrowserNavigationEvent event = new WebBrowserNavigationEvent(this, ((IWebBrowserACTF) modelService));
if (IWebBrowserACTF.WebBrowserNavigationEventListnerHolder.LISTENER != null) {
IWebBrowserACTF.WebBrowserNavigationEventListnerHolder.LISTENER.goBack(event);
} else {
defaultListener.goBack(event);
}
}
}
}