/******************************************************************************* * Copyright (c) 2000, 2005 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * Exadel, Inc. * Red Hat, Inc. *******************************************************************************/ package org.jboss.tools.seam.ui.pages.editor.figures.xpl; import org.eclipse.draw2d.*; import org.eclipse.draw2d.geometry.*; public class FixedConnectionAnchor extends AbstractConnectionAnchor { public boolean leftToRight = true; public int offsetH; public int offsetV; public boolean topDown = true; public FixedConnectionAnchor(IFigure owner) { super(owner); } /** * @see org.eclipse.draw2d.AbstractConnectionAnchor#ancestorMoved(IFigure) */ public void ancestorMoved(IFigure figure) { if (figure instanceof ScalableFreeformLayeredPane) return; super.ancestorMoved(figure); } public Point getLocation(Point reference) { Rectangle r = getOwner().getBounds(); int x, y; if (topDown) y = r.y + offsetV; else y = r.bottom() - 1 - offsetV; if (leftToRight) x = r.x + offsetH; else x = r.right() - 1 - offsetH; Point p = new PrecisionPoint(x, y); getOwner().translateToAbsolute(p); return p; } public Point getReferencePoint() { return getLocation(null); } }