00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include <QtGui>
00023
00024 #include "sinclink.h"
00025
00026 SincLink::SincLink(Node *fromNode, QString fromProp, Node *toNode, QString toProp, QGraphicsItem * parent, QGraphicsScene * scene):
00027 Link(fromNode, fromProp, toNode, toProp, parent, scene)
00028 {
00029 setColor(QColor(255, 127, 0));
00030 QPen dotPen = pen();
00031 dotPen.setStyle(Qt::DashDotLine);
00032 setPen(dotPen);
00033 }
00034