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
|
#include <Python.h>
#include "undo/undo_delete_multi.h"
#include "undo/undo_delete_node.h"
#include "undo/undo_delete_datum.h"
#include "undo/undo_delete_link.h"
#include "graph/node.h"
#include <QDebug>
UndoDeleteMulti::UndoDeleteMulti(QSet<Node*> nodes, QSet<Datum*> datums,
QSet<QPair<const Datum*, Datum*>> links)
{
setText("'delete'");
for (auto n : nodes)
for (auto d : n->childDatums())
for (auto e : d->outgoingLinks())
links.insert(QPair<Datum*, Datum*>(d, e));
for (auto d : datums)
for (auto e : d->outgoingLinks())
links.insert(QPair<Datum*, Datum*>(d, e));
for (auto k : links)
new UndoDeleteLink(k.first, k.second, this);
for (auto n : nodes)
new UndoDeleteNode(n, this);
for (auto d : datums)
new UndoDeleteDatum(d, this);
}
|