blob: 7d8f36c71881d00c1b084720488c29adca89d1aa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 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.actions;
import org.eclipse.jface.action.Action;
import org.eclipse.swt.custom.BusyIndicator;
import org.eclipse.ui.IWorkbenchPreferenceConstants;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.actions.ActionFactory.IWorkbenchAction;
import org.eclipse.ui.internal.IWorkbenchGraphicConstants;
import org.eclipse.ui.internal.IWorkbenchHelpContextIds;
import org.eclipse.ui.internal.WorkbenchImages;
import org.eclipse.ui.internal.WorkbenchMessages;
import org.eclipse.ui.internal.util.PrefUtil;
/**
* Action to open the help search.
*
* @since 3.1
*/
public class HelpSearchAction extends Action implements IWorkbenchAction {
/**
* The workbench window; or <code>null</code> if this
* action has been <code>dispose</code>d.
*/
private IWorkbenchWindow workbenchWindow;
/**
* Zero-arg constructor to allow cheat sheets to reuse this action.
*/
public HelpSearchAction() {
this(PlatformUI.getWorkbench().getActiveWorkbenchWindow());
}
/**
* Constructor for use by ActionFactory.
*
* @param window the window
*/
public HelpSearchAction(IWorkbenchWindow window) {
if (window == null) {
throw new IllegalArgumentException();
}
this.workbenchWindow = window;
setActionDefinitionId("org.eclipse.ui.help.helpSearch"); //$NON-NLS-1$
// support for allowing a product to override the text for the action
String overrideText = PrefUtil.getAPIPreferenceStore().getString(
IWorkbenchPreferenceConstants.HELP_SEARCH_ACTION_TEXT);
if ("".equals(overrideText)) { //$NON-NLS-1$
setText(WorkbenchMessages.HelpSearchAction_text);
setToolTipText(WorkbenchMessages.HelpSearchAction_toolTip);
} else {
setText(overrideText);
setToolTipText(Action.removeMnemonics(overrideText));
}
setImageDescriptor(WorkbenchImages
.getImageDescriptor(IWorkbenchGraphicConstants.IMG_ETOOL_HELP_SEARCH));
window.getWorkbench().getHelpSystem().setHelp(this,
IWorkbenchHelpContextIds.HELP_SEARCH_ACTION);
}
/* (non-Javadoc)
* Method declared on IAction.
*/
public void run() {
if (workbenchWindow == null) {
// action has been disposed
return;
}
//This may take a while, so use the busy indicator
BusyIndicator.showWhile(null, new Runnable() {
public void run() {
workbenchWindow.getWorkbench().getHelpSystem().displaySearch();
}
});
}
/* (non-Javadoc)
* Method declared on ActionFactory.IWorkbenchAction.
*/
public void dispose() {
workbenchWindow = null;
}
}