Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 44b960acfcc365b29b9cfdcb3096e889adf38cb0 (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
/*******************************************************************************
 * Copyright (c) 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.pde.internal.core.iproduct;

public interface ILauncherInfo extends IProductObject {
	
	public static final String LINUX_ICON = "linuxIcon"; //$NON-NLS-1$
	
	public static final String MACOSX_ICON = "macosxIcon"; //$NON-NLS-1$
	
	public static final String SOLARIS_LARGE = "solarisLarge"; //$NON-NLS-1$
	public static final String SOLARIS_MEDIUM = "solarisMedium"; //$NON-NLS-1$
	public static final String SOLARIS_SMALL = "solarisSmall"; //$NON-NLS-1$
	public static final String SOLARIS_TINY = "solarisTiny"; //$NON-NLS-1$
	
	public static final String WIN32_16_LOW = "winSmallLow"; //$NON-NLS-1$
	public static final String WIN32_16_HIGH = "winSmallHigh"; //$NON-NLS-1$
	public static final String WIN32_24_LOW = "win24Low"; //$NON-NLS-1$
	public static final String WIN32_32_LOW = "winMediumLow"; //$NON-NLS-1$
	public static final String WIN32_32_HIGH = "winMediumHigh"; //$NON-NLS-1$
	public static final String WIN32_48_LOW = "winLargeLow"; //$NON-NLS-1$
	public static final String WIN32_48_HIGH = "winLargeHigh"; //$NON-NLS-1$
	
	public static final String P_USE_ICO = "useIco"; //$NON-NLS-1$
	public static final String P_ICO_PATH = "icoFile"; //$NON-NLS-1$
	public static final String P_LAUNCHER = "launcher"; //$NON-NLS-1$
	
	String getLauncherName();
	
	void setLauncherName(String name);
	
	void setIconPath(String iconId, String path);
	
	String getIconPath(String iconId);
	
	boolean usesWinIcoFile();
	
	void setUseWinIcoFile(boolean use);
}

Back to the top