]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/element/handler/impl/FixedSize.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / element / handler / impl / FixedSize.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.g2d.element.handler.impl;\r
13 \r
14 import java.awt.geom.Rectangle2D;\r
15 \r
16 import org.simantics.g2d.element.IElement;\r
17 import org.simantics.g2d.element.handler.InternalSize;\r
18 \r
19 /**\r
20  * Handler for elements with fixed internal size (eg vector symbols). \r
21  * \r
22  * @author Toni Kalajainen\r
23  */\r
24 public class FixedSize implements InternalSize {\r
25 \r
26     private static final long serialVersionUID = -3597595326131594492L;\r
27 \r
28     public static InternalSize of(double width, double height)\r
29     {\r
30         return new FixedSize(0, 0, width, height);\r
31     }\r
32 \r
33     public static InternalSize of(double minX, double minY, double width, double height)\r
34     {\r
35         return new FixedSize(minX, minY, width, height);\r
36     }\r
37 \r
38     public static InternalSize of(Rectangle2D bounds)\r
39     {\r
40         return new FixedSize(bounds.getMinX(), bounds.getMinY(), bounds.getWidth(), bounds.getHeight());\r
41     }\r
42 \r
43     final Double aspectRatio;\r
44     Rectangle2D bounds;\r
45 \r
46     FixedSize(double minX, double minY, double width, double height)\r
47     {\r
48         this.aspectRatio = width / height;\r
49         bounds = new Rectangle2D.Double(minX, minY, width, height);\r
50     }\r
51 \r
52     @Override\r
53     public Rectangle2D getBounds(IElement e, Rectangle2D s) {\r
54         if (s==null) s = new Rectangle2D.Double();\r
55         s.setFrame(bounds);             \r
56         return s;\r
57     }\r
58 \r
59 \r
60 }\r