Package org.eclipse.gef.handles
Class NonResizableHandleKit
java.lang.Object
org.eclipse.gef.handles.NonResizableHandleKit
A set of utility methods to create Handles for NonResizable Figures.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic void
addCornerHandles
(GraphicalEditPart part, List handles) Fills the given List with handles at each corner of a figure.static void
addCornerHandles
(GraphicalEditPart part, List handles, DragTracker tracker, Cursor cursor) Fills the given List with handles at each corner of a figure.static void
addHandle
(GraphicalEditPart part, List handles, int direction) Adds a single handle in the given direction to the given List.static void
addHandle
(GraphicalEditPart part, List handles, int direction, DragTracker tracker, Cursor cursor) Adds a single handle in the given direction to the given List.static void
addHandles
(GraphicalEditPart part, List handles) Deprecated.static void
addHandles
(GraphicalEditPart part, List handles, DragTracker tracker, Cursor cursor) Deprecated.static void
addMoveHandle
(GraphicalEditPart f, List handles) Fills the given List with move borders at each side of a figure.static void
addMoveHandle
(GraphicalEditPart f, List handles, DragTracker tracker, Cursor cursor) Fills the given List with move borders at each side of a figure.static Handle
moveHandle
(GraphicalEditPart owner) Returns a newMoveHandle
with the given owner.static Handle
moveHandle
(GraphicalEditPart owner, DragTracker tracker, Cursor cursor) Returns a newMoveHandle
with the given owner.
-
Constructor Details
-
NonResizableHandleKit
public NonResizableHandleKit()
-
-
Method Details
-
addCornerHandles
public static void addCornerHandles(GraphicalEditPart part, List handles, DragTracker tracker, Cursor cursor) Fills the given List with handles at each corner of a figure.- Parameters:
part
- the handles' GraphicalEditParthandles
- the List to add the four corner handles totracker
- the handles' DragTrackercursor
- the handles' Cursor
-
addCornerHandles
Fills the given List with handles at each corner of a figure.- Parameters:
part
- the handles' GraphicalEditParthandles
- the List to add the four corner handles to
-
addHandle
Adds a single handle in the given direction to the given List.- Parameters:
part
- the owner GraphicalEditPart of the handlehandles
- the List to add the handle todirection
- the integer constant from PositionConstants that refers to the handle direction
-
addHandle
public static void addHandle(GraphicalEditPart part, List handles, int direction, DragTracker tracker, Cursor cursor) Adds a single handle in the given direction to the given List.- Parameters:
tracker
- the DragTracker to assign to this handlepart
- the owner GraphicalEditPart of the handlehandles
- the List to add the handle todirection
- the integer constant from PositionConstants that refers to the handle directioncursor
- the Cursor to use when hovering over this handle
-
addHandles
Deprecated.Fills the given List with handles at each corner.- Parameters:
part
- the handles' GraphicalEditParthandles
- the List to add the handles to
-
addHandles
public static void addHandles(GraphicalEditPart part, List handles, DragTracker tracker, Cursor cursor) Deprecated.Fills the given List with handles at each corner.- Parameters:
part
- the handles' GraphicalEditParthandles
- the List to add the handles totracker
- the handles' DragTrackercursor
- the handles' Cursor
-
addMoveHandle
Fills the given List with move borders at each side of a figure.- Parameters:
f
- the handles' GraphicalEditParthandles
- the List to add the handles to
-
addMoveHandle
public static void addMoveHandle(GraphicalEditPart f, List handles, DragTracker tracker, Cursor cursor) Fills the given List with move borders at each side of a figure.- Parameters:
tracker
- the DragTracker to assign to this handlef
- the handles' GraphicalEditParthandles
- the List to add the handles tocursor
- the Cursor to use when hovering over this handle
-
moveHandle
Returns a newMoveHandle
with the given owner.- Parameters:
owner
- the GraphicalEditPart that is the owner of the new MoveHandle- Returns:
- the new MoveHandle
-
moveHandle
Returns a newMoveHandle
with the given owner.- Parameters:
tracker
- the DragTracker to assign to this handleowner
- the GraphicalEditPart that is the owner of the new MoveHandlecursor
- the Cursor to use when hovering over this handle- Returns:
- the new MoveHandle
-