]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/element/handler/Resize.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / element / handler / Resize.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.g2d.element.handler;
13
14 import java.awt.geom.Rectangle2D;
15
16 import org.simantics.g2d.element.IElement;
17 import org.simantics.g2d.element.ElementClass.Single;
18 import org.simantics.g2d.element.handler.impl.Resizeable;
19
20 /**
21  * This interface is implemented by all elements whose internal size can 
22  * be modified. 
23  * 
24  * @See {@link InternalSize} Handler for acquiring internal size of an element
25  * @See {@link Resizeable} size can be changed by user
26  * @author Toni Kalajainen
27  */
28 @Single
29 public interface Resize extends ElementHandler, InternalSize {
30         
31         /**
32          * Modify the size of 
33          * @param e
34          * @param ctx
35          * @param newSize
36          */
37         void resize(IElement e, Rectangle2D newSize);
38         
39         /**
40          * Returns width/height ratio if dimensions of the element are uniform, and
41          * null if not.
42          *  
43          * @return aspect ratio or null 
44          */
45         Double getFixedAspectRatio(IElement e);
46         
47         /**
48          * Get minimum size if one exists
49          * @param e element
50          * @return the minimum size or null
51          */
52         Rectangle2D getMinimumSize(IElement e);
53         
54         /**
55          * Get the maximum size of the element
56          * @param e element
57          * @return the maximum size or null
58          */
59         Rectangle2D getMaximumSize(IElement e);
60         
61 }