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
|
#include <Python.h>
#include "undo/undo_delete_link.h"
#include "undo/undo_delete_multi.h"
#include "graph/datum.h"
UndoDeleteLink::UndoDeleteLink(const Datum* source, Datum* target,
UndoDeleteMulti* parent)
: UndoCommand(parent), source(source), target(target)
{
setText("'delete link'");
}
////////////////////////////////////////////////////////////////////////////////
void UndoDeleteLink::undo()
{
target->installLink(source);
}
void UndoDeleteLink::redo()
{
target->uninstallLink(source);
}
////////////////////////////////////////////////////////////////////////////////
void UndoDeleteLink::swapPointer(Datum* a, Datum* b) const
{
if (a == source)
source = b;
if (a == target)
target = b;
}
|