Skip to main content
summaryrefslogtreecommitdiffstats
blob: 92a34e4db228fbbd09ac8e1600b7156fb50a2947 (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
/*******************************************************************************
 * Copyright (c) 2000, 2015 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.internal.base;
/**
 * Interface for holding Help UI plug-in constants
 */
public interface IHelpBaseConstants {
	// Preference ids
	String P_KEY_WINDOW_INFOPOP = "window_infopop";//$NON-NLS-1$
	String P_KEY_DIALOG_INFOPOP = "dialog_infopop";//$NON-NLS-1$
	String P_KEY_HELP_VIEW_OPEN_MODE = "help_view_open_mode"; //$NON-NLS-1$
	String P_IN_PLACE = "in_place"; //$NON-NLS-1$
	String P_IN_EDITOR = "in editor"; //$NON-NLS-1$
	String P_IN_BROWSER = "in browser"; //$NON-NLS-1$
	String P_KEY_HELP_SCOPE = "scope"; //$NON-NLS-1$
	String P_KEY_FILTER_DIALOG = "filterDialog"; //$NON-NLS-1$
	String P_KEY_ALWAYS_EXTERNAL_BROWSER = "always_external_browser"; //$NON-NLS-1$
	String P_KEY_SEARCH_FROM_BROWSER = "search_from_browser"; //$NON-NLS-1$
	String P_KEY_REMOTE_HELP_ON = "remoteHelpOn"; //$NON-NLS-1$
	String P_KEY_REMOTE_HELP_PREFERRED = "remoteHelpPreferred"; //$NON-NLS-1$
	String P_KEY_REMOTE_HELP_NAME = "remoteHelpName"; //$NON-NLS-1$
	String P_KEY_REMOTE_HELP_HOST = "remoteHelpHost"; //$NON-NLS-1$
	String P_KEY_REMOTE_HELP_PATH = "remoteHelpPath"; //$NON-NLS-1$
	String P_KEY_REMOTE_HELP_PROTOCOL = "remoteHelpProtocol"; //$NON-NLS-1$
	String P_KEY_REMOTE_HELP_DEFAULT_PORT = "remoteHelpUseDefaultPort"; //$NON-NLS-1$
	String P_KEY_REMOTE_HELP_PORT = "remoteHelpPort"; //$NON-NLS-1$
	String P_KEY_REMOTE_HELP_ICEnabled = "remoteHelpICEnabled"; //$NON-NLS-1$
	String P_KEY_SHOW_SEARCH_DESCRIPTION = "showSearchDescription"; //$NON-NLS-1$
	String P_KEY_SHOW_SEARCH_CATEGORIES = "showSearchCategories"; //$NON-NLS-1$
    String P_SHOW_BREADCRUMBS = "showBreadcrumbs"; //$NON-NLS-1$
    String P_PAGE_NOT_FOUND = "page_not_found"; //$NON-NLS-1$
}

Back to the top