001: /*
002: * uDig - User Friendly Desktop Internet GIS client
003: * http://udig.refractions.net
004: * (C) 2004, Refractions Research Inc.
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation;
009: * version 2.1 of the License.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: */
017: package net.refractions.udig.project.ui.internal;
018:
019: import net.refractions.udig.core.internal.Icons;
020:
021: /**
022: * Image constants for use with Images class.
023: *
024: * @author jgarnett
025: */
026: public interface ImageConstants {
027:
028: // ELOCALTOOL
029: //
030: /** Up arrow */
031: public final static String UP_CO = Icons.ELOCALTOOL + "up_co.gif"; //$NON-NLS-1$
032: /** Down arrow */
033: public final static String DOWN_CO = Icons.ELOCALTOOL
034: + "down_co.gif"; //$NON-NLS-1$
035: /** Left arrow * */
036: public final static String LEFT_CO = Icons.ELOCALTOOL
037: + "left_co.gif"; //$NON-NLS-1$
038: /** Right arrow * */
039: public final static String RIGHT_CO = Icons.ELOCALTOOL
040: + "left_co.gif"; //$NON-NLS-1$
041: /** drop down arrow * */
042: public final static String DROP_DOWN_BUTTON = Icons.OVERLAY
043: + "drop_down_ovr.gif"; //$NON-NLS-1$
044:
045: // OVR
046: //
047:
048: /** <code>WARN_OVR</code> indicates render produced warnings, often due to reprojection */
049: public final static String WARN_OVR = Icons.OVERLAY
050: + "warning_ovr.gif"; //$NON-NLS-1$
051:
052: /** <code>CHANGED_OVR</code> indicates layer has been changed, and a commit is needed */
053: public final static String CHANGED_OVR = Icons.OVERLAY
054: + "changed_ovr.gif"; //$NON-NLS-1$
055:
056: /** <code>WRITE_OVR</code> indicates layer is editable */
057: public final static String WRITE_OVR = Icons.OVERLAY
058: + "write_ovr.gif"; //$NON-NLS-1$
059:
060: /** <code>ERROR_OVR</code> indicates renderer was unable to function, check log */
061: public final static String ERROR_OVR = Icons.OVERLAY
062: + "error_ovr.gif"; //$NON-NLS-1$
063:
064: /** <code>HUH_OVR</code> indicates data could not be located for layer */
065: public final static String HUH_OVR = Icons.OVERLAY + "huh_ovr.gif"; //$NON-NLS-1$
066:
067: /** <code>CONFIG_OVR</code> indicates service providing data is not configured properly */
068: public final static String UNCONFIGURED_OVR = Icons.OVERLAY
069: + "unconfigured_ovr.gif"; //$NON-NLS-1$
070:
071: /**
072: * <code>WAIT_OVR</code> rendering process has started (requests have been made), please wait
073: * ...
074: */
075: public final static String WAIT_OVR = Icons.OVERLAY
076: + "wait_ovr.gif"; //$NON-NLS-1$
077:
078: /** <code>CLOCK0_OVR</code> rendering process is now updaing the screen ... */
079: public final static String CLOCK0_OVR = Icons.OVERLAY
080: + "clock0_ovr.gif"; //$NON-NLS-1$
081: /** <code>CLOCK1_OVR</code> rendering process is now updaing the screen ... */
082: public final static String CLOCK1_OVR = Icons.OVERLAY
083: + "clock1_ovr.gif"; //$NON-NLS-1$
084: /** <code>CLOCK2_OVR</code> rendering process is now updaing the screen ... */
085: public final static String CLOCK2_OVR = Icons.OVERLAY
086: + "clock2_ovr.gif"; //$NON-NLS-1$
087: /** <code>CLOCK3_OVR</code> rendering process is now updaing the screen ... */
088: public final static String CLOCK3_OVR = Icons.OVERLAY
089: + "clock3_ovr.gif"; //$NON-NLS-1$
090: /** <code>CLOCK4_OVR</code> rendering process is now updaing the screen ... */
091: public final static String CLOCK4_OVR = Icons.OVERLAY
092: + "clock4_ovr.gif"; //$NON-NLS-1$
093: /** <code>CLOCK5_OVR</code> rendering process is now updaing the screen ... */
094: public final static String CLOCK5_OVR = Icons.OVERLAY
095: + "clock5_ovr.gif"; //$NON-NLS-1$
096: /** <code>CLOCK6_OVR</code> rendering process is now updaing the screen ... */
097: public final static String CLOCK6_OVR = Icons.OVERLAY
098: + "clock6_ovr.gif"; //$NON-NLS-1$
099: /** <code>CLOCK7_OVR</code> rendering process is now updaing the screen ... */
100: public final static String CLOCK7_OVR = Icons.OVERLAY
101: + "clock7_ovr.gif"; //$NON-NLS-1$
102:
103: /** <code>SELECT_UNDR</code> underlay used to indicate something is selectable... */
104: public final static String SELECT_UDR = Icons.OVERLAY
105: + "select_udr.gif"; //$NON-NLS-1$
106:
107: // WIZBAN
108: //
109: /** New Wizard banner */
110: public final static String NEW_WIZBAN = Icons.WIZBAN
111: + "new_wiz.gif"; //$NON-NLS-1$
112: /** New folder wizard banner */
113: public final static String NEWFOLDER_WIZBAN = Icons.WIZBAN
114: + "newfolder_wiz.gif"; //$NON-NLS-1$
115: /** New Layer banner */
116: public final static String NEWLAYER_WIZBAN = Icons.WIZBAN
117: + "newlayer_wiz.gif"; //$NON-NLS-1$
118: /** New Map banner */
119: public final static String NEWMAP_WIZBAN = Icons.WIZBAN
120: + "newmap_wiz.gif"; //$NON-NLS-1$
121: /** New Page banner */
122: public final static String NEWPAGE_WIZBAN = Icons.WIZBAN
123: + "newpage_wiz.gif"; //$NON-NLS-1$
124: /** New Project banner */
125: public final static String NEWPROJECT_WIZBAN = Icons.WIZBAN
126: + "newprj_wiz.gif"; //$NON-NLS-1$
127: /** New Template banner */
128: public final static String NEWTEMPLATE_WIZBAN = Icons.WIZBAN
129: + "newtemplate_wiz.gif"; //$NON-NLS-1$
130: /** Choose Layer banner */
131: public final static String CHOOSE_LAYER_WIZBAN = Icons.WIZBAN
132: + "chooselayer_wiz.gif"; //$NON-NLS-1$
133: public static final String PRIORITY_CRITICAL = Icons.MISC
134: + "priority_critical_obj.gif"; //$NON-NLS-1$
135: public static final String PRIORITY_HIGH = Icons.MISC
136: + "priority_error_obj.gif"; //$NON-NLS-1$
137: public static final String PRIORITY_WARNING = Icons.MISC
138: + "priority_warning_obj.gif"; //$NON-NLS-1$
139: public static final String PRIORITY_LOW = Icons.MISC
140: + "priority_info_obj.gif"; //$NON-NLS-1$
141: public static final String PRIORITY_TRIVIAL = Icons.MISC
142: + "priority_minor_obj.gif"; //$NON-NLS-1$
143:
144: public static final String RESOLUTION_RESOLVED = Icons.MISC
145: + "resolved.png"; //$NON-NLS-1$
146: public static final String RESOLUTION_UNKNOWN = Icons.MISC
147: + "unknown.png"; //$NON-NLS-1$
148: public static final String RESOLUTION_UNRESOLVED = Icons.MISC
149: + "unresolved.png"; //$NON-NLS-1$
150: public static final String RESOLUTION_VIEWED = Icons.MISC
151: + "viewed.png"; //$NON-NLS-1$
152:
153: public static final String GOTO_ISSUE = Icons.ELOCALTOOL
154: + "goto_issue.gif"; //$NON-NLS-1$
155: public static final String DELETE = Icons.ETOOL + "delete.gif"; //$NON-NLS-1$
156: public static final String DELETE_GROUP = Icons.ETOOL
157: + "delete_group.gif"; //$NON-NLS-1$
158: public static final String LINKED_ENABLED_CO = Icons.ELOCALTOOL
159: + "link_co.gif"; //$NON-NLS-1$
160: public static final String LINKED_DISABLED_CO = Icons.DLOCALTOOL
161: + "link_co.gif"; //$NON-NLS-1$
162: }
|