summaryrefslogtreecommitdiff
path: root/src/data/edge.h
blob: 5d26b3ed59e9b7cedffb06bf9f4d344229836012 (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
    TikZiT - a GUI diagram editor for TikZ
    Copyright (C) 2018 Aleks Kissinger

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.
*/

#ifndef EDGE_H
#define EDGE_H

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

#include <QObject>
#include <QPointF>

class Edge : public QObject
{
    Q_OBJECT
public:
    explicit Edge(Node *s, Node *t, QObject *parent = 0);
    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;
	QPointF headTangent() const;
	QPointF tailTangent() 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);


	void attachStyle();
	QString styleName() const;
	void setStyleName(const QString & styleName);
    Style *style() const;

signals:

public slots:

private:
	QPointF bezierTangent(float start, float end) const;
    QString _sourceAnchor;
    QString _targetAnchor;

    // owned
    Node *_edgeNode;
    GraphElementData *_data;

    // referenced
    Node *_source;
    Node *_target;


    Style *_style;

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

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

	QPointF _headTangent;
	QPointF _tailTangent;

    int _tikzLine;
};

#endif // EDGE_H