summaryrefslogtreecommitdiff
path: root/src/data/edge.h
blob: 7df899fd24796efd01c32bc3f5b24fad555972a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#ifndef EDGE_H
#define EDGE_H

#include "graphelementdata.h"
#include "node.h"

#include <QObject>
#include <QPointF>

class Edge : public QObject
{
    Q_OBJECT
public:
    explicit Edge(Node *s, Node *t, QObject *parent = 0);
    ~Edge();
    Edge *copy(QMap<Node *, Node *> *nodeTable = 0);

    Node *source() const;
    Node *target() const;

    bool isSelfLoop();
    bool isStraight();

    GraphElementData *data() const;
    void setData(GraphElementData *data);

    QString sourceAnchor() const;
    void setSourceAnchor(const QString &sourceAnchor);

    QString targetAnchor() const;
    void setTargetAnchor(const QString &targetAnchor);

    Node *edgeNode() const;
    void setEdgeNode(Node *edgeNode);
    bool hasEdgeNode();

    void updateControls();
    void setAttributesFromData();
    void updateData();

    QPointF head() const;
    QPointF tail() const;
    QPointF cp1() const;
    QPointF cp2() const;
    QPointF mid() const;

    int bend() const;
    int inAngle() const;
    int outAngle() const;
    float weight() const;
    bool basicBendMode() const;
    float cpDist() const;

    void setBasicBendMode(bool mode);
    void setBend(int bend);
    void setInAngle(int inAngle);
    void setOutAngle(int outAngle);
    void setWeight(float weight);

    int tikzLine() const;
    void setTikzLine(int tikzLine);

signals:

public slots:

private:
    QString _sourceAnchor;
    QString _targetAnchor;

    // owned
    Node *_edgeNode;
    GraphElementData *_data;

    // referenced
    Node *_source;
    Node *_target;

    bool _dirty;
    bool _basicBendMode;
    int _bend;
    int _inAngle;
    int _outAngle;
    float _weight;
    float _cpDist;

    QPointF _head;
    QPointF _tail;
    QPointF _cp1;
    QPointF _cp2;
    QPointF _mid;

    int _tikzLine;
};

#endif // EDGE_H