This repository was archived by the owner on Apr 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathellipseitem.cpp
72 lines (56 loc) · 1.59 KB
/
ellipseitem.cpp
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
#include <QtWidgets>
#include "ellipseitem.h"
#include "arrow.h"
EllipseItem::EllipseItem(QMenu *contextMenu, int id, QGraphicsItem *parent) : QGraphicsPolygonItem(parent)
{
myContextMenu = contextMenu;
myId = id;
QPainterPath path;
path.addEllipse(-17, -17, 35, 35);
myPolygon = path.toFillPolygon();
setPolygon(myPolygon);
setFlag(QGraphicsItem::ItemIsMovable, true);
setFlag(QGraphicsItem::ItemIsSelectable, true);
}
void EllipseItem::removeArrow(Arrow *arrow) {
int index = arrows.indexOf(arrow);
if(index != -1)
arrows.removeAt(index);
}
void EllipseItem::removeArrows() {
foreach(Arrow *arrow, arrows) {
arrow->getStartItem()->removeArrow(arrow);
arrow->getEndItem()->removeArrow(arrow);
scene()->removeItem(arrow);
delete arrow;
}
}
void EllipseItem::addArrow(Arrow *arrow) {
arrows.append(arrow);
}
QPixmap EllipseItem::image() const
{
QPixmap pixmap(250, 250);
pixmap.fill(Qt::transparent);
QPainter painter(&pixmap);
painter.setPen(QPen(Qt::black, 8));
painter.translate(125, 125);
painter.drawPolyline(myPolygon);
return pixmap;
}
void EllipseItem::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
{
scene()->clearSelection();
setSelected(true);
myContextMenu->exec(event->screenPos());
}
QVariant EllipseItem::itemChange(GraphicsItemChange change,
const QVariant &value)
{
if (change == QGraphicsItem::ItemPositionChange) {
foreach (Arrow *arrow, arrows) {
arrow->updatePosition();
}
}
return value;
}