001 /*
002 * This file is part of the Echo Point Project. This project is a
003 * collection of Components that have extended the Echo Web Application
004 * Framework Version 3.
005 *
006 * Version: MPL 1.1
007 *
008 * The contents of this file are subject to the Mozilla Public License Version
009 * 1.1 (the "License"); you may not use this file except in compliance with
010 * the License. You may obtain a copy of the License at
011 * http://www.mozilla.org/MPL/
012 *
013 * Software distributed under the License is distributed on an "AS IS" basis,
014 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
015 * for the specific language governing rights and limitations under the
016 * License.
017 */
018
019 package echopoint.style.echo.extras;
020
021 import nextapp.echo.app.ImageReference;
022 import nextapp.echo.app.ResourceImageReference;
023
024 /**
025 * A utility class used to cache resource images used in styles.
026 *
027 * @author Rakesh Vidyadharan 2009-05-27
028 * @version $Id: ResourceImages.java 255 2009-11-29 12:16:16Z sptrakesh $
029 */
030 public final class ResourceImages
031 {
032 /** The calendar select background image. */
033 public static final ImageReference CalendarSelectBackground =
034 new ResourceImageReference(
035 "resource/images/extras/CalendarSelectGradient.png" );
036
037 /** The calendar select header background image. */
038 public static final ImageReference CalendarSelectHeader =
039 new ResourceImageReference(
040 "resource/images/extras/CalendarHeaderBackground.png" );
041
042 /** The calendar select selected date background image. */
043 public static final ImageReference CalendarSelectSelectedDate =
044 new ResourceImageReference(
045 "resource/images/extras/CalendarSelectSelectedDateFill.png" );
046
047 /** The menu bar pane background image. */
048 public static final ImageReference MenuBarBackground =
049 new ResourceImageReference(
050 "resource/images/extras/PulldownMenuBackground.png" );
051
052 /** The menu bar pane menu background image. */
053 public static final ImageReference MenuBarMenuBackground =
054 new ResourceImageReference(
055 "resource/images/extras/GreyMenuBackground.png" );
056
057 /** The menu bar pane selection background image. */
058 public static final ImageReference MenuBarSelectionBackground =
059 new ResourceImageReference(
060 "resource/images/extras/BeigeLightedBackground.png" );
061
062 /** The background image for drop-down menu components. */
063 public static final ImageReference LightBlueLine =
064 new ResourceImageReference(
065 "resource/images/extras/LightBlueLine.png" );
066
067 /** The background image for selected items in drop-down menu and accordion pane. */
068 public static final ImageReference BlueGrey =
069 new ResourceImageReference(
070 "resource/images/extras/BlueGrey.png" );
071
072 /** The accordion pane tab rollover background image. */
073 public static final ImageReference BlueGreyHighlight =
074 new ResourceImageReference(
075 "resource/images/extras/BlueGreyHighlight.png" );
076
077 private ResourceImages() {}
078 }