KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > team > internal > ui > ITeamUIImages


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.team.internal.ui;
12
13 /**
14  * Internal images for team ui.
15  *
16  * @since 3.0
17  */

18 public interface ITeamUIImages {
19
20     // local toolbars (colour)
21
/**
22      * Identifies an incoming change.
23      */

24     public final String JavaDoc IMG_DLG_SYNC_INCOMING = "elcl16/incom_synch.gif"; //$NON-NLS-1$
25
/**
26      * Identifies an outgoing change.
27      */

28     public final String JavaDoc IMG_DLG_SYNC_OUTGOING = "elcl16/outgo_synch.gif"; //$NON-NLS-1$
29
/**
30      * Identifies a conflicting change.
31      */

32     public final String JavaDoc IMG_DLG_SYNC_CONFLICTING = "elcl16/conflict_synch.gif"; //$NON-NLS-1$
33
/**
34      * Identifies a refresh action.
35      */

36     public final String JavaDoc IMG_REFRESH = "elcl16/refresh.gif"; //$NON-NLS-1$
37
/**
38      * Identifies a refresh with repository action.
39      */

40     public final String JavaDoc IMG_REFRESH_REMOTE = "elcl16/refresh_remote.gif"; //$NON-NLS-1$
41
/**
42      * Identifies a link with action.
43      */

44     public final String JavaDoc IMG_LINK_WITH = "elcl16/synced.gif"; //$NON-NLS-1$
45
/**
46      * Identifies an ignore white space action.
47      */

48     public final String JavaDoc IMG_IGNORE_WHITESPACE = "elcl16/ignorews_edit.gif"; //$NON-NLS-1$
49
/**
50      * Identifies a collapse all action.
51      */

52     public final String JavaDoc IMG_COLLAPSE_ALL = "elcl16/collapseall.gif"; //$NON-NLS-1$
53
/**
54      * Identifies the incoming mode for synchronizing.
55      */

56     public final String JavaDoc IMG_SYNC_MODE_CATCHUP = "elcl16/catchup_rls.gif"; //$NON-NLS-1$
57
/**
58      * Identifies the outgoing mode for synchronizing.
59      */

60     public final String JavaDoc IMG_SYNC_MODE_RELEASE = "elcl16/release_rls.gif"; //$NON-NLS-1$
61
/**
62      * Identifies the both mode for synchronizing.
63      */

64     public final String JavaDoc IMG_SYNC_MODE_FREE = "elcl16/catchuprelease_rls.gif"; //$NON-NLS-1$
65
/**
66      * Identifies an incoming change.
67      */

68     public final String JavaDoc IMG_DLG_SYNC_INCOMING_DISABLED = "dlcl16/incom_synch.gif"; //$NON-NLS-1$
69
/**
70      * Identifies an outgoing change.
71      */

72     public final String JavaDoc IMG_DLG_SYNC_OUTGOING_DISABLED = "dlcl16/outgo_synch.gif"; //$NON-NLS-1$
73
/**
74      * Identifies a conflicting change.
75      */

76     public final String JavaDoc IMG_DLG_SYNC_CONFLICTING_DISABLED = "dlcl16/conflict_synch.gif"; //$NON-NLS-1$
77
/**
78      * Identifies a refresh action.
79      */

80     public final String JavaDoc IMG_REFRESH_DISABLED = "dlcl16/refresh.gif"; //$NON-NLS-1$
81
/**
82      * Identifies a refresh with repository action.
83      */

84     public final String JavaDoc IMG_REFRESH_REMOTE_DISABLED = "dlcl16/refresh_remote.gif"; //$NON-NLS-1$
85
/**
86      * Identifies a link with action.
87      */

88     public final String JavaDoc IMG_LINK_WITH_DISABLED = "dlcl16/synced.gif"; //$NON-NLS-1$
89
/**
90      * Identifies an ignore white space action.
91      */

92     public final String JavaDoc IMG_IGNORE_WHITESPACE_DISABLED = "dlcl16/ignorews_edit.gif"; //$NON-NLS-1$
93
/**
94      * Identifies a collapse all action.
95      */

96     public final String JavaDoc IMG_COLLAPSE_ALL_DISABLED = "dlcl16/collapseall.gif"; //$NON-NLS-1$
97
/**
98      * Identifies the incoming mode for synchronizing.
99      */

100     public final String JavaDoc IMG_SYNC_MODE_CATCHUP_DISABLED = "dlcl16/catchup_rls.gif"; //$NON-NLS-1$
101
/**
102      * Identifies the outgoing mode for synchronizing.
103      */

104     public final String JavaDoc IMG_SYNC_MODE_RELEASE_DISABLED = "dlcl16/release_rls.gif"; //$NON-NLS-1$
105
/**
106      * Identifies the both mode for synchronizing.
107      */

108     public final String JavaDoc IMG_SYNC_MODE_FREE_DISABLED = "dlcl16/catchuprelease_rls.gif"; //$NON-NLS-1$
109
/**
110      * Identifies an incoming change.
111      */

112     public final String JavaDoc IMG_DLG_SYNC_INCOMING_ENABLED = "elcl16/incom_synch.gif"; //$NON-NLS-1$
113
/**
114      * Identifies an outgoing change.
115      */

116     public final String JavaDoc IMG_DLG_SYNC_OUTGOING_ENABLED = "elcl16/outgo_synch.gif"; //$NON-NLS-1$
117
/**
118      * Identifies a conflicting change.
119      */

120     public final String JavaDoc IMG_DLG_SYNC_CONFLICTING_ENABLED = "elcl16/conflict_synch.gif"; //$NON-NLS-1$
121
/**
122      * Identifies a refresh action.
123      */

124     public final String JavaDoc IMG_REFRESH_ENABLED = "elcl16/refresh.gif"; //$NON-NLS-1$
125
/**
126      * Identifies a refresh with repository action.
127      */

128     public final String JavaDoc IMG_REFRESH_REMOTE_ENABLED = "elcl16/refresh_remote.gif"; //$NON-NLS-1$
129
/**
130      * Identifies a link with action.
131      */

132     public final String JavaDoc IMG_LINK_WITH_ENABLED = "elcl16/synced.gif"; //$NON-NLS-1$
133
/**
134      * Identifies an ignore white space action.
135      */

136     public final String JavaDoc IMG_IGNORE_WHITESPACE_ENABLED = "elcl16/ignorews_edit.gif"; //$NON-NLS-1$
137
/**
138      * Identifies a collapse all action.
139      */

140     public final String JavaDoc IMG_COLLAPSE_ALL_ENABLED = "elcl16/collapseall.gif"; //$NON-NLS-1$
141
/**
142      * Identifies the incoming mode for synchronizing.
143      */

144     public final String JavaDoc IMG_SYNC_MODE_CATCHUP_ENABLED = "elcl16/catchup_rls.gif"; //$NON-NLS-1$
145
/**
146      * Identifies the outgoing mode for synchronizing.
147      */

148     public final String JavaDoc IMG_SYNC_MODE_RELEASE_ENABLED = "elcl16/release_rls.gif"; //$NON-NLS-1$
149
/**
150      * Identifies the both mode for synchronizing.
151      */

152     public final String JavaDoc IMG_SYNC_MODE_FREE_ENABLED = "elcl16/catchuprelease_rls.gif"; //$NON-NLS-1$
153
/**
154      * Share projects banner.
155      */

156     public final String JavaDoc IMG_WIZBAN_SHARE = "wizban/share_wizban.png"; //$NON-NLS-1$
157
/**
158      * Import project set banner.
159      */

160     public final String JavaDoc IMG_PROJECTSET_IMPORT_BANNER = "wizban/import_projectset_wizban.png"; //$NON-NLS-1$
161
/**
162      * Export project set banner.
163      */

164     public final String JavaDoc IMG_PROJECTSET_EXPORT_BANNER = "wizban/export_projectset_wizban.png"; //$NON-NLS-1$
165
/**
166      * Icon for authentication dialogs.
167      */

168     public final String JavaDoc IMG_KEY_LOCK = "wizban/keylock.gif"; //$NON-NLS-1$
169
/**
170      * Pinned icon
171      */

172     public final String JavaDoc IMG_PINNED = "elcl16/pin.gif"; //$NON-NLS-1$
173
/**
174      * Previous history
175      */

176     public final String JavaDoc IMG_PREVIOUS = "elcl16/prev_nav.gif"; //$NON-NLS-1$
177

178     //objects
179
public final String JavaDoc IMG_SITE_ELEMENT = "elcl16/site_element.gif"; //$NON-NLS-1$
180
public final String JavaDoc IMG_CHANGE_FILTER = "elcl16/change_filter.gif"; //$NON-NLS-1$
181
public final String JavaDoc IMG_COMPRESSED_FOLDER = "obj/compressed_folder_obj.gif"; //$NON-NLS-1$
182
public final String JavaDoc IMG_HIERARCHICAL = "elcl16/hierarchicalLayout.gif"; //$NON-NLS-1$
183
public final String JavaDoc IMG_FLAT = "elcl16/flatLayout.gif"; //$NON-NLS-1$
184
public final String JavaDoc IMG_SYNC_VIEW = "eview16/synch_synch.gif"; //$NON-NLS-1$
185
public final String JavaDoc IMG_CHANGE_SET = "obj/changeset_obj.gif"; //$NON-NLS-1$
186

187     /**
188      * Images used by the Local History Page
189      */

190     public final String JavaDoc IMG_COMPARE_VIEW = "eview16/compare_view.gif"; //$NON-NLS-1$
191
public final String JavaDoc IMG_DATES_CATEGORY = "obj/dates.gif"; //$NON-NLS-1$
192
public final String JavaDoc IMG_LOCALREVISION_TABLE = "obj/local_entry_tbl.gif"; //$NON-NLS-1$
193

194
195 }
196
Popular Tags