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
|
/*=========================================================================
Program: ParaView
Module: vtkUndoStack.cxx
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkUndoStack.h"
#include "vtkCommand.h"
#include "vtkObjectFactory.h"
#include "vtkUndoStackInternal.h"
vtkStandardNewMacro(vtkUndoStack);
//-----------------------------------------------------------------------------
vtkUndoStack::vtkUndoStack()
{
this->Internal = new vtkUndoStackInternal;
this->InUndo = false;
this->InRedo = false;
this->StackDepth = 10;
}
//-----------------------------------------------------------------------------
vtkUndoStack::~vtkUndoStack()
{
delete this->Internal;
}
//-----------------------------------------------------------------------------
void vtkUndoStack::Clear()
{
this->Internal->UndoStack.clear();
this->Internal->RedoStack.clear();
this->InvokeEvent(vtkUndoStack::UndoSetClearedEvent);
this->Modified();
}
//-----------------------------------------------------------------------------
void vtkUndoStack::Push(const char* label, vtkUndoSet* changeSet)
{
this->Internal->RedoStack.clear();
while (this->Internal->UndoStack.size() >=
static_cast<unsigned int>(this->StackDepth) && this->StackDepth > 0)
{
this->Internal->UndoStack.erase(this->Internal->UndoStack.begin());
this->InvokeEvent(vtkUndoStack::UndoSetRemovedEvent);
}
this->Internal->UndoStack.push_back(
vtkUndoStackInternal::Element(label, changeSet));
this->Modified();
}
//-----------------------------------------------------------------------------
unsigned int vtkUndoStack::GetNumberOfUndoSets()
{
return static_cast<unsigned int>(this->Internal->UndoStack.size());
}
//-----------------------------------------------------------------------------
unsigned int vtkUndoStack::GetNumberOfRedoSets()
{
return static_cast<unsigned int>(this->Internal->RedoStack.size());
}
//-----------------------------------------------------------------------------
const char* vtkUndoStack::GetUndoSetLabel(unsigned int position)
{
if (position >= this->Internal->UndoStack.size())
{
return NULL;
}
position = (static_cast<unsigned int>(
this->Internal->UndoStack.size()) - position) -1;
return this->Internal->UndoStack[position].Label.c_str();
}
//-----------------------------------------------------------------------------
const char* vtkUndoStack::GetRedoSetLabel(unsigned int position)
{
if (position >= this->Internal->RedoStack.size())
{
return NULL;
}
position = (static_cast<unsigned int>(
this->Internal->RedoStack.size()) - position) -1;
return this->Internal->RedoStack[position].Label.c_str();
}
//-----------------------------------------------------------------------------
int vtkUndoStack::Undo()
{
if (this->Internal->UndoStack.empty())
{
return 0;
}
this->InUndo = true;
this->InvokeEvent(vtkCommand::StartEvent);
int status = this->Internal->UndoStack.back().UndoSet.GetPointer()->Undo();
if (status)
{
this->PopUndoStack();
}
this->InvokeEvent(vtkCommand::EndEvent);
this->InUndo = false;
return status;
}
//-----------------------------------------------------------------------------
int vtkUndoStack::Redo()
{
if (this->Internal->RedoStack.empty())
{
return 0;
}
this->InRedo = true;
this->InvokeEvent(vtkCommand::StartEvent);
int status = this->Internal->RedoStack.back().UndoSet.GetPointer()->Redo();
if (status)
{
this->PopRedoStack();
}
this->InvokeEvent(vtkCommand::EndEvent);
this->InRedo = false;
return status;
}
//-----------------------------------------------------------------------------
void vtkUndoStack::PopUndoStack()
{
if (this->Internal->UndoStack.empty())
{
return;
}
this->Internal->RedoStack.push_back(this->Internal->UndoStack.back());
this->Internal->UndoStack.pop_back();
this->Modified();
}
//-----------------------------------------------------------------------------
void vtkUndoStack::PopRedoStack()
{
if (this->Internal->RedoStack.empty())
{
return;
}
this->Internal->UndoStack.push_back(this->Internal->RedoStack.back());
this->Internal->RedoStack.pop_back();
this->Modified();
}
//-----------------------------------------------------------------------------
vtkUndoSet* vtkUndoStack::GetNextUndoSet()
{
if (!this->CanUndo())
{
return NULL;
}
return this->Internal->UndoStack.back().UndoSet.GetPointer();
}
//-----------------------------------------------------------------------------
vtkUndoSet* vtkUndoStack::GetNextRedoSet()
{
if (!this->CanRedo())
{
return NULL;
}
return this->Internal->RedoStack.back().UndoSet.GetPointer();
}
//-----------------------------------------------------------------------------
void vtkUndoStack::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "InUndo: " << this->InUndo << endl;
os << indent << "InRedo: " << this->InRedo << endl;
os << indent << "StackDepth: " << this->StackDepth << endl;
}
|