You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
569 B
34 lines
569 B
#ifndef EDGE_H
|
|
#define EDGE_H
|
|
|
|
#include <QtGui/QGraphicsItem>
|
|
|
|
class Node;
|
|
|
|
class Edge : public QGraphicsItem
|
|
{
|
|
public:
|
|
Edge(Node *sourceNode, Node *destNode);
|
|
|
|
Node *sourceNode() const;
|
|
Node *destNode() const;
|
|
|
|
void adjust();
|
|
|
|
enum { Type = UserType + 2 };
|
|
int type() const { return Type; }
|
|
|
|
protected:
|
|
QRectF boundingRect() const;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
|
|
|
|
private:
|
|
Node *source, *dest;
|
|
|
|
QPointF sourcePoint;
|
|
QPointF destPoint;
|
|
qreal arrowSize;
|
|
};
|
|
|
|
#endif
|