Свойство | Тип | Описание | |
---|---|---|---|
FullBoundsInvalidated | FullBoundsInvalidatedDelegate | ||
PaintInvalidated | PaintInvalidatedDelegate |
Свойство | Тип | Описание | |
---|---|---|---|
EVENT_KEY_CLICK | object | ||
EVENT_KEY_DOUBLECLICK | object | ||
EVENT_KEY_DRAGDROP | object | ||
EVENT_KEY_DRAGENTER | object | ||
EVENT_KEY_DRAGLEAVE | object | ||
EVENT_KEY_DRAGOVER | object | ||
EVENT_KEY_GOTFOCUS | object | ||
EVENT_KEY_KEYDOWN | object | ||
EVENT_KEY_KEYPRESS | object | ||
EVENT_KEY_KEYUP | object | ||
EVENT_KEY_LOSTFOCUS | object | ||
EVENT_KEY_MOUSEDOWN | object | ||
EVENT_KEY_MOUSEDRAG | object | ||
EVENT_KEY_MOUSEENTER | object | ||
EVENT_KEY_MOUSELEAVE | object | ||
EVENT_KEY_MOUSEMOVE | object | ||
EVENT_KEY_MOUSEUP | object | ||
EVENT_KEY_MOUSEWHEEL | object | ||
PROPERTY_KEY_BOUNDS | object | ||
PROPERTY_KEY_BRUSH | object | ||
PROPERTY_KEY_CHILDREN | object | ||
PROPERTY_KEY_CHILDRENPICKABLE | object | ||
PROPERTY_KEY_FULLBOUNDS | object | ||
PROPERTY_KEY_PARENT | object | ||
PROPERTY_KEY_PICKABLE | object | ||
PROPERTY_KEY_TAG | object | ||
PROPERTY_KEY_TRANSFORM | object | ||
PROPERTY_KEY_VISIBLE | object | ||
bounds |
Метод | Описание | |
---|---|---|
AddActivity ( UMD.HCIL.Piccolo.Activities.PActivity activity ) : bool |
Schedule the given activity with the root. Note that only scheduled activities will be stepped. If the activity is successfully added true is returned, else false. |
|
AddChild ( |
Add a node to be a new child of this node. The new node is added to the end of the list of this node's children. If child was previously a child of another node, it is removed from that node first. |
|
AddChild ( int index, |
Add a node to be a new child of this node at the specified index. If child was previously a child of another node, it is removed from that node first. |
|
AddChildren ( UMD.HCIL.Piccolo.Util.PNodeList nodes ) : void |
Add a list of nodes to be children of this node. If these nodes already have parents they will first be removed from those parents. |
|
AddInputEventListener ( PInputEventListener listener ) : void |
Adds the specified input event listener to receive input events from this node.
|
|
AnimateMatrixToBounds ( float x, float y, float width, float height, long duration ) : UMD.HCIL.Piccolo.Activities.PTransformActivity |
Animate this node from it's current matrix when the activity starts a new matrix that will fit the node into the given bounds. If this node descends from the root then the activity will be scheduled, else the returned activity should be scheduled manually. If two different transform activities are scheduled for the same node at the same time, they will both be applied to the node, but the last one scheduled will be applied last on each frame, so it will appear to have replaced the original. Generally you will not want to do that. Note this method animates the node's matrix, but does not directly change the node's bounds rectangle. Use |
|
AnimateToBounds ( float x, float y, float width, float height, long duration ) : UMD.HCIL.Piccolo.Activities.PInterpolatingActivity |
Animate this node's bounds from their current location when the activity starts to the specified bounds. If this node descends from the root then the activity will be scheduled, else the returned activity should be scheduled manually. If two different transform activities are scheduled for the same node at the same time, they will both be applied to the node, but the last one scheduled will be applied last on each frame, so it will appear to have replaced the original. Generally you will not want to do that. Note this method animates the node's bounds, but does not change the node's matrix. Use |
|
AnimateToColor ( Color destColor, long duration ) : |
Animate this node's color from its current value to the new value specified. This method assumes that this nodes Brush property is of type SolidBrush. If this node descends from the root then the activity will be scheduled, else the returned activity should be scheduled manually. If two different color activities are scheduled for the same node at the same time, they will both be applied to the node, but the last one scheduled will be applied last on each frame, so it will appear to have replaced the original. Generally you will not want to do that. |
|
AnimateToMatrix ( UMD.HCIL.Piccolo.Util.PMatrix destMatrix, long duration ) : UMD.HCIL.Piccolo.Activities.PTransformActivity |
Animate this node's matrix from its current values when the activity starts to the new values specified in the given matrix. If this node descends from the root then the activity will be scheduled, else the returned activity should be scheduled manually. If two different transform activities are scheduled for the same node at the same time, they will both be applied to the node, but the last one scheduled will be applied last on each frame, so it will appear to have replaced the original. Generally you will not want to do that. |
|
AnimateToPositionScaleRotation ( float x, float y, float scale, float theta, long duration ) : UMD.HCIL.Piccolo.Activities.PTransformActivity |
Animate this node's matrix from its current location when the activity starts to the specified location, scale, and rotation. If this node descends from the root then the activity will be scheduled, else the returned activity should be scheduled manually. If two different transform activities are scheduled for the same node at the same time, they will both be applied to the node, but the last one scheduled will be applied last on each frame, so it will appear to have replaced the original. Generally you will not want to do that. |
|
CenterBoundsOnPoint ( float x, float y ) : bool |
Adjust the bounds of this node so that they are centered on the given point specified in the local coordinate system of this node. Note that this method will modify the node's bounds, while CenterFullBoundsOnPoint will modify the node's matrix. |
|
CenterFullBoundsOnPoint ( float x, float y ) : void |
Adjust the full bounds of this node so that they are centered on the given point specified in the local coordinates of this node's parent. Note that this meathod will modify the node's matrix, while CenterBoundsOnPoint will modify the node's bounds. |
|
Clone ( ) : Object |
The copy method copies this node and all of its descendents. Note that copying is implemented in terms of c# serialization. See the serialization notes for more information. |
|
ComputeFullBounds ( ) : |
Compute and return the full bounds of this node.
|
|
EndResizeBounds ( ) : void |
Notify this node that you have finished a resize bounds sequence. A call to |
|
FindIntersectingNodes ( |
Checks this node and it's descendents for intersection with the given bounds and adds any intersecting nodes to the given list.
|
|
FullIntersects ( |
Return true if the full bounds of this node intersect with the specified bounds.
|
|
FullPaint ( UMD.HCIL.Piccolo.Util.PPaintContext paintContext ) : void |
Paint this node and all of its descendents. Notes to Inheritors: Most subclasses do not need to override this method, they should override |
|
FullPick ( UMD.HCIL.Piccolo.Util.PPickPath pickPath ) : bool |
Try to pick this node and all of its descendents. Notes to Inheritors: Most subclasses should not need to override this method. Instead they should override |
|
GetAllNodes ( PNodeFilter filter, UMD.HCIL.Piccolo.Util.PNodeList results ) : UMD.HCIL.Piccolo.Util.PNodeList |
Gets a list containing the subset of this node and all of its descendent nodes that are accepted by the given node filter. If the filter is null then all nodes will be accepted. If the results parameter is not null then it will be used to store this subset instead of creating a new list. |
|
GetChild ( int index ) : |
Return the child node at the specified index.
|
|
GetEnumerator ( ) : IEnumerator |
Return an enumerator for this node’s direct descendent children. This method allows you to use the foreach loop to iterate over a node's children. For example, you could do the following: |
|
GetObjectData ( |
Write this node and all of its descendent nodes to the given SerializationInfo. This node's parent is written out conditionally, that is it will only be written out if someone else writes it out unconditionally. |
|
GlobalToLocal ( |
Transform the given point from global coordinates to this node's local coordinate system.
|
|
GlobalToLocal ( |
Transform the given rectangle from global coordinates to this node's local coordinate system.
|
|
GlobalToLocal ( |
Transform the given size from global coordinates to this node's local coordinate system.
|
|
IndexOfChild ( |
Return the index where the given child is stored.
|
|
Intersects ( |
Return true if this node intersects the given rectangle specified in local bounds. If the geometry of this node is complex, this method can become expensive. It is therefore recommended that |
|
InvalidateFullBounds ( ) : void |
Invalidates the full bounds of this node, and sets the child bounds invalid flag on each of this node's ancestors.
|
|
InvalidateLayout ( ) : void |
Invalidate this node's layout, so that later
|
|
InvalidatePaint ( ) : void |
Invalidate this node's paint, and mark all of its ancestors as having a node with invalid paint.
|
|
IsAncestorOf ( |
Return true if this node is an ancestor of the parameter node.
|
|
IsDescendentOf ( |
Return true if this node is a descendent of the parameter node.
|
|
IsDescendentOfRoot ( ) : bool |
Return true if this node is a descendent of the Root.
|
|
IsOpaque ( |
|
|
LayoutChildren ( ) : void |
Nodes that apply layout constraints to their children should override this method and do the layout there. This method gets called whenever Piccolo determines that this node's children may need to be re-layed out. This occurs when the bounds of this node or a descendent node change. This method may also be invoked indirectly when LayoutChildren is called on an ancestor node, since typically you will modify the bounds of the children there. |
|
Lerp ( float t, float a, float b ) : float |
Linearly interpolates between a and b, based on t. Specifically, it computes Lerp(a, b, t) = a + t*(b - a). This produces a result that changes from a (when t = 0) to b (when t = 1).
|
|
LocalToGlobal ( |
Transform the given point from this node's local coordinate system to the global coordinate system.
|
|
LocalToGlobal ( |
Transform the given rectangle from this node's local coordinate system to the global coordinate system.
|
|
LocalToGlobal ( |
Transform the given size from this node's local coordinate system to the global coordinate system.
|
|
LocalToParent ( |
Transform the given point from this node's local coordinate system to its parent's local coordinate system.
|
|
LocalToParent ( |
Transform the given rectangle from this node's local coordinate system to its parent's local coordinate system.
|
|
LocalToParent ( |
Transform the given size from this node's local coordinate system to its parent's local coordinate system.
|
|
MoveInBackOf ( |
Change the order of this node in its parent's children list so that it will draw before the given sibling node.
|
|
MoveInFrontOf ( |
Change the order of this node in its parent's children list so that it will draw after the given sibling node.
|
|
MoveToBack ( ) : void |
Change the order of this node in its parent's children list so that it will draw in back of all of its other sibling nodes.
|
|
MoveToFront ( ) : void |
Change the order of this node in its parent's children list so that it will draw in front of all of its other sibling nodes.
|
|
OffsetBy ( float dx, float dy ) : void |
Offset this node relative to the parent's coordinate system. This is NOT affected by this node's current scale or rotation. This is implemented by directly adding dx to the dx position and dy to the dy position of the matrix. |
|
OnClick ( |
Raises the Click event. Raising an event invokes the event handler through a delegate. The OnClick method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnClick in a derived class, be sure to call the base class's OnClick method so that registered delegates receive the event. |
|
OnDoubleClick ( |
Raises the DoubleClick event. Raising an event invokes the event handler through a delegate. The OnDoubleClick method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnDoubleClick in a derived class, be sure to call the base class's OnDOubleClick method so that registered delegates receive the event. |
|
OnDragDrop ( |
Raises the DragDrop event. Raising an event invokes the event handler through a delegate. The OnDragDrop method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnDragDrop in a derived class, be sure to call the base class's OnDragDrop method so that registered delegates receive the event. |
|
OnDragEnter ( |
Raises the DragEnter event. Raising an event invokes the event handler through a delegate. The OnDragEnter method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnDragEnter in a derived class, be sure to call the base class's OnDragEnter method so that registered delegates receive the event. |
|
OnDragLeave ( |
Raises the DragLeave event. Raising an event invokes the event handler through a delegate. The OnDragLeave method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnDragLeave in a derived class, be sure to call the base class's OnDragLeave method so that registered delegates receive the event. |
|
OnDragOver ( |
Raises the DragOver event. Raising an event invokes the event handler through a delegate. The OnDragOver method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnDragOver in a derived class, be sure to call the base class's OnDragOver method so that registered delegates receive the event. |
|
OnGotFocus ( |
Raises the GotFocus event. Raising an event invokes the event handler through a delegate. The OnGotFocus method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnGotFocus in a derived class, be sure to call the base class's OnGotFocus method so that registered delegates receive the event. |
|
OnKeyDown ( |
Raises the KeyDown event. Raising an event invokes the event handler through a delegate. The OnKeyDown method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnKeyDown in a derived class, be sure to call the base class's OnKeyDown method so that registered delegates receive the event. |
|
OnKeyPress ( |
Raises the KeyPress event. Raising an event invokes the event handler through a delegate. The OnKeyPress method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnKeyPress in a derived class, be sure to call the base class's OnKeyPress method so that registered delegates receive the event. |
|
OnKeyUp ( |
Raises the KeyUp event. Raising an event invokes the event handler through a delegate. The OnKeyUp method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnKeyUp in a derived class, be sure to call the base class's OnKeyUp method so that registered delegates receive the event. |
|
OnLostFocus ( |
Raises the LostFocus event. Raising an event invokes the event handler through a delegate. The OnLostFocus method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnLostFocus in a derived class, be sure to call the base class's OnLostFocus method so that registered delegates receive the event. |
|
OnMouseDown ( |
Raises the MouseDown event. Raising an event invokes the event handler through a delegate. The OnMouseDown method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnMouseDown in a derived class, be sure to call the base class's OnMouseDown method so that registered delegates receive the event. |
|
OnMouseDrag ( |
Raises the MouseDrag event. Raising an event invokes the event handler through a delegate. The OnMouseDrag method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnMouseDrag in a derived class, be sure to call the base class's OnMouseDrag method so that registered delegates receive the event. |
|
OnMouseEnter ( |
Raises the MouseEnter event. Raising an event invokes the event handler through a delegate. The OnMouseEnter method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnMouseEnter in a derived class, be sure to call the base class's OnMouseEnter method so that registered delegates receive the event. |
|
OnMouseLeave ( |
Raises the MouseLeave event. Raising an event invokes the event handler through a delegate. The OnMouseLeave method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnMouseLeave in a derived class, be sure to call the base class's OnMouseLeave method so that registered delegates receive the event. |
|
OnMouseMove ( |
Raises the MouseMove event. Raising an event invokes the event handler through a delegate. The OnMouseMove method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnMouseMove in a derived class, be sure to call the base class's OnMouseMove method so that registered delegates receive the event. |
|
OnMouseUp ( |
Raises the MouseUp event. Raising an event invokes the event handler through a delegate. The OnMouseUp method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnMouseUp in a derived class, be sure to call the base class's OnMouseUp method so that registered delegates receive the event. |
|
OnMouseWheel ( |
Raises the MouseWheel event. Raising an event invokes the event handler through a delegate. The OnMouseWheel method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes to Inheritors: When overriding OnMouseWheel in a derived class, be sure to call the base class's OnMouseWheel method so that registered delegates receive the event. |
|
PNode ( ) : System |
Constructs a new PNode.
|
|
ParentBoundsChanged ( ) : void |
A notification that the bounds of this node's parent have changed.
|
|
ParentToLocal ( |
Transform the given point from this node's parent's local coordinate system to the local coordinate system of this node.
|
|
ParentToLocal ( |
Transform the given rectangle from this node's parent's local coordinate system to the local coordinate system of this node.
|
|
ParentToLocal ( |
Transform the given size from this node's parent's local coordinate system to the local coordinate system of this node.
|
|
Position ( |
Animate this node's matrix to one that will make this node appear at the specified position relative to the specified bounding box. The source point specifies a point in the unit square (0, 0) - (1, 1) that represents an anchor point on the corresponding node to this matrox. The destination point specifies an anchor point on the reference node. The position method then computes the matrix that results in transforming this node so that the source anchor point coincides with the reference anchor point. This can be useful for layout algorithms as it is straightforward to position one object relative to another. For example, If you have two nodes, A and B, and you call |
|
Print ( ) : void |
Constructs a new PrintDocument, allows the user to select which printer to print to, and then prints the node.
|
|
RemoveAllChildren ( ) : void |
Remove all the children from this node. Note this method is more efficient then removing each child individually. |
|
RemoveChild ( |
Remove the given child from this node's children list. Any subsequent children are shifted to the left (one is subtracted from their indices). The removed child’s parent is set to null. |
|
RemoveChild ( int index ) : |
Remove the child at the specified position from this node's children. Any subsequent children are shifted to the left (one is subtracted from their indices). The removed child’s parent is set to null. |
|
RemoveChildren ( UMD.HCIL.Piccolo.Util.PNodeList childrenNodes ) : void |
Remove all the children in the given list from this node’s list of children. All removed nodes will have their parent set to null. |
|
RemoveFromParent ( ) : void |
Delete this node by removing it from its parent’s list of children.
|
|
RemoveInputEventListener ( PInputEventListener listener ) : void |
Removes the specified input event listener so that it no longer receives input events from this node.
|
|
Repaint ( ) : void |
Mark the area on the screen represented by this node's full bounds as needing a repaint.
|
|
RepaintFrom ( |
Pass the given repaint request up the tree, so that any cameras can invalidate that region on their associated canvas.
|
|
Reparent ( |
Set the parent of this node, and transform the node in such a way that it doesn't move in global coordinates.
|
|
ReplaceWith ( |
Swaps this node out of the scene graph tree, and replaces it with the specified replacement node. This node is left dangling, and it is up to the caller to manage it. The replacement node will be added to this node's parent in the same position as this node was located. That is, if this was the 3rd child of its parent, then after calling |
|
ResetBounds ( ) : void |
Set the bounds of this node back to an empty rectangle.
|
|
RotateBy ( float theta ) : void |
Rotates this node by theta (in degrees) about the 0,0 point. This will affect this node and all its descendents. |
|
RotateBy ( float theta, |
Rotates this node by theta (in degrees) about the given point. This will affect this node and all its descendents. |
|
RotateBy ( float theta, float x, float y ) : void |
Rotates this node by theta (in degrees) about the given point.
|
|
RotateInPlace ( float theta ) : void |
Rotates this node by theta (in degrees), and then translates the node so that the x, y position of its fullBounds stays constant.
|
|
ScaleBy ( float scale ) : void |
Scale this node's matrix by the given amount. This will affect this node and all of its descendents. |
|
ScaleBy ( float scale, |
Scale this node's matrix by the given amount about the specified point. This will affect this node and all of its descendents. |
|
ScaleBy ( float scale, float x, float y ) : void |
Scale this node's matrix by the given amount about the specified point.
|
|
SetBounds ( float x, float y, float width, float height ) : bool |
Set the bounds of this node to the given values. These bounds are stored in the local coordinate system of this node. |
|
SetOffset ( |
Sets the offset applied to this node by it's matrix. The offset affects this node and all of its descendents and is specified in the parent coordinate system. This directly sets the values that are in the dx and dy positions of the matrix. Unlike |
|
SetOffset ( float x, float y ) : void |
Sets the offset applied to this node by it's matrix. The offset affects this node and all of its descendents and is specified in the parent coordinate system. This directly sets the values that are in the dx and dy positions of the matrix. Unlike |
|
SignalBoundsChanged ( ) : void |
This method should be called when the bounds of this node are changed. This method invalidates the full bounds of this node, and also notifies each of this node's children that their parent's bounds have changed. As a result of this method getting called this node's |
|
StartResizeBounds ( ) : void |
Notify this node that you will begin to repeatedly call After a call to |
|
ToImage ( ) : Image |
Return a new Image representing this node and all of its children. The image size will be equal to the size of this node's full bounds. |
|
ToImage ( Image image, |
Paint a representation of this node into the specified image. If backgroundBrush is null, then the image will not be filled with a color prior to rendering.
|
|
ToImage ( int width, int height, |
Return a new Image of the requested size representing this node and all of its children. If backgroundBrush is null, then the image will not be filled with a color prior to rendering. |
|
ToPickPath ( ) : UMD.HCIL.Piccolo.Util.PPickPath |
Creates a pick path with a null camera and empty pickbounds and adds this node. This method is useful if you want to dispatch events directly to a single node. For an example, see PSelectionExample, where the KeyboardFocus is set using this approach. |
|
ToPickPath ( UMD.HCIL.Piccolo.PCamera aCamera, |
Creates a pick path with the given Camera and pickbounds and adds this node.
|
|
ToString ( ) : string |
Returns a string representation of this object for debugging purposes.
|
|
TransformBy ( UMD.HCIL.Piccolo.Util.PMatrix matrix ) : void |
Transform this node's matrix by the given matrix.
|
|
TranslateBy ( float dx, float dy ) : void |
Translate this node's matrix by the given amount, using the standard matrix This translation affects this node and all of its descendents. |
|
ValidateFullPaint ( ) : void |
Repaint this node and any of its descendents if they have invalid paint.
|
|
this ( int index ) : |
Allows a PNode to be indexed directly to access it's children. This provides a shortcut to indexing a node's children. For example, |
Метод | Описание | |
---|---|---|
AddChildren ( ICollection nodes ) : void |
Add a collection of nodes to be children of this node. This method allows you to pass in any ICollection, rather than a PNodeList. This can be useful if you are using an ArrayList or some other collection type to store PNodes. Note, however, that this list still must contain only objects that extend PNode otherwise you will get a runtime error. To protect against problems of this type, use the If these nodes already have parents they will first be removed from those parents. |
|
FireChildPropertyChangedEvent ( UMD.HCIL.Piccolo.Event.PPropertyEventArgs e, object propertyKey, int propertyCode ) : void |
Called by child node to forward property change events up the node tree so that property change listeners registered with this node will be notified of property changes of its children nodes. For performance reason only propertyCodes listed in the propertyChangeParentMask are forwarded. |
|
FirePropertyChangedEvent ( object propertyKey, int propertyCode, Object oldValue, Object newValue ) : void |
Raise the given property change event.
|
|
GetPropertyHandlers ( object propertyKey ) : PPropertyEventHandler |
Gets all property event handlers for this node, that are associated with the specified property key.
|
|
HandleEvent ( |
Raise the given input event. If an event has been set as handled, and the delegate is not a member of a listener class, then the event is consumed. If the delegate is a member of a listener class the decision of consumption is left up to the filter associated with that class. |
|
InternalUpdateBounds ( float x, float y, float width, float height ) : void |
Gives nodes a chance to update their internal structure before bounds changed notifications are sent. When this message is received, the node's bounds field will contain the new value.
|
|
OnFullBoundsInvalidated ( ) : void |
Raises the
|
|
OnPaintInvalidated ( ) : void |
Raises the
|
|
PNode ( |
Read this node and all of its descendent nodes from the given SerializationInfo. This constructor is required for Deserialization. |
|
Paint ( UMD.HCIL.Piccolo.Util.PPaintContext paintContext ) : void |
Paint this node behind any of its children nodes. Notes to Inheritors: Subclasses that define a different appearance should override this method and paint themselves there. |
|
PaintAfterChildren ( UMD.HCIL.Piccolo.Util.PPaintContext paintContext ) : void |
Subclasses that wish to do additional painting after their children are painted should override this method and do that painting here.
|
|
Pick ( UMD.HCIL.Piccolo.Util.PPickPath pickPath ) : bool |
Try to pick this node before its children have had a chance to be picked. Nodes that paint on top of their children may want to override this method to see if the pick path intersects that paint. |
|
PickAfterChildren ( UMD.HCIL.Piccolo.Util.PPickPath pickPath ) : bool |
Try to pick this node after its children have had a chance to be picked. Notes to Inheritors: Most subclasses that define a different geometry will need to override this method. |
|
RemoveChildren ( ICollection childrenNodes ) : void |
Remove all the children in the given collection from this node’s list of children. This method allows you to pass in any ICollection, rather than a PNodeList. This can be useful if you are using an ArrayList or some other collection type to store PNodes. Note, however, that this list still must contain only objects that extend PNode otherwise you will get a runtime error. To protect against problems of this type, use the All removed nodes will have their parent set to null. |
|
ScaleAndDraw ( |
Scale the Graphics so that this node's full bounds fit in displayRect and then render into the given Graphics context.
|
|
ValidateFullBounds ( ) : bool |
This method is called to validate the bounds of this node and all of its descendents. This method returns true if this node's bounds or the bounds of any of its descendents are marked as volatile. |
|
printDocument_PrintPage ( object sender, System.Drawing.Printing.PrintPageEventArgs e ) : void |
Prints the node into the given Graphics context.
|
public AddActivity ( UMD.HCIL.Piccolo.Activities.PActivity activity ) : bool | ||
activity | UMD.HCIL.Piccolo.Activities.PActivity | The new activity to schedule. |
Результат | bool |
public AddChild ( |
||
child | The new child to add to this node. | |
Результат | void |
public AddChild ( int index, |
||
index | int | The index at which to add the new child. |
child | The new child to add to this node. | |
Результат | void |
protected AddChildren ( ICollection nodes ) : void | ||
nodes | ICollection | /// A collection of nodes to be added to this node. /// |
Результат | void |
public AddChildren ( UMD.HCIL.Piccolo.Util.PNodeList nodes ) : void | ||
nodes | UMD.HCIL.Piccolo.Util.PNodeList | A list of nodes to be added to this node. |
Результат | void |
public AddInputEventListener ( PInputEventListener listener ) : void | ||
listener | PInputEventListener | The new input listener |
Результат | void |
public AnimateMatrixToBounds ( float x, float y, float width, float height, long duration ) : UMD.HCIL.Piccolo.Activities.PTransformActivity | ||
x | float | The x coordinate of the target bounds. |
y | float | The y coordinate of the target bounds. |
width | float | The width of the target bounds. |
height | float | The height of the target bounds. |
duration | long | The amount of time that the animation should take. |
Результат | UMD.HCIL.Piccolo.Activities.PTransformActivity |
public AnimateToBounds ( float x, float y, float width, float height, long duration ) : UMD.HCIL.Piccolo.Activities.PInterpolatingActivity | ||
x | float | The x coordinate of the target bounds. |
y | float | The y coordinate of the target bounds. |
width | float | The width of the target bounds. |
height | float | The height of the target bounds. |
duration | long | The amount of time that the animation should take. |
Результат | UMD.HCIL.Piccolo.Activities.PInterpolatingActivity |
public AnimateToColor ( Color destColor, long duration ) : |
||
destColor | Color | The final color value. |
duration | long | The amount of time that the animation should take. |
Результат |
public AnimateToMatrix ( UMD.HCIL.Piccolo.Util.PMatrix destMatrix, long duration ) : UMD.HCIL.Piccolo.Activities.PTransformActivity | ||
destMatrix | UMD.HCIL.Piccolo.Util.PMatrix | The final matrix value. |
duration | long | The amount of time that the animation should take. |
Результат | UMD.HCIL.Piccolo.Activities.PTransformActivity |
public AnimateToPositionScaleRotation ( float x, float y, float scale, float theta, long duration ) : UMD.HCIL.Piccolo.Activities.PTransformActivity | ||
x | float | The x coordinate of the target location. |
y | float | The y coordinate of the target location |
scale | float | The scale of the target matrix |
theta | float | The rotation of the target matrix |
duration | long | The amount of time that the animation should take. |
Результат | UMD.HCIL.Piccolo.Activities.PTransformActivity |
public CenterBoundsOnPoint ( float x, float y ) : bool | ||
x | float | /// The x coordinate of the point on which to center the bounds, in local coordinates. /// |
y | float | /// The y coordinate of the point on which to center the bounds, in local coordinates. /// |
Результат | bool |
public CenterFullBoundsOnPoint ( float x, float y ) : void | ||
x | float | /// The x coordinate of the point on which to center the bounds, in parent coordinates. /// |
y | float | /// The y coordinate of the point on which to center the bounds, in parent coordinates. /// |
Результат | void |
public ComputeFullBounds ( ) : |
||
Результат |
public FindIntersectingNodes ( |
||
fullBounds | /// The bounds to check for intersection, in parent coordinates. /// | |
results | UMD.HCIL.Piccolo.Util.PNodeList | /// The resulting list of nodes. /// |
Результат | void |
protected FireChildPropertyChangedEvent ( UMD.HCIL.Piccolo.Event.PPropertyEventArgs e, object propertyKey, int propertyCode ) : void | ||
e | UMD.HCIL.Piccolo.Event.PPropertyEventArgs | The property change event to forward. |
propertyKey | object | The key associated with the property that changed. |
propertyCode | int | The code that identifies the property that changed. |
Результат | void |
protected FirePropertyChangedEvent ( object propertyKey, int propertyCode, Object oldValue, Object newValue ) : void | ||
propertyKey | object | The key associated with the property that changed. |
propertyCode | int | The code that identifies the property that changed. |
oldValue | Object | The old value of the property. |
newValue | Object | The new value of the property. |
Результат | void |
public FullIntersects ( |
||
bounds | /// The bounds to test for intersection (specified in the parent's coordinate system). /// | |
Результат | bool |
public FullPaint ( UMD.HCIL.Piccolo.Util.PPaintContext paintContext ) : void | ||
paintContext | UMD.HCIL.Piccolo.Util.PPaintContext | The paint context to use for painting this node. |
Результат | void |
public FullPick ( UMD.HCIL.Piccolo.Util.PPickPath pickPath ) : bool | ||
pickPath | UMD.HCIL.Piccolo.Util.PPickPath | The pick path to add the node to if its picked. |
Результат | bool |
public GetAllNodes ( PNodeFilter filter, UMD.HCIL.Piccolo.Util.PNodeList results ) : UMD.HCIL.Piccolo.Util.PNodeList | ||
filter | PNodeFilter | The filter used to determine the subset. |
results | UMD.HCIL.Piccolo.Util.PNodeList | The list used to collect the subset; can be null. |
Результат | UMD.HCIL.Piccolo.Util.PNodeList |
public GetChild ( int index ) : |
||
index | int | The index of the desired child. |
Результат |
public GetObjectData ( |
||
info | The SerializationInfo to write to. | |
context | The streaming context of this serialization operation. | |
Результат | void |
protected GetPropertyHandlers ( object propertyKey ) : PPropertyEventHandler | ||
propertyKey | object | The key for which to find associated handlers. |
Результат | PPropertyEventHandler |
public GlobalToLocal ( |
||
point | The point in global coordinates to be transformed. | |
Результат |
public GlobalToLocal ( |
||
rectangle | The rectangle in global coordinates to be transformed. | |
Результат |
public GlobalToLocal ( |
||
size | The size in global coordinates to be transformed. | |
Результат |
protected HandleEvent ( |
||
e | The arguments for this input event. | |
handler | PInputEventHandler | The delegate to dispatch this event to. |
Результат | void |
public IndexOfChild ( |
||
child | The child whose index is desired. | |
Результат | int |
protected InternalUpdateBounds ( float x, float y, float width, float height ) : void | ||
x | float | The new x coordinate of the bounds. |
y | float | The new y coordinate of the bounds. |
width | float | The new width of the bounds. |
height | float | The new height of the bounds. |
Результат | void |
public Intersects ( |
||
bounds | The bounds to test for intersection. | |
Результат | bool |
public IsAncestorOf ( |
||
node | A possible descendent node. | |
Результат | bool |
public IsDescendentOf ( |
||
node | A possible descendent node. | |
Результат | bool |
public IsOpaque ( |
||
boundary | ||
Результат | bool |
static public Lerp ( float t, float a, float b ) : float | ||
t | float | The variable 'time' parameter. |
a | float | The starting value. |
b | float | The ending value. |
Результат | float |
public LocalToGlobal ( |
||
point | The point in local coordinate system to be transformed. | |
Результат |
public LocalToGlobal ( |
||
rectangle | The rectangle in local coordinate system to be transformed. | |
Результат |
public LocalToGlobal ( |
||
size | The size in local coordinate system to be transformed. | |
Результат |
public LocalToParent ( |
||
point | The point in local coordinate system to be transformed. | |
Результат |
public LocalToParent ( |
||
rectangle | The rectangle in local coordinate system to be transformed. | |
Результат |
public LocalToParent ( |
||
size | The size in local coordinate system to be transformed. | |
Результат |
public MoveInBackOf ( |
||
sibling | The sibling to move behind. | |
Результат | void |
public MoveInFrontOf ( |
||
sibling | The sibling to move in front of. | |
Результат | void |
public OffsetBy ( float dx, float dy ) : void | ||
dx | float | The amount to add to the x-offset for this node. |
dy | float | The amount to add to the y-offset for this node. |
Результат | void |
public OnClick ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnDoubleClick ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnDragDrop ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnDragEnter ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnDragLeave ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnDragOver ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
protected OnFullBoundsInvalidated ( ) : void | ||
Результат | void |
public OnGotFocus ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnKeyDown ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnKeyPress ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnKeyUp ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnLostFocus ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnMouseDown ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnMouseDrag ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnMouseEnter ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnMouseLeave ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnMouseMove ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnMouseUp ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
public OnMouseWheel ( |
||
e | A PInputEventArgs that contains the event data | |
Результат | void |
protected PNode ( |
||
info | The SerializationInfo to read from. | |
context | The StreamingContext of this serialization operation. | |
Результат | System |
protected Paint ( UMD.HCIL.Piccolo.Util.PPaintContext paintContext ) : void | ||
paintContext | UMD.HCIL.Piccolo.Util.PPaintContext | The paint context to use for painting this node. |
Результат | void |
protected PaintAfterChildren ( UMD.HCIL.Piccolo.Util.PPaintContext paintContext ) : void | ||
paintContext | UMD.HCIL.Piccolo.Util.PPaintContext | /// The paint context to use for painting after the children are painted. /// |
Результат | void |
public ParentToLocal ( |
||
point | The point in parent's coordinate system to be transformed. | |
Результат |
public ParentToLocal ( |
||
rectangle | The rectangle in parent's coordinate system to be transformed. | |
Результат |
public ParentToLocal ( |
||
size | The size in parent's coordinate system to be transformed. | |
Результат |
protected Pick ( UMD.HCIL.Piccolo.Util.PPickPath pickPath ) : bool | ||
pickPath | UMD.HCIL.Piccolo.Util.PPickPath | The pick path used for the pick operation. |
Результат | bool |
protected PickAfterChildren ( UMD.HCIL.Piccolo.Util.PPickPath pickPath ) : bool | ||
pickPath | UMD.HCIL.Piccolo.Util.PPickPath | The pick path used for the pick operation. |
Результат | bool |
public Position ( |
||
srcPt | ||
destPt | ||
destBounds | ||
millis | int | |
Результат | void |
public RemoveChild ( |
||
child | The child to remove. | |
Результат |
public RemoveChild ( int index ) : |
||
index | int | The index of the child to remove. |
Результат |
protected RemoveChildren ( ICollection childrenNodes ) : void | ||
childrenNodes | ICollection | /// The collection of children to remove. /// |
Результат | void |
public RemoveChildren ( UMD.HCIL.Piccolo.Util.PNodeList childrenNodes ) : void | ||
childrenNodes | UMD.HCIL.Piccolo.Util.PNodeList | The list of children to remove. |
Результат | void |
public RemoveInputEventListener ( PInputEventListener listener ) : void | ||
listener | PInputEventListener | The input listener to remove. |
Результат | void |
public RepaintFrom ( |
||
bounds | /// The bounds to repaint, specified in the local coordinate system. /// | |
childOrThis | /// If childOrThis does not equal this then this node's matrix will /// be applied to the bounds paramater. /// | |
Результат | void |
public Reparent ( |
||
newParent | The new parent of this node. | |
Результат | void |
public ReplaceWith ( |
||
replacementNode | /// The new node that replaces the current node in the scene graph tree. /// | |
Результат | void |
public RotateBy ( float theta ) : void | ||
theta | float | The rotation in degrees. |
Результат | void |
public RotateBy ( float theta, |
||
theta | float | The amount to rotate by in degrees. |
point | The point to rotate about. | |
Результат | void |
public RotateBy ( float theta, float x, float y ) : void | ||
theta | float | The amount to rotate by in degrees |
x | float | The x-coordinate of the point to rotate about. |
y | float | The y-coordinate of the point to rotate about. |
Результат | void |
public RotateInPlace ( float theta ) : void | ||
theta | float | The amount to rotate by in degrees. |
Результат | void |
protected ScaleAndDraw ( |
||
g | The Graphics context to use when rendering the node. | |
displayRect | The imageable area. | |
Результат | void |
public ScaleBy ( float scale ) : void | ||
scale | float | The amount to scale by. |
Результат | void |
public ScaleBy ( float scale, |
||
scale | float | The amount to scale by. |
point | The point to scale about. | |
Результат | void |
public ScaleBy ( float scale, float x, float y ) : void | ||
scale | float | The amount to scale by. |
x | float | The x-coordinate of the point to scale about. |
y | float | The y-coordinate of the point to scale about. |
Результат | void |
public SetBounds ( float x, float y, float width, float height ) : bool | ||
x | float | The new x coordinate of the bounds. |
y | float | The new y coordinate of the bounds. |
width | float | The new width of the bounds. |
height | float | The new height of the bounds. |
Результат | bool |
public SetOffset ( |
||
p | /// The offset, specified in the parent coordinate system. /// | |
Результат | void |
public SetOffset ( float x, float y ) : void | ||
x | float | /// The x amount of the offset, specified in the parent coordinate system. /// |
y | float | /// The y amount of the offset, specified in the parent coordinate system. /// |
Результат | void |
public ToImage ( Image image, |
||
image | Image | The image to render this node into. |
backgroundBrush | /// The brush used to render the background of the image. /// | |
Результат | Image |
public ToImage ( int width, int height, |
||
width | int | The desired width of the image, in pixels. |
height | int | The desired height of the image, in pixels. |
backgroundBrush | /// The brush used to render the background of the image. /// | |
Результат | Image |
public ToPickPath ( ) : UMD.HCIL.Piccolo.Util.PPickPath | ||
Результат | UMD.HCIL.Piccolo.Util.PPickPath |
public ToPickPath ( UMD.HCIL.Piccolo.PCamera aCamera, |
||
aCamera | UMD.HCIL.Piccolo.PCamera | The camera to use when creating the pick path. |
pickBounds | The pick bounds to use when creating the pick path. | |
Результат | UMD.HCIL.Piccolo.Util.PPickPath |
public TransformBy ( UMD.HCIL.Piccolo.Util.PMatrix matrix ) : void | ||
matrix | UMD.HCIL.Piccolo.Util.PMatrix | The transform to apply. |
Результат | void |
public TranslateBy ( float dx, float dy ) : void | ||
dx | float | The amount to translate in the x direction. |
dy | float | The amount to translate in the y direction. |
Результат | void |
protected printDocument_PrintPage ( object sender, System.Drawing.Printing.PrintPageEventArgs e ) : void | ||
sender | object | The source of the PrintPage event. |
e | System.Drawing.Printing.PrintPageEventArgs | The PrintPageEventArgs. |
Результат | void |
protected static object EVENT_KEY_CLICK | ||
Результат | object |
protected static object EVENT_KEY_DOUBLECLICK | ||
Результат | object |
protected static object EVENT_KEY_DRAGDROP | ||
Результат | object |
protected static object EVENT_KEY_DRAGENTER | ||
Результат | object |
protected static object EVENT_KEY_DRAGLEAVE | ||
Результат | object |
protected static object EVENT_KEY_DRAGOVER | ||
Результат | object |
protected static object EVENT_KEY_GOTFOCUS | ||
Результат | object |
protected static object EVENT_KEY_KEYDOWN | ||
Результат | object |
protected static object EVENT_KEY_KEYPRESS | ||
Результат | object |
protected static object EVENT_KEY_KEYUP | ||
Результат | object |
protected static object EVENT_KEY_LOSTFOCUS | ||
Результат | object |
protected static object EVENT_KEY_MOUSEDOWN | ||
Результат | object |
protected static object EVENT_KEY_MOUSEDRAG | ||
Результат | object |
protected static object EVENT_KEY_MOUSEENTER | ||
Результат | object |
protected static object EVENT_KEY_MOUSELEAVE | ||
Результат | object |
protected static object EVENT_KEY_MOUSEMOVE | ||
Результат | object |
protected static object EVENT_KEY_MOUSEUP | ||
Результат | object |
protected static object EVENT_KEY_MOUSEWHEEL | ||
Результат | object |
public FullBoundsInvalidatedDelegate FullBoundsInvalidated | ||
Результат | FullBoundsInvalidatedDelegate |
protected static object PROPERTY_KEY_BOUNDS | ||
Результат | object |
protected static object PROPERTY_KEY_BRUSH | ||
Результат | object |
protected static object PROPERTY_KEY_CHILDREN | ||
Результат | object |
protected static object PROPERTY_KEY_CHILDRENPICKABLE | ||
Результат | object |
protected static object PROPERTY_KEY_FULLBOUNDS | ||
Результат | object |
protected static object PROPERTY_KEY_PARENT | ||
Результат | object |
protected static object PROPERTY_KEY_PICKABLE | ||
Результат | object |
protected static object PROPERTY_KEY_TAG | ||
Результат | object |
protected static object PROPERTY_KEY_TRANSFORM | ||
Результат | object |
protected static object PROPERTY_KEY_VISIBLE | ||
Результат | object |
public PaintInvalidatedDelegate PaintInvalidated | ||
Результат | PaintInvalidatedDelegate |