diff -r f688a9913724 -r 1f2c27608b4f xlinkobj.h --- a/xlinkobj.h Mon Apr 18 06:17:00 2005 +0000 +++ b/xlinkobj.h Mon Mar 27 20:21:58 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;