annotate java/src/uk/ac/qmul/eecs/ccmi/simpletemplate/CircleNode.java @ 8:ea7885bd9bff tip

fixed bug : render solid line as dotted/dashed when moving the stylus from dotted/dashed to solid
author ccmi-guest
date Thu, 03 Jul 2014 16:12:20 +0100
parents 9418ab7b7f3f
children
rev   line source
fiore@0 1 /*
fiore@0 2 CCmI Editor - A Collaborative Cross-Modal Diagram Editing Tool
fiore@0 3
fiore@0 4 Copyright (C) 2011 Queen Mary University of London (http://ccmi.eecs.qmul.ac.uk/)
fiore@0 5
fiore@0 6 This program is free software: you can redistribute it and/or modify
fiore@0 7 it under the terms of the GNU General Public License as published by
fiore@0 8 the Free Software Foundation, either version 3 of the License, or
fiore@0 9 (at your option) any later version.
fiore@0 10
fiore@0 11 This program is distributed in the hope that it will be useful,
fiore@0 12 but WITHOUT ANY WARRANTY; without even the implied warranty of
fiore@0 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
fiore@0 14 GNU General Public License for more details.
fiore@0 15
fiore@0 16 You should have received a copy of the GNU General Public License
fiore@0 17 along with this program. If not, see <http://www.gnu.org/licenses/>.
fiore@0 18 */
fiore@0 19
fiore@0 20 package uk.ac.qmul.eecs.ccmi.simpletemplate;
fiore@0 21
fiore@0 22 import java.awt.Shape;
fiore@0 23 import java.awt.geom.Ellipse2D;
fiore@0 24 import java.awt.geom.Point2D;
fiore@0 25 import java.awt.geom.Rectangle2D;
fiore@0 26 import java.io.IOException;
fiore@0 27 import java.io.InputStream;
fiore@0 28 import java.util.List;
fiore@0 29
fiore@0 30 import org.w3c.dom.Document;
fiore@0 31 import org.w3c.dom.Element;
fiore@0 32
fiore@0 33 import uk.ac.qmul.eecs.ccmi.diagrammodel.NodeProperties;
fiore@0 34 import uk.ac.qmul.eecs.ccmi.sound.SoundFactory;
fiore@0 35
fiore@0 36 /**
fiore@0 37 *
fiore@0 38 * A cricle shaped diagram node.
fiore@0 39 *
fiore@0 40 */
fiore@0 41 @SuppressWarnings("serial")
fiore@0 42 public class CircleNode extends EllipticalNode {
fiore@0 43
fiore@0 44 public CircleNode(String typeName, NodeProperties properties) {
fiore@0 45 super(typeName, properties);
fiore@0 46 dataDisplayBounds = (Rectangle2D.Double)getMinBounds();
fiore@0 47 cShape = new Ellipse2D.Double();
fiore@0 48 cShape.setFrame(dataDisplayBounds);
fiore@0 49 }
fiore@0 50
fiore@0 51 @Override
fiore@0 52 public Rectangle2D getMinBounds(){
fiore@0 53 Rectangle2D r = super.getMinBounds();
fiore@0 54 r.setFrame(r.getX(), r.getY(), r.getHeight(), r.getHeight());
fiore@0 55 return (Rectangle2D)r;
fiore@0 56 }
fiore@0 57
fiore@0 58 @Override
fiore@0 59 public Rectangle2D getBounds(){
fiore@0 60 return cShape.getBounds2D();
fiore@0 61 }
fiore@0 62
fiore@0 63 @Override
fiore@0 64 public Shape getShape(){
fiore@0 65 return cShape;
fiore@0 66 }
fiore@0 67
fiore@0 68 @Override
fiore@0 69 public InputStream getSound(){
fiore@0 70 return sound;
fiore@0 71 }
fiore@0 72
fiore@0 73 @Override
fiore@0 74 protected void translateImplementation(Point2D p, double dx, double dy){
fiore@0 75 /* if we clicked on a property node, just move that one */
fiore@0 76 for(List<PropertyNode> pnList : propertyNodesMap.values())
fiore@0 77 for(PropertyNode pn : pnList)
fiore@0 78 if(pn.contains(p)){
fiore@0 79 pn.translate(dx, dy);
fiore@0 80 return;
fiore@0 81 }
fiore@0 82 cShape.setFrame(cShape.getX() + dx,
fiore@0 83 cShape.getY() + dy,
fiore@0 84 cShape.getWidth(),
fiore@0 85 cShape.getHeight());
fiore@0 86 super.translateImplementation(p,dx, dy);
fiore@0 87 }
fiore@0 88
fiore@0 89 @Override
fiore@0 90 protected void reshapeInnerProperties(List<String> insidePropertyTypes){
fiore@0 91 super.reshapeInnerProperties(insidePropertyTypes);
fiore@0 92 double diffwh = dataDisplayBounds.getWidth() - dataDisplayBounds.getHeight();
fiore@0 93 Rectangle2D.Double r = new Rectangle2D.Double();
fiore@0 94 if(diffwh > 0){
fiore@0 95 r.setFrame(dataDisplayBounds.getX(),dataDisplayBounds.getY()-diffwh/2,dataDisplayBounds.getWidth(),dataDisplayBounds.getWidth());
fiore@0 96 } else if(diffwh < 0){
fiore@0 97 r.setFrame(dataDisplayBounds.getX()+diffwh/2,dataDisplayBounds.getY(),dataDisplayBounds.getHeight(),dataDisplayBounds.getHeight());
fiore@0 98 }else{
fiore@0 99 r.setFrame(dataDisplayBounds.getX(),dataDisplayBounds.getY(),dataDisplayBounds.getHeight(),dataDisplayBounds.getHeight());
fiore@0 100 }
fiore@0 101 cShape.setFrame(super.anyInsideProperties() ? getOutBounds(r) : r);
fiore@0 102 }
fiore@0 103
fiore@0 104 @Override
fiore@0 105 public void decode(Document doc, Element nodeTag) throws IOException{
fiore@0 106 super.decode(doc, nodeTag);
fiore@0 107 double diffwh = dataDisplayBounds.getWidth() - dataDisplayBounds.getHeight();
fiore@0 108 Rectangle2D.Double r = new Rectangle2D.Double();
fiore@0 109 if(diffwh > 0){
fiore@0 110 r.setFrame(dataDisplayBounds.getX(),dataDisplayBounds.getY()-diffwh/2,dataDisplayBounds.getWidth(),dataDisplayBounds.getWidth());
fiore@0 111 } else if(diffwh < 0){
fiore@0 112 r.setFrame(dataDisplayBounds.getX()+diffwh/2,dataDisplayBounds.getY(),dataDisplayBounds.getHeight(),dataDisplayBounds.getHeight());
fiore@0 113 }else{
fiore@0 114 r.setFrame(dataDisplayBounds.getX(),dataDisplayBounds.getY(),dataDisplayBounds.getHeight(),dataDisplayBounds.getHeight());
fiore@0 115 }
fiore@0 116 cShape.setFrame(super.anyInsideProperties() ? getOutBounds(r) : r);
fiore@0 117
fiore@0 118 }
fiore@0 119
fiore@0 120 @Override
fiore@0 121 public ShapeType getShapeType(){
fiore@0 122 return ShapeType.Circle;
fiore@0 123 }
fiore@0 124
fiore@0 125 @Override
fiore@0 126 public Object clone(){
fiore@0 127 CircleNode n = (CircleNode)super.clone();
fiore@0 128 n.cShape = (Ellipse2D.Double)cShape.clone();
fiore@0 129 return n;
fiore@0 130 }
fiore@0 131
fiore@0 132 private Ellipse2D.Double cShape;
fiore@0 133 private static InputStream sound;
fiore@0 134 static{
fiore@0 135 sound = CircleNode.class.getResourceAsStream("audio/Circle.mp3");
fiore@0 136 SoundFactory.getInstance().loadSound(sound);
fiore@0 137 }
fiore@0 138 }