view src/econnect/wp3_3/client/core/ApplicationConstants.java @ 80:1dc51e3b2848 trimmed_data

Add (ugly) images for export and switch table view
author Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
date Thu, 17 Jan 2013 17:58:15 +0100
parents 175c1eecaf84
children
line wrap: on
line source

package econnect.wp3_3.client.core;

import com.google.gwt.i18n.client.Constants;
import com.google.gwt.resources.client.ImageResource;

/**
 * Constants class that gives the paths for the image sources of Image objects
 */
public interface ApplicationConstants extends Constants {

	/**
	 * @return the country selection image, if not clicked
	 */
	String countryImage();
	
	/**
	 * @return the country selection image, if clicked
	 */
	String countryClickImage();
	
	/**
	 * @return the drag polygon image, if not clicked
	 */
	String dragImage();
	
	/**
	 * @return the drag polygon image, if clicked
	 */
	String dragClickImage();

	/**
	 * @return the add element image, if not clicked
	 */
	String addImage();
	
	/**
	 * @return the add element image, if clicked
	 */
	String addClickImage();

	/**
	 * @return the navigation control image, if not clicked
	 */
	String navigateImage();
	
	/**
	 * @return the navigation control image, if clicked
	 */
	String navigateClickImage();

	/**
	 * @return the polygon selection image, if not clicked
	 */
	String polygonImage();
	
	/**
	 * @return the polygon selection image, if clicked
	 */
	String polygonClickImage();
	
	/**
	 * @return the circle selection image, if not clicked
	 */
	String circleImage();
	
	/**
	 * @return the circle selection image, if clicked
	 */
	String circleClickImage();

	/**
	 * @return the connections image, if not clicked
	 */
	String connectionsImage();

	/**
	 * @return the connections image, if clicked
	 */
	String connectionsClickImage();

	/**
	 * @return the map selection image
	 */
	String mapsImage();

	/**
	 * @return the map selection image, if clicked
	 */
	String mapsClickImage();

	/**
	 * @return the zoom-in image
	 */
	String zoomInImage();

	/**
	 * @return the zoom-out image
	 */
	String zoomOutImage();

	/**
	 * @return image for disabled backward history function
	 */
	String backwardDisabledImage();

	/**
	 * @return image for disabled forward history function
	 */
	String forwardDisabledImage();

	/**
	 * @return image for map toolbar, if it is enabled
	 */
	String globeImage();

	/**
	 * @return image for timeplot toolbar, if it is disabled
	 */
	String timeDisabledImage();

	/**
	 * @return image for map toolbar, if it is disabled
	 */
	String globeDisabledImage();

	/**
	 * @return image for timeplot toolbar, if it is enabled
	 */
	String timeImage();

	/**
	 * @return image for enabled forward history function
	 */
	String forwardImage();

	/**
	 * @return image for enabled backward history function
	 */
	String backwardImage();

	/**
	 * @return image for enabled play button
	 */
	String playEnabled();
	
	/**
	 * @return image for disabled play button
	 */
	String playDisabled();
	
	/**
	 * @return image for enabled pause button
	 */
	String pauseEnabled();
	
	/**
	 * @return image for disabled pause button
	 */
	String pauseDisabled();

	/**
	 * @return image for delete dataset
	 */
	String deleteImage();

	/**
	 * @return image for the e4D logo
	 */
	String logoImage();

	/**
	 * @return image for the history bar
	 */
	String  historyImage();

	/**
	 * @return hover image for the history bar
	 */
	String  historyOverImage();

	/**
	 * @return image for the open button
	 */
	String openImage();

	/**
	 * @return image for the disabled open button
	 */
	String openDisabledImage();

	/**
	 * @return image for refine button
	 */
	String refineImage();

	/**
	 * @return image for cancel button
	 */
	String cancelImage();

	/**
	 * @return image for link creation
	 */
	String linkImage();

	/**
	 * @return image for export button
	 */
	String exportImage();

	/**
	 * @return image for export button
	 */
	String switchView();
}