Rogue Wave Views 5.6 |
Rogue Wave Views |
Rogue Wave Views Documentation Home |
An interface used to define complex requirements concerning the connection of the links to the different sides of the nodes. More...
#include <ilviews/layout/orthlink.h>
Public Member Functions | |
virtual IlBoolean | accept (IlvGraphModel *graphModel, IlAny link, IlBoolean origin, IlAny node, IlUInt side)=0 |
Allows or prohibits the connection of link on a given side of the node node. More... | |
An interface used to define complex requirements concerning the connection of the links to the different sides of the nodes.
Library: ilvorthlink
The IlvNodeSideFilter
can be used by the link layout algorithms to provide the user the capability to allow or prohibit the links to be connected on given sides (top/bottom/right/left) of the nodes.
|
pure virtual |
Allows or prohibits the connection of link on a given side of the node node.
Returns IlTrue
if the connection is allowed and IlFalse
otherwise.
This method can be called by link layout algorithms. You can implement this method in order to define complex requirements concerning the connection of the links to the different sides of nodes. For example, if you want all links to be connected to any side except the top side of the nodes, you could use:
return (side != IlvTop);
graphModel | The graph model to which the node belongs. |
link | The link to be connected to the node. |
origin | If IlTrue , the method determines whether the link origin can be connected. Otherwise, the method determines if the link destination can be connected. |
node | The node. |
side | The side of the node. Valid values are IlvTop , IlvBottom , IlvLeft , and IlvRight . |
IlTrue
when the specified extremity of link can be connected on node on the side defined by the argument side. © Copyright 2012, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.