blob: 55bf121b77d1b0b0a825de913b83e0fde1827108 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.ui.editparts.util;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.eclipse.bpel.common.ui.decorator.DecorationLayout;
import org.eclipse.draw2d.IFigure;
import org.eclipse.draw2d.MouseEvent;
import org.eclipse.draw2d.MouseMotionListener;
import org.eclipse.draw2d.geometry.Dimension;
public abstract class BPELDecorationLayout extends DecorationLayout {
private List listeners = new ArrayList();
class MouseMotionAdapter implements MouseMotionListener {
int listenerAnchor;
public MouseMotionAdapter(int anchor) {
this.listenerAnchor = anchor;
}
public void mouseDragged(MouseEvent me) {
}
public void mouseEntered(MouseEvent me) {
// fire listeners for the anchor point of the given mouse event
fireMarkerMotionListeners(listenerAnchor);
}
public void mouseExited(MouseEvent me) {
}
public void mouseHover(MouseEvent me) {
}
public void mouseMoved(MouseEvent me) {
}
}
public interface AnchorMotionListener {
public void anchorEntered(int position);
}
public void addAnchorMotionListener(AnchorMotionListener listener) {
listeners.add(listener);
}
public void removeAnchorMotionListener(AnchorMotionListener listener) {
listeners.remove(listener);
}
private void fireMarkerMotionListeners(int anchor) {
Iterator it = listeners.iterator();
while (it.hasNext()) {
AnchorMotionListener listener = (AnchorMotionListener)it.next();
listener.anchorEntered(anchor);
}
}
@Override
protected Dimension calculatePreferredSize(IFigure container, int wHint, int hHint) {
return new Dimension(0, 0);
}
@Override
public void setConstraint(IFigure child, Object constraint) {
super.setConstraint(child, constraint);
child.addMouseMotionListener(new MouseMotionAdapter(((Integer)constraint).intValue()));
}
}