diff -r 598768200cfa -r 0b048b6bb6f4 xlinkobj.h --- a/xlinkobj.h Mon Apr 18 06:37:48 2005 +0000 +++ b/xlinkobj.h Thu Apr 21 19:14:38 2005 +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;