-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommand.cpp
More file actions
348 lines (275 loc) · 9.08 KB
/
command.cpp
File metadata and controls
348 lines (275 loc) · 9.08 KB
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
#include "command.h"
#include "brainnode.h"
#include <QDebug>
#include <QApplication>
#include <math.h>
BaseUndoClass::BaseUndoClass(UndoContext context)
: m_done(false)
, m_context(context)
, m_activeNode(context.m_activeNode)
{
m_nodeList.push_back(m_activeNode);
}
InsertNodeCommand::InsertNodeCommand(UndoContext context)
: BaseUndoClass(context)
{
setText(QObject::tr("New Node added"));
m_context.m_graphLogic->nodeLostFocus();
// create new node which inherits the color and textColor
m_node = m_context.m_graphLogic->nodeFactory();
m_node->setColor(m_activeNode->color());
m_node->setTextColor(m_activeNode->textColor());
m_node->setHtml(QString(""));
// new edge inherits colors and size from target
m_edge = new BrainArc(m_activeNode, m_node);
m_edge->setColor(m_node->color());
m_edge->setWidth(m_node->scale()*2 + 1);
}
InsertNodeCommand::~InsertNodeCommand()
{
if (!m_done)
{
delete m_edge;
delete m_node;
}
}
void InsertNodeCommand::undo()
{
// remove node
m_context.m_nodeList->removeAll(m_node);
m_context.m_graphLogic->graphWidget()->scene()->removeItem(m_node);
m_context.m_graphLogic->setActiveNode(m_activeNode);
// remove edge
m_edge->sourceNode()->removeEdge(m_edge);
m_edge->destNode()->removeEdge(m_edge);
m_context.m_graphLogic->graphWidget()->scene()->removeItem(m_edge);
// m_context.m_graphLogic->reShowNumbers();
m_done = false;
}
void InsertNodeCommand::redo()
{
// add node
m_context.m_graphLogic->graphWidget()->scene()->addItem(m_node);
m_context.m_nodeList->append(m_node);
m_node->setPos(m_context.m_pos);
m_context.m_graphLogic->setActiveNode(m_node);
if (m_context.m_graphLogic->graphWidget()->hasFocus())
m_context.m_graphLogic->nodeEdited();
// add edge
m_edge->sourceNode()->addEdge(m_edge,true);
m_edge->destNode()->addEdge(m_edge,false);
m_context.m_graphLogic->graphWidget()->scene()->addItem(m_edge);
m_done = true;
}
RemoveNodeCommand::RemoveNodeCommand(UndoContext context)
: BaseUndoClass(context)
{
setText(QObject::tr("Node removed"));
// collect affected edges
foreach(BrainNode *node, m_nodeList)
foreach(BrainArc *edge, node->edges())
if (m_edgeList.indexOf(edge) == -1)
m_edgeList.push_back(edge);
}
void RemoveNodeCommand::undo()
{
// add nodes
foreach (BrainNode *node, m_nodeList)
{
m_context.m_graphLogic->graphWidget()->scene()->addItem(node);
m_context.m_nodeList->append(node);
}
// add edges
foreach (BrainArc *edge, m_edgeList)
{
edge->sourceNode()->addEdge(edge,true);
edge->destNode()->addEdge(edge,false);
m_context.m_graphLogic->graphWidget()->scene()->addItem(edge);
}
m_context.m_graphLogic->setActiveNode(m_activeNode);
}
void RemoveNodeCommand::redo()
{
foreach(BrainNode *node, m_nodeList)
{
m_context.m_nodeList->removeAll(node);
m_context.m_graphLogic->graphWidget()->scene()->removeItem(node);
}
foreach(BrainArc *edge, m_edgeList)
{
edge->sourceNode()->removeEdge(edge);
edge->destNode()->removeEdge(edge);
m_context.m_graphLogic->graphWidget()->scene()->removeItem(edge);
}
m_context.m_graphLogic->setActiveNode(0);
}
AddEdgeCommand::AddEdgeCommand(UndoContext context)
: BaseUndoClass(context)
{
setText(QObject::tr("New Arc added"));
m_edge = new BrainArc(m_context.m_source, m_context.m_destination);
m_edge->setColor(m_context.m_destination->color());
m_edge->setWidth(m_context.m_destination->scale()*2 + 1);
}
void AddEdgeCommand::undo()
{
m_context.m_source->removeEdge(m_edge);
m_context.m_destination->removeEdge(m_edge);
m_context.m_graphLogic->graphWidget()->scene()->removeItem(m_edge);
m_context.m_graphLogic->setActiveNode(m_activeNode);
m_done = false;
}
void AddEdgeCommand::redo()
{
m_context.m_source->addEdge(m_edge, true);
m_context.m_destination->addEdge(m_edge, false);
m_context.m_graphLogic->graphWidget()->scene()->addItem(m_edge);
m_context.m_graphLogic->setActiveNode(m_context.m_destination);
m_done = true;
}
AddEdgeCommand::~AddEdgeCommand()
{
if (!m_done)
delete m_edge;
}
RemoveEdgeCommand::RemoveEdgeCommand(UndoContext context)
: BaseUndoClass(context)
{
setText(QObject::tr("Arc removed"));
m_edge = m_context.m_source->edgeTo(m_context.m_destination);
}
void RemoveEdgeCommand::undo()
{
m_context.m_source->addEdge(m_edge, true);
m_context.m_destination->addEdge(m_edge, false);
m_context.m_graphLogic->graphWidget()->scene()->addItem(m_edge);
m_context.m_graphLogic->setActiveNode(m_activeNode);
}
void RemoveEdgeCommand::redo()
{
m_context.m_source->removeEdge(m_edge);
m_context.m_destination->removeEdge(m_edge);
m_context.m_graphLogic->graphWidget()->scene()->removeItem(m_edge);
m_context.m_graphLogic->setActiveNode(m_context.m_activeNode);
}
MoveCommand::MoveCommand(UndoContext context)
: BaseUndoClass(context)
{
setText(QObject::tr("Move Node"));
}
void MoveCommand::undo()
{
foreach(BrainNode *node, m_nodeList)
node->moveBy(-m_context.m_x, -m_context.m_y);
m_context.m_graphLogic->setActiveNode(m_activeNode);
}
void MoveCommand::redo()
{
foreach(BrainNode *node, m_nodeList)
node->moveBy(m_context.m_x, m_context.m_y);
m_context.m_graphLogic->setActiveNode(m_activeNode);
}
bool MoveCommand::mergeWith(const QUndoCommand *command)
{
if (command->id() != id())
return false;
const MoveCommand *moveCommand = static_cast<const MoveCommand *>(command);
if (m_context.m_activeNode != moveCommand->m_context.m_activeNode)
return false;
m_context.m_x += moveCommand->m_context.m_x;
m_context.m_y += moveCommand->m_context.m_y;
// setText(QObject::tr("Node \"").append(
// m_context.m_activeNode == m_context.m_nodeList->first() ?
// QObject::tr("Base node") :
// m_context.m_activeNode->toPlainText()).
// append("\" moved (%1, %2)").arg(m_context.m_x).arg(m_context.m_y).
// append(m_subtree ? QObject::tr(" with subtree") : QString("")));
return true;
}
int MoveCommand::id() const
{
return MoveCommandId;
}
NodeColorCommand::NodeColorCommand(UndoContext context)
: BaseUndoClass(context)
{
setText(QObject::tr("Change Node Color"));
foreach(BrainNode *node, m_nodeList)
m_colorMap[node] = node->color();
}
void NodeColorCommand::undo()
{
foreach(BrainNode *node, m_nodeList)
{
node->setColor(m_colorMap[node]);
foreach (BrainArc * edge, node->edgesToThis(false))
edge->setColor(m_colorMap[node]);
}
m_context.m_graphLogic->setActiveNode(m_activeNode);
}
void NodeColorCommand::redo()
{
foreach(BrainNode *node, m_nodeList)
{
node->setColor(m_context.m_color);
foreach (BrainArc * edge, node->edgesToThis(false))
edge->setColor(m_context.m_color);
}
m_context.m_graphLogic->setActiveNode(m_activeNode);
}
NodeTextColorCommand::NodeTextColorCommand(UndoContext context)
: BaseUndoClass(context)
{
setText(QObject::tr("Change Text Color"));
foreach(BrainNode *node, m_nodeList)
m_colorMap[node] = node->textColor();
}
void NodeTextColorCommand::undo()
{
foreach(BrainNode *node, m_nodeList)
node->setTextColor(m_colorMap[node]);
m_context.m_graphLogic->setActiveNode(m_activeNode);
}
void NodeTextColorCommand::redo()
{
foreach(BrainNode *node, m_nodeList)
node->setTextColor(m_context.m_color);
m_context.m_graphLogic->setActiveNode(m_activeNode);
}
ScaleNodeCommand::ScaleNodeCommand(UndoContext context)
: BaseUndoClass(context)
{
setText(QObject::tr("Scale Node"));
}
void ScaleNodeCommand::undo()
{
foreach(BrainNode *node, m_nodeList)
node->setScale(qreal(-m_context.m_scale), m_context.m_graphLogic->graphWidget()->sceneRect());
m_context.m_graphLogic->setActiveNode(m_activeNode);
}
void ScaleNodeCommand::redo()
{
foreach(BrainNode *node, m_nodeList)
node->setScale(m_context.m_scale, m_context.m_graphLogic->graphWidget()->sceneRect());
m_context.m_graphLogic->setActiveNode(m_activeNode);
}
bool ScaleNodeCommand::mergeWith(const QUndoCommand *command)
{
if (command->id() != id())
return false;
const ScaleNodeCommand *scaleNodeCommand = static_cast<const ScaleNodeCommand *>(command);
if (m_context.m_activeNode != scaleNodeCommand->m_context.m_activeNode)
return false;
m_context.m_scale += scaleNodeCommand->m_context.m_scale;
// setText(QObject::tr("Node \"").append(
// m_context.m_activeNode == m_context.m_nodeList->first() ?
// QObject::tr("Base node") :
// m_context.m_activeNode->toPlainText()).
// append("\" scaled (%1%)").arg(int((1+m_context.m_scale)*100)).
// append(m_subtree ? QObject::tr(" with subtree") : QString("")));
return true;
}
int ScaleNodeCommand::id() const
{
return ScaleCommandId;
}