]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/element/handler/Scale.java
Sync git svn branch with SVN repository r33324.
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / element / handler / Scale.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;\r
13 \r
14 import java.awt.geom.Point2D;\r
15 \r
16 import org.simantics.g2d.element.IElement;\r
17 import org.simantics.g2d.element.ElementClass.Single;\r
18 import org.simantics.g2d.element.handler.impl.DefaultTransform;\r
19 import org.simantics.g2d.element.handler.impl.Scaleable;\r
20 \r
21 /**\r
22  * Interface that tags that the element is scalable. Scaling modifies the \r
23  * transform of the element (on canvas), where as resizeing modifies the internal\r
24  * size of the element.\r
25  * \r
26  * @see DefaultTransform default impl\r
27  * @see Scaleable default impl\r
28  * @author Toni Kalajainen\r
29  */\r
30 @Single\r
31 public interface Scale extends ElementHandler {\r
32 \r
33         /**\r
34          * Get scale of the element\r
35          * @param e\r
36          * @return\r
37          */\r
38         Point2D getScale(IElement e);\r
39         \r
40         /**\r
41          * Set scale of the element\r
42          * @param e\r
43          * @param newScale\r
44          */\r
45         void setScale(IElement e, Point2D newScale);\r
46         \r
47         /**\r
48          * Returns fixed width/height ratio of dimensions if there is one\r
49          *  \r
50          * @return aspect ratio or null \r
51          */\r
52         Double getFixedAspectRatio(IElement e);\r
53         \r
54         /**\r
55          * Return minimum scale if there is one \r
56          * @return minimum scale or null\r
57          */\r
58         Point2D getMinimumScale(IElement e);\r
59         \r
60         /**\r
61          * return maximum scale if one exists\r
62          * @return max scale or null\r
63          */\r
64         Point2D getMaximumScale(IElement e);\r
65         \r
66 }