/* * @(#)AbstractAttributedCompositeFigure.java * * Copyright (c) 1996-2010 The authors and contributors of JHotDraw. * You may not use, copy or modify this file, except in compliance with the * accompanying license terms. */ package org.jhotdraw.draw; import java.awt.*; import java.awt.geom.*; import java.util.*; import java.io.*; import static org.jhotdraw.draw.AttributeKeys.*; import org.jhotdraw.geom.*; import org.jhotdraw.xml.DOMInput; import org.jhotdraw.xml.DOMOutput; /** * This abstract class can be extended to implement a {@link CompositeFigure} * which has its own attribute set. * * @author Werner Randelshofer * @version $Id$ */ public abstract class AbstractAttributedCompositeFigure extends AbstractCompositeFigure { private static final long serialVersionUID = 1L; private HashMap<AttributeKey<?>, Object> attributes = new HashMap<AttributeKey<?>, Object>(); /** * Forbidden attributes can't be put by the put() operation. * They can only be changed by put(). */ private HashSet<AttributeKey<?>> forbiddenAttributes; /** Creates a new instance. */ public AbstractAttributedCompositeFigure() { } public void setAttributeEnabled(AttributeKey<?> key, boolean b) { if (forbiddenAttributes == null) { forbiddenAttributes = new HashSet<AttributeKey<?>>(); } if (b) { forbiddenAttributes.remove(key); } else { forbiddenAttributes.add(key); } } public <T> boolean isAttributeEnabled(AttributeKey<?> key) { return forbiddenAttributes == null || !forbiddenAttributes.contains(key); } @SuppressWarnings("unchecked") public void setAttributes(Map<AttributeKey<?>, Object> map) { for (Map.Entry<AttributeKey<?>, Object> entry : map.entrySet()) { set((AttributeKey<Object>)entry.getKey(), entry.getValue()); } } @Override public Map<AttributeKey<?>, Object> getAttributes() { return (Map<AttributeKey<?>, Object>)new HashMap<AttributeKey<?>, Object>(attributes); } /** * Sets an attribute of the figure. * AttributeKey name and semantics are defined by the class implementing * the figure interface. */ @Override public <T> void set(AttributeKey<T> key, T newValue) { if (forbiddenAttributes == null || !forbiddenAttributes.contains(key)) { @SuppressWarnings("unchecked") T oldValue = (T)attributes.put(key, newValue); setAttributeOnChildren(key, newValue); fireAttributeChanged(key, oldValue, newValue); } } protected <T> void setAttributeOnChildren(AttributeKey<T> key, T newValue) { for (Figure child : getChildren()) { child.set(key, newValue); } } /** * Gets an attribute from the figure. */ @Override public <T> T get(AttributeKey<T> key) { return key.get(attributes); } @Override public Object getAttributesRestoreData() { LinkedList<Object> list = new LinkedList<Object>(); list.add(new HashMap<AttributeKey<?>, Object>(getAttributes())); for (Figure child : getChildren()) { list.add(child.getAttributesRestoreData()); } return list; } @Override @SuppressWarnings("unchecked") public void restoreAttributesTo(Object restoreData) { Iterator<Object> i = ((LinkedList<Object>) restoreData).iterator(); attributes.clear(); setAttributes((Map<AttributeKey<?>, Object>) i.next()); for (Figure child : getChildren()) { child.restoreAttributesTo(i.next()); } } public void drawFigure(Graphics2D g) { drawChildren(g); if (get(FILL_COLOR) != null) { g.setColor(get(FILL_COLOR)); drawFill(g); } if (get(STROKE_COLOR) != null && get(STROKE_WIDTH) >= 0d) { g.setStroke(AttributeKeys.getStroke(this)); g.setColor(get(STROKE_COLOR)); drawStroke(g); } if (get(TEXT_COLOR) != null) { if (get(TEXT_SHADOW_COLOR) != null && get(TEXT_SHADOW_OFFSET) != null) { Dimension2DDouble d = get(TEXT_SHADOW_OFFSET); g.translate(d.width, d.height); g.setColor(get(TEXT_SHADOW_COLOR)); drawText(g); g.translate(-d.width, -d.height); } g.setColor(get(TEXT_COLOR)); drawText(g); } } protected void drawChildren(Graphics2D g) { for (Figure child : getChildren()) { child.draw(g); } } public Stroke getStroke() { return AttributeKeys.getStroke(this); } public double getStrokeMiterLimitFactor() { Number value = (Number) get(AttributeKeys.STROKE_MITER_LIMIT); return (value != null) ? value.doubleValue() : 10f; } public Rectangle2D.Double getFigureDrawBounds() { double width = AttributeKeys.getStrokeTotalWidth(this) / 2d; if (get(STROKE_JOIN) == BasicStroke.JOIN_MITER) { width *= get(STROKE_MITER_LIMIT); } width++; Rectangle2D.Double r = getBounds(); Geom.grow(r, width, width); return r; } /** * This method is called by method draw() to draw the fill * area of the figure. AttributedFigure configures the Graphics2D * object with the FILL_COLOR attribute before calling this method. * If the FILL_COLOR attribute is null, this method is not called. */ protected abstract void drawFill(java.awt.Graphics2D g); /** * This method is called by method draw() to draw the lines of the figure *. AttributedFigure configures the Graphics2D object with * the STROKE_COLOR attribute before calling this method. * If the STROKE_COLOR attribute is null, this method is not called. */ /** * This method is called by method draw() to draw the text of the figure *. AttributedFigure configures the Graphics2D object with * the TEXT_COLOR attribute before calling this method. * If the TEXT_COLOR attribute is null, this method is not called. */ protected abstract void drawStroke(java.awt.Graphics2D g); protected void drawText(java.awt.Graphics2D g) { } @Override public AbstractAttributedCompositeFigure clone() { AbstractAttributedCompositeFigure that = (AbstractAttributedCompositeFigure) super.clone(); that.attributes = new HashMap<AttributeKey<?>, Object>(this.attributes); if (this.forbiddenAttributes != null) { that.forbiddenAttributes = new HashSet<AttributeKey<?>>(this.forbiddenAttributes); } return that; } protected void writeAttributes(DOMOutput out) throws IOException { Figure prototype = (Figure) out.getPrototype(); boolean isElementOpen = false; for (Map.Entry<AttributeKey<?>, Object> entry : attributes.entrySet()) { AttributeKey<?> key = entry.getKey(); if (forbiddenAttributes == null || !forbiddenAttributes.contains(key)) { @SuppressWarnings("unchecked") Object prototypeValue = prototype.get(key); @SuppressWarnings("unchecked") Object attributeValue = get(key); if (prototypeValue != attributeValue || (prototypeValue != null && attributeValue != null && !prototypeValue.equals(attributeValue))) { if (!isElementOpen) { out.openElement("a"); isElementOpen = true; } out.openElement(key.getKey()); out.writeObject(entry.getValue()); out.closeElement(); } } } if (isElementOpen) { out.closeElement(); } } @SuppressWarnings("unchecked") protected void readAttributes(DOMInput in) throws IOException { if (in.getElementCount("a") > 0) { in.openElement("a"); for (int i = 0,n=in.getElementCount(); i < n; i++) { in.openElement(i); String name = in.getTagName(); Object value = in.readObject(); AttributeKey<?> key = getAttributeKey(name); if (key != null && key.isAssignable(value)) { if (forbiddenAttributes == null || !forbiddenAttributes.contains(key)) { set((AttributeKey<Object>) key, value); } } in.closeElement(); } in.closeElement(); } } protected AttributeKey<?> getAttributeKey(String name) { return AttributeKeys.supportedAttributeMap.get(name); } /** * Applies all attributes of this figure to that figure. */ @SuppressWarnings("unchecked") protected void applyAttributesTo(Figure that) { for (Map.Entry<AttributeKey<?>, Object> entry : attributes.entrySet()) { that.set((AttributeKey<Object>)entry.getKey(), entry.getValue()); } } @Override public void write(DOMOutput out) throws IOException { super.write(out); writeAttributes(out); } @Override public void read(DOMInput in) throws IOException { super.read(in); readAttributes(in); } public <T> void removeAttribute(AttributeKey<T> key) { if (hasAttribute(key)) { T oldValue = get(key); attributes.remove(key); fireAttributeChanged(key, oldValue, key.getDefaultValue()); } } public <T> boolean hasAttribute(AttributeKey<T> key) { return attributes.containsKey(key); } }