Eclipse Draw2d
2.1

org.eclipse.draw2d
Class FreeformLayer

java.lang.Object
  |
  +--org.eclipse.draw2d.Figure
        |
        +--org.eclipse.draw2d.Layer
              |
              +--org.eclipse.draw2d.FreeformLayer
All Implemented Interfaces:
FreeformFigure, IFigure
Direct Known Subclasses:
ConnectionLayer

public class FreeformLayer
extends Layer
implements FreeformFigure


Nested Class Summary
 
Nested classes inherited from class org.eclipse.draw2d.Figure
Figure.FigureIterator
 
Nested classes inherited from class org.eclipse.draw2d.IFigure
IFigure.NoInsets
 
Field Summary
 
Fields inherited from class org.eclipse.draw2d.Figure
bgColor, border, bounds, fgColor, flags, font, MAX_FLAG, maxSize, minSize, NO_MANAGER, prefSize, toolTip
 
Fields inherited from interface org.eclipse.draw2d.IFigure
MAX_DIMENSION, MIN_DIMENSION, NO_INSETS
 
Constructor Summary
FreeformLayer()
           
 
Method Summary
 void add(IFigure child, Object constraint, int index)
          Adds the child IFigure using the specified index and constraint.
 void addFreeformListener(FreeformListener listener)
           
 void fireExtentChanged()
           
protected  void fireMoved()
          Notifies any FigureListeners listening to this Figure that it has moved.
 Rectangle getFreeformExtent()
           
 void primTranslate(int dx, int dy)
          Translates this Figure's bounds, without firing a move.
 void remove(IFigure child)
          Removes the given IFigure from this IFigure's list of children.
 void removeFreeformListener(FreeformListener listener)
           
 void setFreeformBounds(Rectangle bounds)
           
 
Methods inherited from class org.eclipse.draw2d.Layer
containsPoint, findFigureAt
 
Methods inherited from class org.eclipse.draw2d.Figure
add, add, add, addAncestorListener, addFigureListener, addFocusListener, addKeyListener, addListener, addMouseListener, addMouseMotionListener, addNotify, addPropertyChangeListener, addPropertyChangeListener, containsPoint, erase, findDescendantAtExcluding, findFigureAt, findFigureAt, findFigureAtExcluding, findMouseEventTargetAt, findMouseEventTargetInDescendantsAt, firePropertyChange, firePropertyChange, firePropertyChange, getBackgroundColor, getBorder, getBounds, getChildren, getClientArea, getClientArea, getCursor, getFlag, getFont, getForegroundColor, getInsets, getLayoutManager, getListeners, getLocalBackgroundColor, getLocalForegroundColor, getLocation, getMaximumSize, getMinimumSize, getMinimumSize, getParent, getPreferredSize, getPreferredSize, getSize, getToolTip, getUpdateManager, handleFocusGained, handleFocusLost, handleKeyPressed, handleKeyReleased, handleMouseDoubleClicked, handleMouseDragged, handleMouseEntered, handleMouseExited, handleMouseHover, handleMouseMoved, handleMousePressed, handleMouseReleased, hasFocus, internalGetEventDispatcher, intersects, invalidate, invalidateTree, isEnabled, isFocusTraversable, isMouseEventTarget, isOpaque, isRequestFocusEnabled, isValid, isValidationRoot, isVisible, layout, paint, paintBorder, paintChildren, paintClientArea, paintFigure, removeAll, removeAncestorListener, removeFigureListener, removeFocusListener, removeListener, removeMouseListener, removeMouseMotionListener, removeNotify, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, requestFocus, revalidate, setBackgroundColor, setBorder, setBounds, setChildrenDirection, setChildrenEnabled, setChildrenOrientation, setConstraint, setCursor, setEnabled, setFlag, setFocusTraversable, setFont, setForegroundColor, setLayoutManager, setLocation, setMaximumSize, setMinimumSize, setOpaque, setParent, setPreferredSize, setPreferredSize, setRequestFocusEnabled, setSize, setSize, setToolTip, setValid, setVisible, translate, translateFromParent, translateToAbsolute, translateToParent, translateToRelative, useLocalCoordinates, validate
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.eclipse.draw2d.IFigure
add, add, add, addAncestorListener, addFigureListener, addFocusListener, addKeyListener, addMouseListener, addMouseMotionListener, addNotify, addPropertyChangeListener, addPropertyChangeListener, containsPoint, containsPoint, erase, findFigureAt, findFigureAt, findFigureAt, findFigureAtExcluding, findMouseEventTargetAt, getBackgroundColor, getBorder, getBounds, getChildren, getClientArea, getClientArea, getCursor, getFont, getForegroundColor, getInsets, getLayoutManager, getLocalBackgroundColor, getLocalForegroundColor, getMaximumSize, getMinimumSize, getMinimumSize, getParent, getPreferredSize, getPreferredSize, getSize, getToolTip, getUpdateManager, handleFocusGained, handleFocusLost, handleKeyPressed, handleKeyReleased, handleMouseDoubleClicked, handleMouseDragged, handleMouseEntered, handleMouseExited, handleMouseHover, handleMouseMoved, handleMousePressed, handleMouseReleased, hasFocus, internalGetEventDispatcher, intersects, invalidate, invalidateTree, isEnabled, isFocusTraversable, isOpaque, isRequestFocusEnabled, isVisible, paint, removeAncestorListener, removeFigureListener, removeFocusListener, removeMouseListener, removeMouseMotionListener, removeNotify, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, requestFocus, revalidate, setBackgroundColor, setBorder, setBounds, setConstraint, setCursor, setEnabled, setFocusTraversable, setFont, setForegroundColor, setLayoutManager, setLocation, setMaximumSize, setMinimumSize, setOpaque, setParent, setPreferredSize, setRequestFocusEnabled, setSize, setSize, setToolTip, setVisible, translate, translateFromParent, translateToAbsolute, translateToParent, translateToRelative, validate
 

Constructor Detail

FreeformLayer

public FreeformLayer()
Method Detail

add

public void add(IFigure child,
                Object constraint,
                int index)
Description copied from interface: IFigure
Adds the child IFigure using the specified index and constraint. The child is removed from any previous parent.

Specified by:
add in interface IFigure
Overrides:
add in class Figure
Parameters:
child - The IFigure to add
constraint - The newly added IFigure's constraint
index - The index where the IFigure should be added

addFreeformListener

public void addFreeformListener(FreeformListener listener)
Specified by:
addFreeformListener in interface FreeformFigure

fireExtentChanged

public void fireExtentChanged()
Specified by:
fireExtentChanged in interface FreeformFigure

fireMoved

protected void fireMoved()
Description copied from class: Figure
Notifies any FigureListeners listening to this Figure that it has moved.

Overrides:
fireMoved in class Figure

getFreeformExtent

public Rectangle getFreeformExtent()
Specified by:
getFreeformExtent in interface FreeformFigure

primTranslate

public void primTranslate(int dx,
                          int dy)
Description copied from class: Figure
Translates this Figure's bounds, without firing a move.

Overrides:
primTranslate in class Figure
Parameters:
dx - The amount to translate horizontally
dy - The amount to translate vertically
See Also:
Figure.translate(int, int)

remove

public void remove(IFigure child)
Description copied from interface: IFigure
Removes the given IFigure from this IFigure's list of children.

Specified by:
remove in interface IFigure
Overrides:
remove in class Figure
Parameters:
child - The IFigure to remove

removeFreeformListener

public void removeFreeformListener(FreeformListener listener)
Specified by:
removeFreeformListener in interface FreeformFigure

setFreeformBounds

public void setFreeformBounds(Rectangle bounds)
Specified by:
setFreeformBounds in interface FreeformFigure

Eclipse Draw2d
2.1

Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.