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 pathmainscene.cpp
163 lines (143 loc) · 5.24 KB
/
mainscene.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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/****************************************************************************
** Aplicação utilizando algoritmos genéticos, foi utilizada como critério
** de avaliação para a disciplina de Inteligẽncia Artificial
**
** Ciência da Computação
** Universidade Federal do Tocantins - UFT/Palmas
**
** MapColorGA foi desenvolvido para a demonstração de algoritmos genéticos
** para resolver o problema de coloração de grafos.
** A parte interativa foi baseada no exemplo que a Nokia disponibiliza
** juntamente com o Qt e pode ser acessada neste link:
** http://doc.qt.nokia.com/4.7-snapshot/graphicsview-diagramscene.html
**
** Peço se você for utilizar este software mantenha o nome dos autores.
** Se for alterá-lo, adicione seu nome e mande um e-mail para
** [email protected] descrevendo as alterações.
**
**
** Desenvolvido por:
** Herinson Rodrigues
** Marcos Raylan
**
** Contato: Herinson Rodrigues ([email protected])
** Marcos Raylan ([email protected])
**
**
****************************************************************************/
#include <QtWidgets>
#include "mainscene.h"
#include "arrow.h"
#include <iostream>
multimap<int, int> MainScene::myAdjMatrix = multimap<int, int>();
MainScene::MainScene(QMenu *itemMenu, QObject *parent)
: QGraphicsScene(parent)
{
totalVertices = 0;
totalEdges = 0;
myItemMenu = itemMenu;
myMode = MoveItem;
line = 0;
myItemColor = Qt::white;
myAdjMatrix.clear();
}
void MainScene::setMode(Mode mode)
{
myMode = mode;
}
bool MainScene::isItemChange(int type)
{
foreach (QGraphicsItem *item, selectedItems()) {
if (item->type() == type)
return true;
}
return false;
}
void MainScene::setItemColor(int numColor)
{
switch(numColor) {
case 0: myItemColor = QColor(Qt::red); break;
case 1: myItemColor = QColor(Qt::blue); break;
case 2: myItemColor = QColor(Qt::yellow); break;
case 3: myItemColor = QColor(Qt::green); break;
case 4: myItemColor = QColor(Qt::magenta); break;
case 5: myItemColor = QColor(Qt::cyan); break;
case 6: myItemColor = QColor(Qt::lightGray); break;
case 7: myItemColor = QColor(Qt::darkYellow); break;
case 8: myItemColor = QColor(160, 0, 0); break;
case 9: myItemColor = QColor(Qt::black); break;
case -1: myItemColor = QColor(Qt::white); break;
default: break;
}
if (isItemChange(EllipseItem::Type)) {
EllipseItem *item = qgraphicsitem_cast<EllipseItem *>(selectedItems().first());
item->setBrush(myItemColor);
}
}
void MainScene::mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent)
{
if (mouseEvent->button() != Qt::LeftButton)
return;
EllipseItem *item;
switch (myMode) {
case InsertItem:
item = new EllipseItem(myItemMenu, totalVertices);
item->setBrush(myItemColor);
addItem(item);
item->setPos(mouseEvent->scenePos());
totalVertices++;
emit itemInserted(item);
break;
case InsertLine:
line = new QGraphicsLineItem(QLineF(mouseEvent->scenePos(),
mouseEvent->scenePos()));
line->setPen(QPen(Qt::black, 2));
addItem(line);
break;
default:;
}
QGraphicsScene::mousePressEvent(mouseEvent);
}
void MainScene::mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent)
{
if (myMode == InsertLine && line != 0) {
QLineF newLine(line->line().p1(), mouseEvent->scenePos());
line->setLine(newLine);
} else if (myMode == MoveItem) {
QGraphicsScene::mouseMoveEvent(mouseEvent);
}
}
void MainScene::mouseReleaseEvent(QGraphicsSceneMouseEvent *mouseEvent)
{
if (line != 0 && myMode == InsertLine) {
QList<QGraphicsItem *> startItems = items(line->line().p1());
if (startItems.count() && startItems.first() == line)
startItems.removeFirst();
QList<QGraphicsItem *> endItems = items(line->line().p2());
if (endItems.count() && endItems.first() == line)
endItems.removeFirst();
removeItem(line);
delete line;
if (startItems.count() > 0 && endItems.count() > 0 &&
startItems.first()->type() == EllipseItem::Type &&
endItems.first()->type() == EllipseItem::Type &&
startItems.first() != endItems.first()) {
EllipseItem *startItem =
qgraphicsitem_cast<EllipseItem *>(startItems.first());
EllipseItem *endItem =
qgraphicsitem_cast<EllipseItem *>(endItems.first());
Arrow *arrow = new Arrow(startItem, endItem);
arrow->setColor(Qt::black);
startItem->addArrow(arrow);
endItem->addArrow(arrow);
arrow->setZValue(-1000.0);
addItem(arrow);
arrow->updatePosition();
startItem->setSelected(false);
myAdjMatrix.insert( pair<int, int>(startItem->getId(), endItem->getId()) );
myAdjMatrix.insert( pair<int, int>(endItem->getId(), startItem->getId()) );
}
}
line = 0;
QGraphicsScene::mouseReleaseEvent(mouseEvent);
}