01: package net.refractions.udig.style.ui;
02:
03: public interface ImageConstants {
04:
05: /**
06: * Enabled local toolbar icons.
07: */
08: public final static String PATH_ELOCALTOOL = "elcl16/"; //$NON-NLS-1$
09:
10: /** apply style icon */
11: public final static String APPLY_STYLE = PATH_ELOCALTOOL
12: + "apply_co.gif"; //$NON-NLS-1$
13:
14: /** cancel style icon */
15: public final static String CANCEL_STYLE = PATH_ELOCALTOOL
16: + "reset_co.gif"; //$NON-NLS-1$
17:
18: /**
19: * Disabled local toolbar icons
20: */
21: public final static String PATH_DLOCALTOOL = "dlcl16/"; //$NON-NLS-1$
22:
23: }
|