Class RotationControls.RotationAnchorHandle
java.lang.Object
com.inductiveautomation.ignition.designer.designable.controls.AbstractShapeHandle
com.inductiveautomation.ignition.designer.designable.controls.RotationControls.RotationAnchorHandle
- All Implemented Interfaces:
IHandle
- Enclosing class:
- RotationControls
-
Field Summary
Fields inherited from class com.inductiveautomation.ignition.designer.designable.controls.AbstractShapeHandle
drawShape
-
Method Summary
Modifier and TypeMethodDescriptiongetStatusBarText
(int inputMask) Called on mouseover and during drag to get the status bar text for the handle.protected Shape
Called to create a new draw shape.void
onDrag
(double dX, double dY, int inputMask) Called while the handle is being dragged.void
onDragEnd
(double dX, double dY, int inputMask) The drag event is complete (mouse has been released).void
onDragStart
(double dX, double dY, int inputMask) The handle has started to be dragged.void
paintHandle
(Graphics2D g, boolean mouseOver, boolean drag) Gives the handle a chance to paint itself on the given graphics object.protected void
position
(Point2D.Double location) Updates the argument location with the correct position of this handle's anchor point.Methods inherited from class com.inductiveautomation.ignition.designer.designable.controls.AbstractShapeHandle
getBounds, onClick, paintHandle
-
Method Details
-
getStatusBarText
Description copied from interface:IHandle
Called on mouseover and during drag to get the status bar text for the handle.- Specified by:
getStatusBarText
in interfaceIHandle
- Overrides:
getStatusBarText
in classAbstractShapeHandle
-
newDrawShape
Description copied from class:AbstractShapeHandle
Called to create a new draw shape. Expectation is that a subclass will override this to provide a meaningful shape. Anchor point is at (0,0). Default shape is a 10x10 square anchored in the center.- Overrides:
newDrawShape
in classAbstractShapeHandle
-
paintHandle
Description copied from interface:IHandle
Gives the handle a chance to paint itself on the given graphics object. -
position
Description copied from class:AbstractShapeHandle
Updates the argument location with the correct position of this handle's anchor point. Must be in logical (unzoomed) coordinates.- Specified by:
position
in classAbstractShapeHandle
-
onDragStart
public void onDragStart(double dX, double dY, int inputMask) Description copied from interface:IHandle
The handle has started to be dragged.- Specified by:
onDragStart
in interfaceIHandle
- Overrides:
onDragStart
in classAbstractShapeHandle
- Parameters:
dX
- The distance along the horizontal axis away from the drag starting point. (Unzoomed, logical)dY
- The distance along the vertical axis away from the drag starting point. (Unzoomed, logical)inputMask
- The extended modifiers from the underlying mouse drag (seeMouseEvent.getModifiersEx()
.)
-
onDragEnd
public void onDragEnd(double dX, double dY, int inputMask) Description copied from interface:IHandle
The drag event is complete (mouse has been released).- Specified by:
onDragEnd
in interfaceIHandle
- Overrides:
onDragEnd
in classAbstractShapeHandle
- Parameters:
dX
- The distance along the horizontal axis away from the drag starting point. (Unzoomed, logical)dY
- The distance along the vertical axis away from the drag starting point. (Unzoomed, logical)inputMask
- The extended modifiers from the underlying mouse drag (seeMouseEvent.getModifiersEx()
.)
-
onDrag
public void onDrag(double dX, double dY, int inputMask) Description copied from interface:IHandle
Called while the handle is being dragged.- Specified by:
onDrag
in interfaceIHandle
- Overrides:
onDrag
in classAbstractShapeHandle
- Parameters:
dX
- The distance along the horizontal axis away from the drag starting point. (Unzoomed, logical)dY
- The distance along the vertical axis away from the drag starting point. (Unzoomed, logical)inputMask
- The extended modifiers from the underlying mouse drag (seeMouseEvent.getModifiersEx()
.)
-