All Downloads are FREE. Search and download functionalities are using the official Maven repository.

echopointng.ColorChooser Maven / Gradle / Ivy

Go to download

Echo2 bundled with Echo2_Extras, Echo2_FileTransfer and echopointing and various improvements/bugfixes

There is a newer version: 2.0.4
Show newest version
package echopointng;

import nextapp.echo2.app.Color;
import nextapp.echo2.app.Extent;
import nextapp.echo2.app.Style;
import nextapp.echo2.app.event.ChangeListener;
import echopointng.model.ColorSelectionModel;
import echopointng.model.ColorSwatchModel;
import echopointng.model.DefaultColorSelectionModel;
import echopointng.model.WebSafeColorSwatchModel;
import echopointng.util.ColorKit;

/**
 * ColorChooser allows the user to select a color from a color swatch model.
 */
public class ColorChooser extends AbleComponent {

	public static final Style DEFAULT_STYLE;

	public static final String PROPERTY_SELECTION_MODEL = "selectionModel";

	public static final String PROPERTY_SELECTION_TEXT = "selectionText";

	public static final String PROPERTY_SWATCH_HEIGHT = "swatchHeight";

	public static final String PROPERTY_SWATCH_MODEL = "swatchModel";

	public static final String PROPERTY_SWATCH_WIDTH = "swatchWidth";

	public static final String PROPERTY_SWATCHES_PER_ROW = "swatchesPerRow";
	static {
		MutableStyleEx style = new MutableStyleEx();

		style.setProperty(PROPERTY_BORDER,
				new BorderEx(ColorKit.clr("#317082")));
		style.setProperty(PROPERTY_INSETS, new nextapp.echo2.app.Insets(
				new ExtentEx(1)));

		style.setProperty(PROPERTY_SELECTION_TEXT, "Selected : ");

		style.setProperty(PROPERTY_SWATCHES_PER_ROW, 17);
		style.setProperty(PROPERTY_SWATCH_HEIGHT, new ExtentEx(10));
		style.setProperty(PROPERTY_SWATCH_WIDTH, new ExtentEx(10));
		style.setProperty(PROPERTY_SWATCH_MODEL,new WebSafeColorSwatchModel());		
		DEFAULT_STYLE = style;
	}

	private ChangeListener internalListener = new ChangeListener() {
		public void stateChanged(nextapp.echo2.app.event.ChangeEvent e) {
			firePropertyChange("selectedColor", null, getSelectedColor());
		};
	};

	/**
	 * Creates a ColorChooser
	 */
	public ColorChooser() {
		setSelectionModel(new DefaultColorSelectionModel());
	}

	/**
	 * A short-cut method for
	 * getSelectionModel().getSelectedColor()
	 */
	public Color getSelectedColor() {
		if (getSelectionModel() != null) {
			return getSelectionModel().getSelectedColor();
		}
		return null;
	}

	public ColorSelectionModel getSelectionModel() {
		return (ColorSelectionModel) getProperty(PROPERTY_SELECTION_MODEL);
	}

	public String getSelectionText() {
		return (String) getProperty(PROPERTY_SELECTION_TEXT);
	}

	/**
	 * @return the number for color swatches that will be displayed per row of
	 *         color data.
	 */
	public int getSwatchesPerRow() {
		return getProperty(PROPERTY_SWATCHES_PER_ROW, 17);
	}

	/**
	 * @return - the height of the color swatches
	 */
	public Extent getSwatchHeight() {
		return (Extent) getProperty(PROPERTY_SWATCH_HEIGHT);
	}

	public ColorSwatchModel getSwatchModel() {
		return (ColorSwatchModel) getProperty(PROPERTY_SWATCH_MODEL);
	}

	/**
	 * @return - the width of the color swatches
	 */
	public Extent getSwatchWidth() {
		return (Extent) getProperty(PROPERTY_SWATCH_WIDTH);
	}

	/**
	 * @see nextapp.echo2.app.Component#processInput(java.lang.String,
	 *      java.lang.Object)
	 */
	public void processInput(String inputName, Object inputValue) {
		super.processInput(inputName, inputValue);
		if ("click".equals(inputName)) {
			setSelectedColor(ColorKit.makeColor((String) inputValue));
		}
	}

	/**
	 * A short-cut method for
	 * getSelectionModel().setSelectedColor()
	 */
	public void setSelectedColor(Color newValue) {
		if (getSelectionModel() != null) {
			getSelectionModel().setSelectedColor(newValue);
		}
	}

	public void setSelectionModel(ColorSelectionModel newValue) {
		ColorSelectionModel oldValue = getSelectionModel();
		if (oldValue != null) {
			oldValue.removeListener(internalListener);
		}
		if (newValue != null) {
			newValue.addListener(internalListener);
		}
		setProperty(PROPERTY_SELECTION_MODEL, newValue);
	}

	public void setSelectionText(String newValue) {
		setProperty(PROPERTY_SELECTION_TEXT, newValue);
	}

	/**
	 * Sets the number for color swatches that will be displayed per row of
	 * color data.
	 * 
	 * @param newValue -
	 *            the number for color swatches that will be displayed per row
	 *            of color data.
	 */
	public void setSwatchesPerRow(int newValue) {
		setProperty(PROPERTY_SWATCHES_PER_ROW, newValue);
	}

	/**
	 * Sets the height of the color swatches
	 * 
	 * @param newValue -
	 *            the height of the color swatches
	 */
	public void setSwatchHeight(Extent newValue) {
		setProperty(PROPERTY_SWATCH_HEIGHT, newValue);
	}

	public void setSwatchModel(ColorSwatchModel newValue) {
		setProperty(PROPERTY_SWATCH_MODEL, newValue);
	}

	/**
	 * Sets the width of the color swatches
	 * 
	 * @param newValue -
	 *            the width of the color swatches
	 */
	public void setSwatchWidth(Extent newValue) {
		setProperty(PROPERTY_SWATCH_WIDTH, newValue);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy