Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3af9eaf9e32f32b6a4520553a433af81b76449a5 (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
60
61
62
/*******************************************************************************
 * Copyright (c) 2000, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.team.ui;

/**
 * Images that are available for providers to re-use. They include
 * common overlays and wizard images. A provider can use their own
 * custom images, these shared images are only available for 
 * convenience.
 * 
 * @see TeamImages
 * @since 2.0
 */
public interface ISharedImages {

	/*====================================================================
	 * Constants defining overlays
	 *====================================================================*/

	/**
	 * Overlay identifies a locally changed file.
	 */
	public final String IMG_DIRTY_OVR = "ovr/dirty_ov.gif"; //$NON-NLS-1$

	/**
	 * Overlay identified a version controlled file.
	 */
	public final String IMG_CHECKEDIN_OVR = "ovr/version_controlled.gif"; //$NON-NLS-1$

	/**
	 * Overlay identifies a checked-out file.
	 */
	public final String IMG_CHECKEDOUT_OVR = "ovr/checkedout_ov.gif"; //$NON-NLS-1$

	/**
	 * Overlay identifies a conflicting element.
	 */
	public final String IMG_CONFLICT_OVR = "ovr/confchg_ov.gif"; //$NON-NLS-1$

	/**
	 * Overlay identifies an error in the element.
	 */
	public final String IMG_ERROR_OVR = "ovr/error_co.gif"; //$NON-NLS-1$

	/**
	 * Overlay identifies an error in the element.
	 */
	public final String IMG_WARNING_OVR = "ovr/warning_co.gif"; //$NON-NLS-1$

	/**
	 * Overlay identifies an element that is being worked on (e.g. is busy).
	 */
	public final String IMG_HOURGLASS_OVR = "ovr/waiting_ovr.gif"; //$NON-NLS-1$
}

Back to the top