方便管理plugin或rcp的icons
2008-01-05 18:13:00 来源:WEB开发网每个UI程序都离不开图片,一般的Eclipse插件,在一个类中定义了若干静态常量,每一个常量指定一个icon的名字,在程序中用到图片的时候,通过这个常量计算得到图片。Eclipse的插件一般规模较大,图片很多,而且分不同的像素,彩色,灰白等。这样有利于统一的治理和开发人员的沟通。 但并不是每个plugin或者rcp都要用到这么多图片,假如只有很少的图片的话,可以用图片的名字作为key,来存取图片。程序例子如下: public class ImageShop { PRivate static ImageRegistry register = new ImageRegistry(); private static Set keys = new HashSet(); static { initial(); } public static ImageDescriptor getDescriptor(String key) { ImageDescriptor image = register.getDescriptor(key); if (image == null) { image = ImageDescriptor.getMissingImageDescriptor(); } return image; } public static Image get(String key) { Image image = register.get(key); if (image == null) { image = ImageDescriptor.getMissingImageDescriptor().createImage(); } return image; } public static String[] getImageKey() { return (String[]) keys.toArray(new String[keys.size()]); } private static void initial() { Bundle bundle = Platform.getBundle(PwdgatePlugin.ID); URL url = bundle.getEntry("icons"); try { url = Platform.asLocalURL(url); } catch (Exception e) { PwdgatePlugin.log("get root path", e); } File file = new File(url.getPath()); File[] images = file.listFiles(); for (int i = 0; i < images.length; i++) { File f = images[i]; if (!f.isFile()) { continue; } String name = f.getName(); if (!name.endsWith(".gif")) { continue; } String key = name.substring(0, name.indexOf('.')); URL fullPathString = bundle.getEntry("icons/" + name); ImageDescriptor des = ImageDescriptor.createFromURL(fullPathString); register.put(key, des); keys.add(key); } } } 所有的图片都放在根目录/icons目录下,在系统中假如用到名字为default.gif的图片,只要调用ImageShop.get(“default”)即可;有时在Action中需要用到ImageDescriptor,调用ImageShop. getDescriptor(“default”)就可以取到。
- ››管理/var/spool/clientmqueue/下的大文件
- ››管理私有云,第 2 部分: 使用 WebSphere CloudBur...
- ››管理 Eclipse 环境:Eclipse 维护的神秘艺术
- ››方便实用 通讯管理软件盘点
- ››管理私有云:WebSphere CloudBurst Appliance 命令...
- ››管理启动项 - Windows 7中的BCDEDIT命令
- ››管理Exchange 2003注意事项
- ››管理好超级管理员帐户堵住系统漏洞
- ››管理数据中心资源池需要注意的事项
- ››管理虚拟化环境的两大重要标准:VMAN和OVF
- ››方便随身携带 手机播放电影全攻略
- ››管理与技术有机结合 保障网络安全运行
更多精彩
赞助商链接