Class LinkingBaseTool
This abstract class is the base class for the Linking
Namespace: Northwoods.Go.Tools
Assembly: Northwoods.GoDiagram.WinForms.dll
Syntax
public abstract class LinkingBaseTool : Tool
Remarks
This class includes properties for defining and accessing any temporary nodes and temporary link that are used during any linking operation, as well as access to the existing diagram's nodes and link (if any) that are involved with the linking operation.
For a general discussion of link routing, see: Introduction to Links, Introduction to Link Labels, and Introduction to Link Connection Points. For customizing the linking tools, see Introduction to the Linking Tools. For customizing the reshaping of Links, see Introduction to the LinkReshapingTool. For a general discussion of validation, see Introduction to Validation.
Constructors
LinkingBaseTool()
Don't construct this directly -- this is an abstract class.
Declaration
public LinkingBaseTool()
Properties
IsForwards
Gets whether the linking operation is in the forwards direction, connecting from the "from" port to the "to" port.
Declaration
public bool IsForwards { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsUnconnectedLinkValid
Gets or sets whether it is valid to have partly or completely unconnected links.
Declaration
public bool IsUnconnectedLinkValid { get; set; }
Property Value
Type | Description |
---|---|
bool |
Remarks
The default value is false -- the user cannot draw or reconnect a link to "nowhere". Setting this property does not raise any events.
LinkingCursor
Gets or sets the cursor used during the linking or relinking operation.
Declaration
public string LinkingCursor { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
The default value is "pointer".
LinkValidation
Gets or sets a predicate that determines whether or not a new link between two ports would be valid.
Declaration
public Func<Node, GraphObject, Node, GraphObject, Link, bool> LinkValidation { get; set; }
Property Value
Type | Description |
---|---|
Func<Node, Graph |
Remarks
This predicate is called in addition to the normal link checking performed by Is
For a more general discussion of validation, see Introduction to Validation.
The function, if supplied, must not have any side-effects.
OriginalFromNode
Gets or sets the original Node from which the new link is being drawn
or from which the Original
Declaration
public Node OriginalFromNode { get; set; }
Property Value
Type | Description |
---|---|
Node |
Remarks
Setting this property does not raise any events.
OriginalFromPort
Gets or sets the Graph
Declaration
public GraphObject OriginalFromPort { get; set; }
Property Value
Type | Description |
---|---|
Graph |
Remarks
Setting this property does not raise any events.
OriginalLink
Gets or sets the original Link being reconnected by the Relinking
Declaration
public Link OriginalLink { get; set; }
Property Value
Type | Description |
---|---|
Link |
Remarks
Setting this property does not raise any events.
OriginalToNode
Gets or sets the original Node to which the new link is being drawn
or to which the Original
Declaration
public Node OriginalToNode { get; set; }
Property Value
Type | Description |
---|---|
Node |
Remarks
Setting this property does not raise any events.
OriginalToPort
Gets or sets the Graph
Declaration
public GraphObject OriginalToPort { get; set; }
Property Value
Type | Description |
---|---|
Graph |
Remarks
Setting this property does not raise any events.
PortGravity
Gets or sets the distance at which link snapping occurs.
Declaration
public double PortGravity { get; set; }
Property Value
Type | Description |
---|---|
double |
Remarks
The default value is 100.0. The value must be non-negative. Setting this property does not raise any events.
PortTargeted
Gets or sets a function that is called as the tool targets the nearest valid port.
Declaration
public Action<Node, GraphObject, Node, GraphObject, bool> PortTargeted { get; set; }
Property Value
Type | Description |
---|---|
Action<Node, Graph |
Remarks
The first two arguments specify the port by providing the Node that it is in
and the Graph
When there is no valid port within the Port
The function, if supplied, must not add or remove any links or nodes or port objects, nor may it change the validity of any potential link connection.
TargetPort
Gets or sets a proposed Graph
Declaration
public GraphObject TargetPort { get; set; }
Property Value
Type | Description |
---|---|
Graph |
Remarks
Whether this is a "to" port or a "from" port depends on the direction
(Is
This is set when the mouse is being dragged and when a mouse-up event occurs
with the result of a call to Find
TemporaryFromNode
Gets or sets the temporary Node at the "from" end of the Temporary
Declaration
public Node TemporaryFromNode { get; set; }
Property Value
Type | Description |
---|---|
Node |
Remarks
Setting this property does not raise any events.
TemporaryFromPort
Gets or sets the Graph
Declaration
public GraphObject TemporaryFromPort { get; set; }
Property Value
Type | Description |
---|---|
Graph |
Remarks
Setting this property does not raise any events.
TemporaryLink
Gets or sets the temporary Link that is shown while the user is drawing or reconnecting a link.
Declaration
public Link TemporaryLink { get; set; }
Property Value
Type | Description |
---|---|
Link |
Remarks
Setting this property does not raise any events.
TemporaryToNode
Gets or sets the temporary Node at the "to" end of the Temporary
Declaration
public Node TemporaryToNode { get; set; }
Property Value
Type | Description |
---|---|
Node |
Remarks
Setting this property does not raise any events.
TemporaryToPort
Gets or sets the Graph
Declaration
public GraphObject TemporaryToPort { get; set; }
Property Value
Type | Description |
---|---|
Graph |
Remarks
Setting this property does not raise any events.
Methods
CopyPortProperties(Node, GraphObject, Node, GraphObject, bool)
Make a temporary port look and act like a real one.
Declaration
protected virtual void CopyPortProperties(Node realnode, GraphObject realport, Node tempnode, GraphObject tempport, bool toend)
Parameters
Type | Name | Description |
---|---|---|
Node | realnode | |
Graph |
realport | |
Node | tempnode | |
Graph |
tempport | |
bool | toend |
Remarks
This is called by Do
If the Port
DoMouseMove()
Mouse movement results in a temporary node moving to where a valid target port is located, or to where the mouse is if there is no valid target port nearby.
Declaration
public override void DoMouseMove()
Overrides
Remarks
This calls Find
This method may be overridden, but we recommend that you call this base method.
FindTargetPort(bool)
Find a port with which the user could complete a valid link.
Declaration
public virtual GraphObject FindTargetPort(bool toend)
Parameters
Type | Name | Description |
---|---|---|
bool | toend | true if looking for a "to" port. |
Returns
Type | Description |
---|---|
Graph |
a valid port, or null if no such port is near the current mouse point
within the Port |
Remarks
This finds objects near to the current mouse point for which a valid link connection is possible.
For each port element found, this calls Is
This method may be overridden, but we recommend that you call this base method. Please read the Introduction page on Extensions for how to override methods and how to call this base method.
IsInSameNode(GraphObject, GraphObject)
This predicate is true if both argument ports are in the same Node.
Declaration
public virtual bool IsInSameNode(GraphObject fromport, GraphObject toport)
Parameters
Type | Name | Description |
---|---|---|
Graph |
fromport | |
Graph |
toport |
Returns
Type | Description |
---|---|
bool |
Remarks
This is called by Is
This method may be overridden, but we recommend that you call this base method. It is rare that you will want to override this method. Please read the Introduction page on Extensions for how to override methods and how to call this base method.
IsLinked(GraphObject, GraphObject)
This predicate is true if there is a link in the diagram going from the given port to the given port.
Declaration
public virtual bool IsLinked(GraphObject fromport, GraphObject toport)
Parameters
Type | Name | Description |
---|---|---|
Graph |
fromport | |
Graph |
toport |
Returns
Type | Description |
---|---|
bool |
Remarks
This is called by Is
This method may be overridden, but we recommend that you call this base method. It is rare that you will want to override this method. Please read the Introduction page on Extensions for how to override methods and how to call this base method.
IsValidCycle(Node, Node, Link)
Checks whether a proposed link would be valid according to Valid
Declaration
public virtual bool IsValidCycle(Node from, Node to, Link ignore = null)
Parameters
Returns
Type | Description |
---|---|
bool |
Remarks
This does not distinguish between different ports on a node, so this method does not need to take port arguments.
This is called by Is
This method may be overridden, but we recommend that you call this base method. It is rare that you will want to override this method. Please read the Introduction page on Extensions for how to override methods and how to call this base method.
IsValidFrom(Node, GraphObject)
This predicate is true if it is permissible to connect a link from a given node/port.
Declaration
public virtual bool IsValidFrom(Node fromnode, GraphObject fromport)
Parameters
Type | Name | Description |
---|---|---|
Node | fromnode | |
Graph |
fromport |
Returns
Type | Description |
---|---|
bool | False if the node is in a Layer that does not Allow |
Remarks
This is called by Is
For a more general discussion of validation, see Introduction to Validation.
This method may be overridden, but we recommend that you call this base method. Please read the Introduction page on Extensions for how to override methods and how to call this base method.
IsValidLink(Node, GraphObject, Node, GraphObject)
This predicate should be true when it is logically valid to connect a new link from one node/port to another node/port.
Declaration
public virtual bool IsValidLink(Node fromnode, GraphObject fromport, Node tonode, GraphObject toport)
Parameters
Type | Name | Description |
---|---|---|
Node | fromnode | the "from" Node. |
Graph |
fromport | the "from" Graph |
Node | tonode | the "to" Node. |
Graph |
toport | the "to" Graph |
Returns
Type | Description |
---|---|
bool | False if Is |
Remarks
When this is called by the Relinking
For a more general discussion of validation, see Introduction to Validation.
This method may be overridden, although it is usually much easier to just set Link
IsValidTo(Node, GraphObject)
This predicate is true if it is permissible to connect a link to a given node/port.
Declaration
public virtual bool IsValidTo(Node tonode, GraphObject toport)
Parameters
Type | Name | Description |
---|---|---|
Node | tonode | |
Graph |
toport |
Returns
Type | Description |
---|---|
bool | False if the node is in a Layer that does not Allow |
Remarks
This is called by Is
For a more general discussion of validation, see Introduction to Validation.
This method may be overridden, but we recommend that you call this base method. Please read the Introduction page on Extensions for how to override methods and how to call this base method.
SetNoTargetPortProperties(Node, GraphObject, bool)
Reset a temporary port's properties to neutral values when there is no target port.
Declaration
protected virtual void SetNoTargetPortProperties(Node tempnode, GraphObject tempport, bool toend)
Parameters
Type | Name | Description |
---|---|---|
Node | tempnode | |
Graph |
tempport | |
bool | toend |
Remarks
This is called by Do
If the Port