01: /*
02: * uDig - User Friendly Desktop Internet GIS client
03: * http://udig.refractions.net
04: * (C) 2004, Refractions Research Inc.
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: */
17: package net.refractions.udig.internal.ui;
18:
19: /**
20: * Image constants for use with Images class.
21: *
22: * @author jgarnett
23: */
24: public interface ImageConstants {
25:
26: /**
27: * Enabled toolbar icons
28: */
29: public final static String PATH_ETOOL = "etool16/"; //$NON-NLS-1$
30:
31: /** <code>NEW_WIZ</code> field */
32: public final static String NEW_WIZ = PATH_ETOOL + "new_wiz.gif"; //$NON-NLS-1$
33:
34: /**
35: * Disabled toolbar icons.
36: */
37: //public final static String PATH_DTOOL = ICONS_PATH+"dtool16/"; //$NON-NLS-1$
38: /**
39: * Enabled local toolbar icons.
40: */
41: public final static String PATH_ELOCALTOOL = "elcl16/"; //$NON-NLS-1$
42: /** <code>FIRST_CO</code> field */
43: public final static String FIRST_CO = PATH_ETOOL + "next_co.gif"; //$NON-NLS-1$
44: /** <code>PREV_CO</code> field */
45: public final static String PREV_CO = PATH_ETOOL + "prev_co.gif"; //$NON-NLS-1$
46: /** <code>NEXT_CO</code> field */
47: public final static String NEXT_CO = PATH_ETOOL + "next_co.gif"; //$NON-NLS-1$
48: /** <code>LAST_CO</code> field */
49: public final static String LAST_CO = PATH_ETOOL + "last_co.gif"; //$NON-NLS-1$
50:
51: /**
52: * Disabled local toolbar icons
53: */
54: public final static String PATH_DLOCALTOOL = "dlcl16/"; //$NON-NLS-1$
55:
56: /**
57: * View icons
58: */
59: public final static String PATH_EVIEW = "eview16/"; //$NON-NLS-1$
60:
61: /**
62: * Product images
63: */
64: public final static String PATH_PROD = "prod/"; //$NON-NLS-1$
65:
66: /**
67: * Model object icons
68: */
69: public final static String PATH_OBJECT = "obj16/"; //$NON-NLS-1$
70:
71: /**
72: * Pointer icons
73: */
74: public final static String PATH_POINTER = "pointer/"; //$NON-NLS-1$
75:
76: /**
77: * Wizard banners
78: */
79: public final static String PATH_WIZBAN = "wizban/"; //$NON-NLS-1$
80:
81: /** <code>LOG_WIZ</code> field */
82: public final static String LOG_WIZ = PATH_WIZBAN + "log_wiz.png"; //$NON-NLS-1$
83:
84: /**
85: * Misc icons
86: */
87: public final static String PATH_MISC = "misc/"; //$NON-NLS-1$
88:
89: /**
90: * icons Overlays
91: */
92: public final static String PATH_OVERLAY = "ovr16/"; //$NON-NLS-1$
93:
94: }
|