| Package | com.yworks.graph.drawing |
| Class | public class GeneralPathNodeStyleRenderer |
| Inheritance | GeneralPathNodeStyleRenderer AbstractNodeStyleRenderer AbstractStyleRenderer |
IStyleRenderer implementation that can handle IGeneralPathNodeStyle
instances.
| Method | Defined by | ||
|---|---|---|---|
|
Initializes a new instance of the
GeneralPathNodeStyleRenderer class. | GeneralPathNodeStyleRenderer | ||
|
Returns a tight rectangular area where the whole rendering
would fit into.
| GeneralPathNodeStyleRenderer | ||
![]() |
Configures the
style and item parameters,
calls configure and returns this. | AbstractStyleRenderer | |
![]() |
Configures the
style and item parameters,
does not call configure and returns this. | AbstractStyleRenderer | |
![]() |
Configures the
style and item parameters,
calls configure and returns this. | AbstractStyleRenderer | |
|
getIntersection(innerX:Number, innerY:Number, outerX:Number, outerY:Number, intersectionPoint:IPointSetter):Boolean
Finds an intersection for the current
item using the style. | GeneralPathNodeStyleRenderer | ||
![]() |
Configures the
style and item parameters,
calls configure and returns this. | AbstractStyleRenderer | |
|
Returns the outline of the shape using the node's
layout. | GeneralPathNodeStyleRenderer | ||
![]() |
Configures the
style and item parameters,
calls configure and returns this. | AbstractStyleRenderer | |
![]() |
Configures the
style and
item parameters,
calls | AbstractNodeStyleRenderer | |
![]() |
Installs the model in the canvas at the given group using the
styleDescriptor. | AbstractStyleRenderer | |
|
isHit(x:Number, y:Number, ctx:ICanvasContext):Boolean
Hit tests the item by trying to apply the flash internal hit testing.
| GeneralPathNodeStyleRenderer | ||
|
Returns
true if the corresponding
item is considered to intersect the given rectangular box.This method may return false if the item cannot be
selected using a selection marquee or optionally if the
item is only partially contained within the box. | GeneralPathNodeStyleRenderer | ||
|
isInside(x:Number, y:Number):Boolean
Checks whether the given coordinate lies within the shape's geometric bounds.
| GeneralPathNodeStyleRenderer | ||
![]() |
Calls
configure and tests the item using the style
for a visible intersection with the clip bounds. | AbstractStyleRenderer | |
|
lookup(type:Class):Object
Implements the
ILookup interface. | GeneralPathNodeStyleRenderer | ||
|
Performs the actual painting into the given graphics context.
| GeneralPathNodeStyleRenderer | ||
| Method | Defined by | ||
|---|---|---|---|
|
configure():void
This is an empty implementation of the
AbstractStyleRenderer.configure
method. | GeneralPathNodeStyleRenderer | ||
![]() |
Factory method for the StyleDescriptor property.
| AbstractNodeStyleRenderer | |
![]() |
setItem(item:IModelItem):void
Called by the various descriptor getters to initialize the item.
| AbstractStyleRenderer | |
![]() |
setStyle(style:IVisualStyle):void
Called by the various descriptor getters to initialize the style.
| AbstractStyleRenderer | |
| GeneralPathNodeStyleRenderer | () | constructor |
public function GeneralPathNodeStyleRenderer()
Initializes a new instance of the GeneralPathNodeStyleRenderer class.
| calculateBounds | () | method |
public override function calculateBounds(scratch:IMutableRectangle, ctx:ICanvasContext):IRectangleReturns a tight rectangular area where the whole rendering would fit into.
Implementations can use the scratch rectangle to put their
results in and return it as the result of the operation.
Client has to always provide a non-null instance as
a parameter. They may however decide to return an internally
cached or dynamically created IRectangle implementation and
disregard the scratch parameter.
If calculating the bounds is too expensive or the painting is not
bound to a certain area, this method may return null.
If nothing is painted, this method should return an empty rectangle, where
either or both the width and height is non-positive or
ImmutableRectangle.Empty.
scratch:IMutableRectangle — An instance that can optionally be used to fill with the
corresponding values and be returned
|
|
ctx:ICanvasContext — The context to calculate the bounds for (currently not used)
|
IRectangle —
The bounds or null to indicate an unbound area
|
| configure | () | method |
protected override function configure():void
This is an empty implementation of the AbstractStyleRenderer.configure
method. Subclasses should override this.
| getIntersection | () | method |
public override function getIntersection(innerX:Number, innerY:Number, outerX:Number, outerY:Number, intersectionPoint:IPointSetter):Boolean
Finds an intersection for the current item using the style.
This implementation returns the intersection for the layout.
innerX:Number — The x coordinate of the point inside the node.
|
|
innerY:Number — The y coordinate of the point inside the node.
|
|
outerX:Number — The x coordinate of the point outside the node.
|
|
outerY:Number — The y coordinate of the point outside the node.
|
|
intersectionPoint:IPointSetter — The point to store the coordinates of the intersection in.
|
Boolean — true if an intersection was actually found
|
| getOutline | () | method |
public override function getOutline():GeneralPath
Returns the outline of the shape using the node's layout.
GeneralPath —
The outline of the bounds of the node.
|
| isHit | () | method |
public override function isHit(x:Number, y:Number, ctx:ICanvasContext):BooleanHit tests the item by trying to apply the flash internal hit testing.
This implementation does not take ICanvasContext.hitTestRadius into account.
Parametersx:Number |
|
y:Number |
|
ctx:ICanvasContext |
Boolean |
| isInBox | () | method |
public override function isInBox(box:IRectangle, ctx:ICanvasContext):Boolean
Returns true if the corresponding
item is considered to intersect the given rectangular box.
This method may return false if the item cannot be
selected using a selection marquee or optionally if the
item is only partially contained within the box.
box:IRectangle — The box describing the marquee's bounds
|
|
ctx:ICanvasContext — The current canvas context
|
Boolean — true if the item is considered to be captured by the marquee
|
| isInside | () | method |
public override function isInside(x:Number, y:Number):BooleanChecks whether the given coordinate lies within the shape's geometric bounds.
This implementation checks for containment in the layout.
x:Number — The x coordinate of the point to test.
|
|
y:Number — The y coordinate of the point to test.
|
Boolean — True if the point lies within the geometry of the rendering.
|
| lookup | () | method |
public override function lookup(type:Class):Object
Implements the ILookup interface.
This method will be used by default if getContext has been queried for a
lookup implementation.
Note that it cannot be assumed that configure has already been invoked.
However, normally item and style will be correctly configured
if invoked directly after getContext.
Subclass implementations should make sure to configure this instance before they return this as a result
of a successful lookup.
type:Class — The type to query for
|
Object — An implementation of the given type or null
|
| paint | () | method |
public override function paint(g:YGraphics, ctx:IPaintContext):voidPerforms the actual painting into the given graphics context.
Parametersg:YGraphics — The graphics context to paint into
|
|
ctx:IPaintContext — Currently not used
|