Class StandaloneDelegate
java.lang.Object
com.inductiveautomation.ignition.designer.designable.JComponentItemDelegate
com.inductiveautomation.ignition.designer.designable.standalone.StandaloneDelegate
- All Implemented Interfaces:
DesignableDelegate
-
Nested Class Summary
Nested classes/interfaces inherited from class com.inductiveautomation.ignition.designer.designable.JComponentItemDelegate
JComponentItemDelegate.ChildIterator
-
Field Summary
Fields inherited from class com.inductiveautomation.ignition.designer.designable.JComponentItemDelegate
ROTATION_CENTER_KEY, scratch, tx
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addObject
(JComponent parent, JComponent newChild, Rectangle2D newBounds) Adds the child into the given parent (which must be a container) at the given bounds, relative to the parent.void
copyMove
(List<JComponent> objects, double dX, double dY) Iterator<? extends JComponent>
findChildren
(JComponent container) Returns an iterator that iterates through the children of the given container in decreasing Z-order (highest layer to lowest layer)protected void
findHits
(LinkedList<JComponent> hits, JPanel container, int x, int y) findObjectsAt
(DesignableContainer container, Point point) Performs a basic "hit-test" to find objects in a container underneath a point.int
getChildCount
(JComponent container) Returns the count of the number of items currently held in the given containergetParent
(JComponent child) Finds the given item's parent in the container hierarchyboolean
isContainer
(JComponent item) Determines whether any given object is a container.boolean
isLocked
(JComponent item) Returns whether a normally movable object is currently locked or notboolean
isMovable
(JComponent item) Defines whether or not an item is inherently movable or not.boolean
isOffsettingParent
(JComponent container) Tests whether this container is an offsetting parent or notboolean
isRotateCapable
(JComponent item) Returns whether or not an item supports being rotated.void
moveObject
(JComponent object, Point2D newLocation) Move the given item to the new location.void
notifyObjectsMoved
(List<JComponent> objects, Map<JComponent, Rectangle2D> originalPositions) void
notifyObjectsRotated
(List<JComponent> objects, double angle, Point2D rotationAnchor) void
rotateObject
(JComponent object, double angle, Point2D rotationAnchor) Rotate the object around the given point by the angle specified.void
scaleObject
(JComponent object, Rectangle2D newBounds) Scale the given item to the new bounds.void
setZOrderPosition
(JComponent item, int position) Methods inherited from class com.inductiveautomation.ignition.designer.designable.JComponentItemDelegate
convertRect, convertShape, getBounds, getName, getOffsettingParent, getRotationAnchor, getShapeBounds, initRect, setRotationAnchor
-
Constructor Details
-
StandaloneDelegate
public StandaloneDelegate()
-
-
Method Details
-
isMovable
Description copied from interface:DesignableDelegate
Defines whether or not an item is inherently movable or not. Note that a normally movable object that is currently "locked" would still return true for this function. -
isLocked
Description copied from interface:DesignableDelegate
Returns whether a normally movable object is currently locked or not -
isContainer
Description copied from interface:DesignableDelegate
Determines whether any given object is a container. That is - whether it contains other selectable objects inside itself.- Parameters:
item
- The item to test- Returns:
- true if item is a container.
-
isOffsettingParent
Description copied from interface:DesignableDelegate
Tests whether this container is an offsetting parent or not -
isRotateCapable
Description copied from interface:DesignableDelegate
Returns whether or not an item supports being rotated. -
findObjectsAt
Description copied from interface:DesignableDelegate
Performs a basic "hit-test" to find objects in a container underneath a point.point
- The point in question, relative to the DesignableContainer
-
findHits
-
findChildren
Description copied from interface:DesignableDelegate
Returns an iterator that iterates through the children of the given container in decreasing Z-order (highest layer to lowest layer)- Specified by:
findChildren
in interfaceDesignableDelegate
- Overrides:
findChildren
in classJComponentItemDelegate
-
getChildCount
Description copied from interface:DesignableDelegate
Returns the count of the number of items currently held in the given container- Specified by:
getChildCount
in interfaceDesignableDelegate
- Overrides:
getChildCount
in classJComponentItemDelegate
-
getParent
Description copied from interface:DesignableDelegate
Finds the given item's parent in the container hierarchy -
moveObject
Description copied from interface:DesignableDelegate
Move the given item to the new location. Location is relative to its parent. This is used for realtime, transient moves, so it shouldn't add an undo action. -
scaleObject
Description copied from interface:DesignableDelegate
Scale the given item to the new bounds. Bounds location is relative to its parent. This is used for realtime, transient scales, so it shouldn't add an undo action. -
setZOrderPosition
-
notifyObjectsMoved
public void notifyObjectsMoved(List<JComponent> objects, Map<JComponent, Rectangle2D> originalPositions) -
copyMove
-
rotateObject
Description copied from interface:DesignableDelegate
Rotate the object around the given point by the angle specified.- Parameters:
object
- The object to rotate.angle
- The angle to rotate, specified in radians.rotationAnchor
- The rotation center, relative to the object's parent.
-
notifyObjectsRotated
-
addObject
Description copied from interface:DesignableDelegate
Adds the child into the given parent (which must be a container) at the given bounds, relative to the parent. If the bounds rectangle is null, then the component is assumed to already have it's location set on it.
-