1 11 package org.eclipse.ui; 12 13 import org.eclipse.jface.resource.ImageDescriptor; 14 import org.eclipse.swt.graphics.Image; 15 16 29 public interface ISharedImages { 30 33 public final static String IMG_OBJ_FILE = "IMG_OBJ_FILE"; 35 38 public final static String IMG_OBJ_FOLDER = "IMG_OBJ_FOLDER"; 40 47 public final static String IMG_OBJ_PROJECT = "IMG_OBJ_PROJECT"; 49 56 public final static String IMG_OBJ_PROJECT_CLOSED = "IMG_OBJ_PROJECT_CLOSED"; 58 61 public final static String IMG_OBJ_ELEMENT = "IMG_OBJ_ELEMENTS"; 63 70 public final static String IMG_OPEN_MARKER = "IMG_OPEN_MARKER"; 72 75 public final static String IMG_DEF_VIEW = "IMG_DEF_VIEW"; 77 80 public final static String IMG_OBJS_ERROR_TSK = "IMG_OBJS_ERROR_TSK"; 82 85 public final static String IMG_OBJS_WARN_TSK = "IMG_OBJS_WARN_TSK"; 87 90 public final static String IMG_OBJS_INFO_TSK = "IMG_OBJS_INFO_TSK"; 92 99 public final static String IMG_OBJS_TASK_TSK = "IMG_OBJS_TASK_TSK"; 101 108 public final static String IMG_OBJS_BKMRK_TSK = "IMG_OBJS_BKMRK_TSK"; 110 113 public final static String IMG_TOOL_NEW_WIZARD = "IMG_TOOL_NEW_WIZARD"; 115 121 public final static String IMG_TOOL_NEW_WIZARD_HOVER = "IMG_TOOL_NEW_WIZARD_HOVER"; 123 126 public final static String IMG_TOOL_NEW_WIZARD_DISABLED = "IMG_TOOL_NEW_WIZARD_DISABLED"; 128 131 public final static String IMG_TOOL_UNDO = "IMG_TOOL_UNDO"; 133 139 public final static String IMG_TOOL_UNDO_HOVER = "IMG_TOOL_UNDO_HOVER"; 141 144 public final static String IMG_TOOL_UNDO_DISABLED = "IMG_TOOL_UNDO_DISABLED"; 146 149 public final static String IMG_TOOL_REDO = "IMG_TOOL_REDO"; 151 157 public final static String IMG_TOOL_REDO_HOVER = "IMG_TOOL_REDO_HOVER"; 159 162 public final static String IMG_TOOL_REDO_DISABLED = "IMG_TOOL_REDO_DISABLED"; 164 167 public final static String IMG_TOOL_CUT = "IMG_TOOL_CUT"; 169 175 public final static String IMG_TOOL_CUT_HOVER = "IMG_TOOL_CUT_HOVER"; 177 180 public final static String IMG_TOOL_CUT_DISABLED = "IMG_TOOL_CUT_DISABLED"; 182 185 public final static String IMG_TOOL_COPY = "IMG_TOOL_COPY"; 187 193 public final static String IMG_TOOL_COPY_HOVER = "IMG_TOOL_COPY_HOVER"; 195 198 public final static String IMG_TOOL_COPY_DISABLED = "IMG_TOOL_COPY_DISABLED"; 200 203 public final static String IMG_TOOL_PASTE = "IMG_TOOL_PASTE"; 205 211 public final static String IMG_TOOL_PASTE_HOVER = "IMG_TOOL_PASTE_HOVER"; 213 216 public final static String IMG_TOOL_PASTE_DISABLED = "IMG_TOOL_PASTE_DISABLED"; 218 221 public final static String IMG_TOOL_DELETE = "IMG_TOOL_DELETE"; 223 229 public final static String IMG_TOOL_DELETE_HOVER = "IMG_TOOL_DELETE_HOVER"; 231 234 public final static String IMG_TOOL_DELETE_DISABLED = "IMG_TOOL_DELETE_DISABLED"; 236 239 public final static String IMG_TOOL_FORWARD = "IMG_TOOL_FORWARD"; 241 247 public final static String IMG_TOOL_FORWARD_HOVER = "IMG_TOOL_FORWARD_HOVER"; 249 252 public final static String IMG_TOOL_FORWARD_DISABLED = "IMG_TOOL_FORWARD_DISABLED"; 254 257 public final static String IMG_TOOL_BACK = "IMG_TOOL_BACK"; 259 265 public final static String IMG_TOOL_BACK_HOVER = "IMG_TOOL_BACK_HOVER"; 267 270 public final static String IMG_TOOL_BACK_DISABLED = "IMG_TOOL_BACK_DISABLED"; 272 275 public final static String IMG_TOOL_UP = "IMG_TOOL_UP"; 277 283 public final static String IMG_TOOL_UP_HOVER = "IMG_TOOL_UP_HOVER"; 285 288 public final static String IMG_TOOL_UP_DISABLED = "IMG_TOOL_UP_DISABLED"; 290 299 public Image getImage(String symbolicName); 300 301 310 public ImageDescriptor getImageDescriptor(String symbolicName); 311 } 312 | Popular Tags |