Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4dca72fe64177461b383cbf759068b237c885be4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*******************************************************************************
 * Copyright (c) 2007, 2016 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.help.ui.internal.handlers;

import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.runtime.Platform;
import org.eclipse.help.internal.base.BaseHelpSystem;
import org.eclipse.help.internal.base.HelpBasePlugin;
import org.eclipse.help.internal.base.IHelpBaseConstants;
import org.eclipse.help.ui.internal.DefaultHelpUI;
import org.eclipse.ui.PlatformUI;

/**
 * Default handler for the "Help/Index" command
 */

public class ShowIndexHandler extends AbstractHandler {

	/*
	 * Currently returns true, could be controlled by a preference
	 * in the future
	 */
    private boolean isOpenInHelpView() {
    	boolean searchFromBrowser =
    		Platform.getPreferencesService().getBoolean(HelpBasePlugin.PLUGIN_ID,IHelpBaseConstants.P_KEY_SEARCH_FROM_BROWSER, false, null);
	    return !searchFromBrowser;
	}

	@Override
	public Object execute(ExecutionEvent event) throws ExecutionException {
		if (isOpenInHelpView()) {
			openInHelpView();
		} else {
			openInBrowser();
		}
		return null;
	}

	private void openInBrowser() {
		PlatformUI.getWorkbench().getHelpSystem();
		BaseHelpSystem.getHelpDisplay().displayHelpResource("tab=index", false); //$NON-NLS-1$
	}

	private void openInHelpView() {
		DefaultHelpUI.showIndex();
	}

}

Back to the top