-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnodeedgeparent.h
38 lines (32 loc) · 1.1 KB
/
nodeedgeparent.h
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
#ifndef NODEEDGEPARENT_H
#define NODEEDGEPARENT_H
#include <QString>
#include <QGraphicsItem>
#include <QGraphicsScene>
#include <QGraphicsSceneMouseEvent>
#include <QDebug>
#include "jsonfuncs.h"
//#define DEBUG_NODE_EDGE
class GraphWidget;
// абстрактный класс
class NodeEdgeParent : public QGraphicsItem
{
public:
NodeEdgeParent(GraphWidget *graphWidget, int id, QString text = nullptr);
enum { Type = UserType + 1 };
int type() const override { return Type; }
int id() const;
virtual void setTextContent(QString text);
virtual QString textContent() const { return _textContent; }
virtual void writeToJson(QJsonObject &json) const;
virtual void readFromJson(const QJsonObject &json);
void mousePressEvent(QGraphicsSceneMouseEvent *event) override;
GraphWidget *graph;
protected:
QString _textContent;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
int _id;
// область перерисовки с запасом
QRectF enoughBoundingRect(QRectF rect) const;
};
#endif // NODEEDGEPARENT_H