// $Id: FigObject.java 16484 2009-01-02 20:22:16Z tfmorris $ // Copyright (c) 1996-2009 The Regents of the University of California. All // Rights Reserved. Permission to use, copy, modify, and distribute this // software and its documentation without fee, and without a written // agreement is hereby granted, provided that the above copyright notice // and this paragraph appear in all copies. This software program and // documentation are copyrighted by The Regents of the University of // California. The software program and documentation are supplied "AS // IS", without any accompanying services from The Regents. The Regents // does not warrant that the operation of the program will be // uninterrupted or error-free. The end-user understands that the program // was developed for research purposes and is advised not to rely // exclusively on the program for any reason. IN NO EVENT SHALL THE // UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, // SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, // ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF // THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF // SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE // PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF // CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, // UPDATES, ENHANCEMENTS, OR MODIFICATIONS. package org.argouml.uml.diagram.deployment.ui; import java.awt.Color; import java.awt.Dimension; import java.awt.Rectangle; import java.util.Iterator; import org.argouml.model.Model; import org.argouml.notation.NotationProviderFactory2; import org.argouml.uml.diagram.DiagramSettings; import org.argouml.uml.diagram.ui.FigNodeModelElement; import org.tigris.gef.base.Selection; import org.tigris.gef.graph.GraphModel; import org.tigris.gef.presentation.Fig; import org.tigris.gef.presentation.FigRect; import org.tigris.gef.presentation.FigText; /** * Class to display graphics for a UML Object in a diagram. * * @author 5eichler */ public class FigObject extends FigNodeModelElement { private FigRect cover; /** * Main constructor. * @deprecated by for 0.27.4 by tfmorris. Use * {@link #FigObject(Object, Rectangle, DiagramSettings)}. */ @SuppressWarnings("deprecation") @Deprecated public FigObject() { super(); initFigs(); } private void initFigs() { setBigPort(new FigRect(X0, Y0, 90, 50, DEBUG_COLOR, DEBUG_COLOR)); cover = new FigRect(X0, Y0, 90, 50, LINE_COLOR, FILL_COLOR); getNameFig().setLineWidth(0); getNameFig().setFilled(false); getNameFig().setUnderline(true); Dimension nameMin = getNameFig().getMinimumSize(); getNameFig().setBounds(X0, Y0, nameMin.width + 20, nameMin.height); // add Figs to the FigNode in back-to-front order addFig(getBigPort()); addFig(cover); addFig(getNameFig()); Rectangle r = getBounds(); setBounds(r.x, r.y, nameMin.width, nameMin.height); } /** * Constructor that hooks the Fig to an existing UML element. * * @param gm ignored * @param node the UML element * @deprecated by for 0.27.4 by tfmorris. Use * {@link #FigObject(Object, Rectangle, DiagramSettings)}. */ @SuppressWarnings("deprecation") @Deprecated public FigObject(@SuppressWarnings("unused") GraphModel gm, Object node) { this(); setOwner(node); } /** * Construct a new FigObject. * * @param owner owning UML element * @param bounds position and size * @param settings render settings */ public FigObject(Object owner, Rectangle bounds, DiagramSettings settings) { super(owner, bounds, settings); initFigs(); } /* * @see org.argouml.uml.diagram.ui.FigNodeModelElement#getNotationProviderType() */ @Override protected int getNotationProviderType() { return NotationProviderFactory2.TYPE_OBJECT; } /* * @see java.lang.Object#clone() */ @Override public Object clone() { FigObject figClone = (FigObject) super.clone(); Iterator it = figClone.getFigs().iterator(); figClone.setBigPort((FigRect) it.next()); figClone.cover = (FigRect) it.next(); figClone.setNameFig((FigText) it.next()); return figClone; } /* * @see org.tigris.gef.presentation.Fig#setLineColor(java.awt.Color) */ @Override public void setLineColor(Color col) { cover.setLineColor(col); } /* * @see org.tigris.gef.presentation.Fig#getLineColor() */ @Override public Color getLineColor() { return cover.getLineColor(); } /* * @see org.tigris.gef.presentation.Fig#setFillColor(java.awt.Color) */ @Override public void setFillColor(Color col) { cover.setFillColor(col); } /* * @see org.tigris.gef.presentation.Fig#getFillColor() */ @Override public Color getFillColor() { return cover.getFillColor(); } /* * @see org.tigris.gef.presentation.Fig#setFilled(boolean) */ @Override public void setFilled(boolean f) { cover.setFilled(f); } @Override public boolean isFilled() { return cover.isFilled(); } /* * @see org.tigris.gef.presentation.Fig#setLineWidth(int) */ @Override public void setLineWidth(int w) { cover.setLineWidth(w); } /* * @see org.tigris.gef.presentation.Fig#getLineWidth() */ @Override public int getLineWidth() { return cover.getLineWidth(); } /* * @see org.tigris.gef.presentation.Fig#makeSelection() */ @Override public Selection makeSelection() { return new SelectionObject(this); } /* * @see org.tigris.gef.presentation.Fig#getMinimumSize() */ @Override public Dimension getMinimumSize() { Dimension nameMin = getNameFig().getMinimumSize(); int w = nameMin.width + 10; int h = nameMin.height + 5; w = Math.max(60, w); return new Dimension(w, h); } /* * Override setBounds to keep shapes looking right. * * @see org.tigris.gef.presentation.Fig#setBounds(int, int, int, int) */ @Override protected void setStandardBounds(int x, int y, int w, int h) { if (getNameFig() == null) { return; } Rectangle oldBounds = getBounds(); Dimension nameMin = getNameFig().getMinimumSize(); getBigPort().setBounds(x, y, w, h); cover.setBounds(x, y, w, h); getNameFig().setBounds(x, y, nameMin.width + 10, nameMin.height + 4); //_bigPort.setBounds(x+1, y+1, w-2, h-2); _x = x; _y = y; _w = w; _h = h; firePropChange("bounds", oldBounds, getBounds()); calcBounds(); //_x = x; _y = y; _w = w; _h = h; updateEdges(); } /* * @see org.tigris.gef.presentation.Fig#setEnclosingFig(org.tigris.gef.presentation.Fig) */ @Override public void setEnclosingFig(Fig encloser) { assert Model.getFacade().isAObject(getOwner()); Object owner = getOwner(); if (encloser != null && (Model.getFacade() .isAComponentInstance(encloser.getOwner()))) { Model.getCommonBehaviorHelper() .setComponentInstance(owner, encloser.getOwner()); super.setEnclosingFig(encloser); } else if (Model.getFacade().getComponentInstance(owner) != null) { Model.getCommonBehaviorHelper().setComponentInstance(owner, null); super.setEnclosingFig(null); } if (encloser != null && (Model.getFacade() .isAComponent(encloser.getOwner()))) { moveIntoComponent(encloser); super.setEnclosingFig(encloser); } else if (encloser != null && Model.getFacade().isANode(encloser.getOwner())) { super.setEnclosingFig(encloser); } else if (encloser == null) { super.setEnclosingFig(null); } } }