ref #8930: use red not entry icon for not published descriptions
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / model / ImageResources.java
index 18df5d44b4bbaaf22fb2534b9765033a8630dae3..c5040e4bca38a2a4bd54d0e7425c1a57a54553db 100644 (file)
@@ -51,7 +51,11 @@ public class ImageResources {
        ICONS
        ************************************************************************************** */
        /** Constant <code>ADD_ICON="add_icon"</code> */
+       public static final String COPY_ICON = "copy_icon";
+       public static final String PASTE_ICON = "paste_icon";
        public static final String ADD_ICON = "add_icon";
+       public static final String ADD_DOUBLE = "add_double";
+       public static final String ADD_TEXT = "add_text";
        public static final String ADD_ICON_GREEN = "add_icon_green";
        public static final String MIN_ICON = "min_icon";
        public static final String ADD_EDIT = "add_edit";
@@ -59,6 +63,7 @@ public class ImageResources {
        public static final String TRASH_ICON = "trash_icon";
        /** Constant <code>BROWSE_ICON="browse_icon"</code> */
        public static final String BROWSE_ICON = "browse_icon";
+       public static final String SEARCH_ICON = "search_icon";
        /** Constant <code>EDIT_ICON="edit_icon"</code> */
        public static final String EDIT_ICON = "edit_icon";
        /** Constant <code>EDIT_LOGO_ICON="edit_logo_icon"</code> */
@@ -141,12 +146,14 @@ public class ImageResources {
        public static final String ORPHANED_TAXON = "orphaned_taxon";
        /** Constant <code>EXPAND_ALL="expand_all"</code> */
        public static final String EXPAND_ALL = "expand_all";
+       public static final String EXPAND = "expand";
        /** Constant <code>COLLAPSE_ALL="collapse_all"</code> */
        public static final String COLLAPSE_ALL = "collapse_all";
 
        public static final String SWITCH_VIEW_TYPE = "switch_view_type";
        public static final String SETTINGS = "settings";
        public static final String EXPORT = "export";
+       public static final String IMPORT = "import";
 
        //derivative icons
        public static final String TISSUE_SAMPLE_DERIVATE = "tissue_sample_derivate";
@@ -180,6 +187,15 @@ public class ImageResources {
     public static final String FLAT = "flat";
     public static final String HIERARCHICAL = "hierarchical";
 
+    public static final String LIGHT_BULB = "light_bulb";
+    public static final String HELP_TOPIC = "help_icon";
+    public static final String VALIDATE_ICON = "VALIDATE_ICON";
+    public static final String FUNNEL_ICON = "FUNNEL_ICON";
+    public static final String FUNNEL_ICON_EXCLAMATION = "FUNNEL_ICON_EXCLAMATION";
+
+    public static final String PROHIBITED = "prohibited";
+
+
 
        /***************************************************************************
         * IMAGE REGISTRY
@@ -273,8 +289,16 @@ public class ImageResources {
         * @param registry a {@link org.eclipse.jface.resource.ImageRegistry} object.
         */
        protected void initializeImageRegistry(ImageRegistry registry) {
+           registerImage(registry, COPY_ICON,
+                   "copy_edit.png");
+           registerImage(registry, PASTE_ICON,
+                   "paste_edit.png");
                registerImage(registry, ADD_ICON,
                                "add_no_bg.gif");
+               registerImage(registry, ADD_DOUBLE,
+                       "add_double.png");
+               registerImage(registry, ADD_TEXT,
+                       "add_text.png");
                registerImage(registry, ADD_ICON_GREEN,
                        "add.gif");
                registerImage(registry, MIN_ICON,
@@ -357,10 +381,14 @@ public class ImageResources {
                                "orphaned.gif");
                registerImage(registry, EXPAND_ALL,
                                "expandAll.jpg");
+               registerImage(registry, EXPAND,
+                       "expand.gif");
                registerImage(registry, COLLAPSE_ALL,
                                "collapseall.gif");
                registerImage(registry, BROWSE_ICON,
                                "prj_obj.gif");
+               registerImage(registry, SEARCH_ICON,
+                       "search.gif");
                registerImage(registry, LOCK_ICON,
                        "lock.png");
                registerImage(registry, SYNCED,
@@ -421,6 +449,8 @@ public class ImageResources {
                                "default_derivate-16x16-32.png");
                registerImage(registry, EXPORT,
                        "export.gif");
+               registerImage(registry, IMPORT,
+                       "import_wiz.gif");
 
                registerImage(registry, WEB,
                        "web.gif");
@@ -431,6 +461,18 @@ public class ImageResources {
                        "flat.gif");
                registerImage(registry, HIERARCHICAL,
                        "hierarchical.gif");
+               registerImage(registry, LIGHT_BULB,
+                       "smartmode_co.gif");
+               registerImage(registry, HELP_TOPIC,
+                       "help_topic.gif");
+               registerImage(registry, VALIDATE_ICON,
+                       "validate.gif");
+               registerImage(registry, FUNNEL_ICON,
+                       "funnel-icon.png");
+               registerImage(registry, FUNNEL_ICON_EXCLAMATION,
+                       "funnel-exclamation-icon.png");
+               registerImage(registry, PROHIBITED,
+                "no_entry_red.png");
 
        }