]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/element/handler/TerminalLayout.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / element / handler / TerminalLayout.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.Shape;
15 import java.awt.geom.AffineTransform;
16
17 import org.simantics.g2d.diagram.handler.Topology.Terminal;
18 import org.simantics.g2d.element.IElement;
19 import org.simantics.g2d.element.handler.impl.StaticTerminals;
20 import org.simantics.g2d.utils.geom.DirectionSet;
21
22 /**
23  * 
24  * @See {@link TerminalTopology} Enumeration of terminals
25  * @See {@link StaticTerminals} Compile handler for elements with static terminals (almost all)
26  * @author Toni Kalajainen
27  */
28 public interface TerminalLayout extends ElementHandler {
29         
30         /**
31          * Get a copy of terminal transformation (on element)
32          * @param node
33          * @param t
34          * @return position of a terminal or null
35          */
36         AffineTransform getTerminalPosition(IElement node, Terminal t);
37         
38         /**
39          * Get Terminal direction  
40          * @param node node
41          * @param t terminal
42          * @param directions collection where directions are added (compass direction, 0 + n*360=north, n e N)
43          * @return true if this handler could tell the terminal direction 
44          */
45         boolean getTerminalDirection(IElement node, Terminal t, DirectionSet directions);
46         
47         /**
48          * Get shape of a terminal.
49          * If terminal has a shape its selection is based on it and is zoom-level dependent.
50          * If a terminal has no shape it is a point and zoom-level independent.
51          * 
52          * Only the area that fits into the element will be picked. 
53          * 
54          * @return shape shape or null
55          */
56         Shape getTerminalShape(IElement node, Terminal t);
57         
58 }