1 package net.sourceforge.phpdt.internal.ui;
3 import java.net.MalformedURLException;
6 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
8 import org.eclipse.jface.action.IAction;
9 import org.eclipse.jface.resource.ImageDescriptor;
10 import org.eclipse.jface.resource.ImageRegistry;
11 import org.eclipse.swt.graphics.Image;
13 public class PHPUiImages {
15 protected static final String NAME_PREFIX =
16 "net.sourceforge.phpdt.internal.ui.";
17 protected static final int NAME_PREFIX_LENGTH = NAME_PREFIX.length();
19 protected static URL iconBaseURL;
22 String pathSuffix = "icons/";
31 } catch (MalformedURLException e) {
32 PHPeclipsePlugin.log(e);
36 protected static final ImageRegistry IMAGE_REGISTRY = new ImageRegistry();
38 protected static final String OBJ_PREFIX = "obj16";
39 protected static final String OVR_PREFIX = "ovr16";
40 protected static final String CTOOL_PREFIX = "ctool16";
42 public static final String IMG_CLASS = NAME_PREFIX + "class_obj.gif";
43 public static final String IMG_DEFINE = NAME_PREFIX + "define_obj.gif";
44 public static final String IMG_BUILTIN = NAME_PREFIX + "builtin_obj.gif";
45 public static final String IMG_FUN = NAME_PREFIX + "fun_obj.gif";
46 public static final String IMG_INC = NAME_PREFIX + "impc_obj.gif";
47 public static final String IMG_VAR = NAME_PREFIX + "var_obj.gif";
48 public static final String IMG_OBJS_ERROR = NAME_PREFIX + "error_obj.gif";
49 public static final String IMG_OBJS_WARNING =
50 NAME_PREFIX + "warning_obj.gif";
51 public static final String IMG_OBJS_INFO = NAME_PREFIX + "info_obj.gif";
52 public static final String IMG_CTOOLS_PHP_PAGE =
53 NAME_PREFIX + "php_page.gif";
54 public static final String IMG_CTOOLS_PHP = NAME_PREFIX + "php.gif";
56 public static final String IMG_OBJS_TEMPLATE =
57 NAME_PREFIX + "template_obj.gif";
59 public static final String IMG_CLEAR = NAME_PREFIX + "clear.gif";
61 public static final ImageDescriptor DESC_CLASS =
62 createManaged(OBJ_PREFIX, IMG_CLASS);
63 public static final ImageDescriptor DESC_DEFINE =
64 createManaged(OBJ_PREFIX, IMG_DEFINE);
65 public static final ImageDescriptor DESC_BUILTIN =
66 createManaged(OBJ_PREFIX, IMG_BUILTIN);
67 public static final ImageDescriptor DESC_FUN =
68 createManaged(OBJ_PREFIX, IMG_FUN);
69 public static final ImageDescriptor DESC_INC =
70 createManaged(OBJ_PREFIX, IMG_INC);
71 public static final ImageDescriptor DESC_VAR =
72 createManaged(OBJ_PREFIX, IMG_VAR);
73 public static final ImageDescriptor DESC_OBJS_ERROR =
74 createManaged(OBJ_PREFIX, IMG_OBJS_ERROR);
75 public static final ImageDescriptor DESC_OBJS_WARNING =
76 createManaged(OBJ_PREFIX, IMG_OBJS_WARNING);
77 public static final ImageDescriptor DESC_OBJS_INFO =
78 createManaged(OBJ_PREFIX, IMG_OBJS_INFO);
79 public static final ImageDescriptor DESC_CTOOL_PHP_PAGE =
80 createManaged(CTOOL_PREFIX, IMG_CTOOLS_PHP_PAGE);
81 public static final ImageDescriptor DESC_CTOOL_PHP =
82 createManaged(CTOOL_PREFIX, IMG_CTOOLS_PHP);
84 public static final ImageDescriptor DESC_OBJS_TEMPLATE =
85 createManaged(OBJ_PREFIX, IMG_OBJS_TEMPLATE);
87 public static final ImageDescriptor DESC_CLEAR =
88 createManaged(OBJ_PREFIX, IMG_CLEAR);
91 * Returns the image managed under the given key in this registry.
93 * @param key the image's key
94 * @return the image managed under the given key
96 public static Image get(String key) {
97 return IMAGE_REGISTRY.get(key);
101 * Sets the three image descriptors for enabled, disabled, and hovered to an action. The actions
102 * are retrieved from the *tool16 folders.
104 public static void setToolImageDescriptors(
107 setImageDescriptors(action, "tool16", iconName);
111 * Sets the three image descriptors for enabled, disabled, and hovered to an action. The actions
112 * are retrieved from the *lcl16 folders.
114 public static void setLocalImageDescriptors(
117 setImageDescriptors(action, "lcl16", iconName);
120 public static ImageRegistry getImageRegistry() {
121 return IMAGE_REGISTRY;
124 //---- Helper methods to access icons on the file system --------------------------------------
126 protected static void setImageDescriptors(
133 ImageDescriptor.createFromURL(
134 makeIconFileURL("d" + type, relPath));
136 action.setDisabledImageDescriptor(id);
137 } catch (MalformedURLException e) {
142 ImageDescriptor.createFromURL(
143 makeIconFileURL("c" + type, relPath));
145 action.setHoverImageDescriptor(id);
146 } catch (MalformedURLException e) {
149 action.setImageDescriptor(create("e" + type, relPath));
152 protected static ImageDescriptor createManaged(
156 ImageDescriptor result =
157 ImageDescriptor.createFromURL(
160 name.substring(NAME_PREFIX_LENGTH)));
161 IMAGE_REGISTRY.put(name, result);
163 } catch (MalformedURLException e) {
164 return ImageDescriptor.getMissingImageDescriptor();
168 protected static ImageDescriptor create(String prefix, String name) {
170 return ImageDescriptor.createFromURL(makeIconFileURL(prefix, name));
171 } catch (MalformedURLException e) {
172 return ImageDescriptor.getMissingImageDescriptor();
176 protected static URL makeIconFileURL(String prefix, String name)
177 throws MalformedURLException {
178 if (iconBaseURL == null)
179 throw new MalformedURLException();
181 StringBuffer buffer = new StringBuffer(prefix);
184 return new URL(iconBaseURL, buffer.toString());