diff -r f688a9913724 -r 3492af261af2 xlinkobj.h --- a/xlinkobj.h Mon Apr 18 06:17:00 2005 +0000 +++ b/xlinkobj.h Tue Apr 11 14:34:14 2006 +0000 @@ -17,6 +17,9 @@ void setEnd (BranchObj*); void setEnd (QPoint); void setColor(QColor); + QColor getColor(); + void setWidth (int); + int getWidth (); bool activate (); // Sets pointers in branchObjects void deactivate(); // removes those pointers bool isUsed(); // true, if at least on branch uses it @@ -30,8 +33,8 @@ private: static int arrowSize; - static QColor defXLinkColor; - QColor xLinkColor; + QColor color; + int width; QCanvasLine *line; QCanvasPolygon *poly; BranchObj *beginBranch;