package es.eucm.ead.editor.view.generics; /** * eAdventure (formerly <e-Adventure> and <e-Game>) is a research project of the * <e-UCM> research group. * * Copyright 2005-2010 <e-UCM> research group. * * You can access a list of all the contributors to eAdventure at: * http://e-adventure.e-ucm.es/contributors * * <e-UCM> is a research group of the Department of Software Engineering * and Artificial Intelligence at the Complutense University of Madrid * (School of Computer Science). * * C Profesor Jose Garcia Santesmases sn, * 28040 Madrid (Madrid), Spain. * * For more info please visit: <http://e-adventure.e-ucm.es> or * <http://www.e-ucm.es> * * **************************************************************************** * * This file is part of eAdventure, version 2.0 * * eAdventure is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * eAdventure is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with eAdventure. If not, see <http://www.gnu.org/licenses/>. */ import es.eucm.ead.model.params.fills.ColorFill; import es.eucm.ead.model.params.fills.LinearGradientFill; import es.eucm.ead.model.params.paint.EAdFill; import es.eucm.ead.editor.model.nodes.DependencyNode; import es.eucm.ead.editor.model.nodes.EngineNode; import es.eucm.ead.editor.view.generic.ColorOption; import es.eucm.ead.editor.view.generic.OptionPanel; import es.eucm.ead.editor.view.generic.PanelImpl; import es.eucm.ead.editor.view.generic.accessors.ConvertingAccessor; import es.eucm.ead.editor.view.generic.accessors.IntrospectingAccessor; import es.eucm.ead.editor.util.Log4jConfig; import java.awt.*; public class ColorOptionTest extends AbstractOptionTest { public ColorOptionTest() { model = new ExampleClass(); init(); DependencyNode node1 = new EngineNode<String>(1, "test1"); OptionPanel p1 = new PanelImpl("Test", OptionPanel.LayoutPolicy.VerticalBlocks, 4); p1.add(new ColorOption("name1", "toolTip1", model, "a", node1)); p1.add(new ColorOption("name2", "toolTip1", model, "b", node1)); p1.add(new ColorOption("name3", "toolTip1", model, "c", node1)); OptionPanel p2 = new PanelImpl("Test", OptionPanel.LayoutPolicy.VerticalBlocks, 4); p2.add(new ColorOption("name1", "toolTip1", model, "a", node1)); p2.add(new ColorOption("name2", "toolTip1", model, "b", node1)); p2.add(new ColorOption("name3", "toolTip1", model, "c", node1)); OptionPanel pX = new PanelImpl("pX", OptionPanel.LayoutPolicy.VerticalBlocks, 4); pX.add(new ColorOption("name4", "toolTip4", new ColorToFillConverter( model, "simpleFill"), node1)); pX.add(new ColorOption("name4", "toolTip4", new ColorToFillConverter( model, "complexFill"), node1)); OptionPanel p3 = new PanelImpl("Test0", OptionPanel.LayoutPolicy.VerticalEquallySpaced, 4); p3.add(p1); p3.add(p2); p3.add(pX); controller.getModel().addModelListener(p3); childPanel.add(p3.getComponent(commandManager)); } private static class ColorToFillConverter extends ConvertingAccessor<Color, EAdFill> { private ColorToFillConverter(Object element, String fieldName) { super(Color.class, new IntrospectingAccessor<EAdFill>(element, fieldName)); } @Override public Color innerToOuter(EAdFill b) { if (b instanceof ColorFill) { ColorFill f = (ColorFill) b; return new Color(f.getRed(), f.getGreen(), f.getAlpha()); } else if (b instanceof LinearGradientFill) { // warn user right about here ColorFill f = ((LinearGradientFill) b).getColor1(); return new Color(f.getRed(), f.getGreen(), f.getAlpha()); } else { throw new IllegalArgumentException(); } } @Override public EAdFill outerToInner(Color a) { return new ColorFill(a.getRed(), a.getGreen(), a.getBlue()); } } public static class ExampleClass { public EAdFill getSimpleFill() { return simpleFill; } public void setSimpleFill(EAdFill simpleFill) { this.simpleFill = simpleFill; } public EAdFill getComplexFill() { return complexFill; } public void setComplexFill(EAdFill complexFill) { this.complexFill = complexFill; } public EAdFill simpleFill = new ColorFill(100, 20, 30); public EAdFill complexFill = new LinearGradientFill(ColorFill.RED, ColorFill.BLUE, 10, 20); public Color a = Color.red, b = Color.blue, c = Color.green; public Color getA() { return a; } public void setA(Color a) { this.a = a; } public Color getB() { return b; } public void setB(Color b) { this.b = b; } public Color getC() { return c; } public void setC(Color c) { this.c = c; } @Override public String toString() { return "a: " + a + "; " + "b: " + b + "; " + "c: " + c; } } public static void main(String[] args) { Log4jConfig.configForConsole(Log4jConfig.Slf4jLevel.Debug, new Object[] {}); AbstractOptionTest aot = new ColorOptionTest(); aot.setVisible(true); } }