diff options
| author | mjwybrow <mjwybrow@users.sourceforge.net> | 2006-02-14 00:36:28 +0000 |
|---|---|---|
| committer | mjwybrow <mjwybrow@users.sourceforge.net> | 2006-02-14 00:36:28 +0000 |
| commit | fa668afcbd7dc12ef748e0d0b4fd62fb9441c13e (patch) | |
| tree | dd81610ccafce158141f5e63505aeac2c4fe3b6e /src/libavoid/connector.h | |
| parent | extending the font selector preview string (patch #1240559 by cmarqu) (diff) | |
| download | inkscape-fa668afcbd7dc12ef748e0d0b4fd62fb9441c13e.tar.gz inkscape-fa668afcbd7dc12ef748e0d0b4fd62fb9441c13e.zip | |
* src/graphlayout/graphlayout.cpp, src/conn-avoid-ref.cpp,
src/conn-avoid-ref.h, src/libavoid/connector.cpp,
src/libavoid/connector.h:
Change the behaviour and naming of some connector querying code
after feedback from Tim Dwyer in implementing graph drawing
functionality.
(bzr r136)
Diffstat (limited to 'src/libavoid/connector.h')
| -rw-r--r-- | src/libavoid/connector.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/libavoid/connector.h b/src/libavoid/connector.h index 1fd4255a8..a08b9ab8a 100644 --- a/src/libavoid/connector.h +++ b/src/libavoid/connector.h @@ -64,7 +64,9 @@ class ConnRef void makePathInvalid(void); friend void markConnectors(ShapeRef *shape); - friend void attachedToShape(IntList &conns, + friend void attachedShapes(IntList &shapes, + const unsigned int shapeId, const unsigned int type); + friend void attachedConns(IntList &conns, const unsigned int shapeId, const unsigned int type); static const unsigned int runningTo; @@ -91,7 +93,9 @@ class ConnRef extern ConnRefList connRefs; extern void callbackAllInvalidConnectors(void); -extern void attachedToShape(IntList &conns, const unsigned int shapeId, +extern void attachedConns(IntList &conns, const unsigned int shapeId, + const unsigned int type); +extern void attachedShapes(IntList &shapes, const unsigned int shapeId, const unsigned int type); } |
