2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file undo.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-10-14 13:01:49 +00:00
|
|
|
|
* \author Asger Alstrup
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2003-10-14 13:01:49 +00:00
|
|
|
|
* \author John Levon
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
2003-10-14 13:01:49 +00:00
|
|
|
|
* \author J<EFBFBD>rgen Vigna
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
1999-11-15 12:01:38 +00:00
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2001-05-08 13:28:44 +00:00
|
|
|
|
#include "undo.h"
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
|
|
|
|
#include "buffer.h"
|
|
|
|
|
#include "debug.h"
|
|
|
|
|
#include "BufferView.h"
|
|
|
|
|
#include "iterators.h"
|
|
|
|
|
#include "lyxtext.h"
|
2003-09-06 12:36:58 +00:00
|
|
|
|
#include "paragraph.h"
|
2001-05-08 13:28:44 +00:00
|
|
|
|
|
2003-10-27 10:03:04 +00:00
|
|
|
|
#include "insets/updatableinset.h" // for dynamic_cast<UpdatableInset *>
|
|
|
|
|
|
2003-10-14 13:01:49 +00:00
|
|
|
|
using lyx::paroffset_type;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// The flag used by finishUndo().
|
|
|
|
|
bool undo_finished;
|
|
|
|
|
|
|
|
|
|
/// Whether actions are not added to the undo stacks.
|
|
|
|
|
bool undo_frozen;
|
|
|
|
|
|
2003-10-15 08:49:44 +00:00
|
|
|
|
Undo::Undo(undo_kind kind_, int text_, int index_,
|
|
|
|
|
int first_par_, int end_par_, int cursor_par_, int cursor_pos_)
|
2003-06-04 12:45:26 +00:00
|
|
|
|
:
|
2003-10-15 08:49:44 +00:00
|
|
|
|
kind(kind_),
|
|
|
|
|
text(text_),
|
|
|
|
|
index(index_),
|
|
|
|
|
first_par(first_par_),
|
|
|
|
|
end_par(end_par_),
|
|
|
|
|
cursor_par(cursor_par_),
|
|
|
|
|
cursor_pos(cursor_pos_)
|
2003-06-04 12:45:26 +00:00
|
|
|
|
{}
|
2000-01-06 02:44:26 +00:00
|
|
|
|
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
2003-10-15 08:49:44 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2003-10-14 13:01:49 +00:00
|
|
|
|
std::ostream & operator<<(std::ostream & os, Undo const & undo)
|
|
|
|
|
{
|
|
|
|
|
return os << " text: " << undo.text
|
2003-10-15 08:49:44 +00:00
|
|
|
|
<< " index: " << undo.index
|
|
|
|
|
<< " first: " << undo.first_par
|
|
|
|
|
<< " from end: " << undo.end_par
|
|
|
|
|
<< " cursor: " << undo.cursor_par
|
2003-10-14 13:01:49 +00:00
|
|
|
|
<< "/" << undo.cursor_pos;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-10-15 08:49:44 +00:00
|
|
|
|
// translates LyXText pointer into offset count from document begin
|
|
|
|
|
ParIterator text2pit(LyXText * text, int & tcount)
|
|
|
|
|
{
|
|
|
|
|
tcount = 0;
|
|
|
|
|
Buffer * buf = text->bv()->buffer();
|
|
|
|
|
ParIterator pit = buf->par_iterator_begin();
|
|
|
|
|
ParIterator end = buf->par_iterator_end();
|
|
|
|
|
|
|
|
|
|
// it.text() returns 0 for outermost text.
|
|
|
|
|
if (text == text->bv()->text)
|
|
|
|
|
return pit;
|
|
|
|
|
|
|
|
|
|
for ( ; pit != end; ++pit, ++tcount)
|
|
|
|
|
if (pit.text() == text)
|
|
|
|
|
return pit;
|
|
|
|
|
lyxerr << "undo: should not happen" << std::endl;
|
|
|
|
|
return end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// translates offset from buffer begin to ParIterator
|
|
|
|
|
ParIterator num2pit(BufferView * bv, int num)
|
|
|
|
|
{
|
|
|
|
|
Buffer * buf = bv->buffer();
|
|
|
|
|
ParIterator pit = buf->par_iterator_begin();
|
|
|
|
|
ParIterator end = buf->par_iterator_end();
|
|
|
|
|
|
|
|
|
|
for ( ; num && pit != end; ++pit, --num)
|
|
|
|
|
;
|
2003-11-03 17:47:28 +00:00
|
|
|
|
|
2003-10-15 08:49:44 +00:00
|
|
|
|
if (pit != end)
|
|
|
|
|
return pit;
|
|
|
|
|
|
|
|
|
|
// don't crash early...
|
|
|
|
|
lyxerr << "undo: num2pit: num: " << num << std::endl;
|
|
|
|
|
BOOST_ASSERT(false);
|
|
|
|
|
return buf->par_iterator_begin();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// translates offset from buffer begin to LyXText
|
|
|
|
|
LyXText * pit2text(BufferView * bv, ParIterator const & pit)
|
|
|
|
|
{
|
|
|
|
|
LyXText * text = pit.text();
|
|
|
|
|
return text ? text : bv->text;
|
|
|
|
|
}
|
|
|
|
|
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
|
|
|
|
void recordUndo(Undo::undo_kind kind,
|
2003-10-15 08:49:44 +00:00
|
|
|
|
LyXText * text, paroffset_type first_par, paroffset_type last_par,
|
2003-10-14 13:01:49 +00:00
|
|
|
|
limited_stack<Undo> & stack)
|
|
|
|
|
{
|
|
|
|
|
Buffer * buf = text->bv()->buffer();
|
|
|
|
|
|
2003-10-15 08:49:44 +00:00
|
|
|
|
int const end_par = text->ownerParagraphs().size() - last_par;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
|
|
|
|
// Undo::ATOMIC are always recorded (no overlapping there).
|
|
|
|
|
// overlapping only with insert and delete inside one paragraph:
|
|
|
|
|
// nobody wants all removed character appear one by one when undoing.
|
2003-10-15 08:49:44 +00:00
|
|
|
|
if (!undo_finished && kind != Undo::ATOMIC) {
|
2003-10-14 13:01:49 +00:00
|
|
|
|
// Check whether storing is needed.
|
2003-10-15 08:49:44 +00:00
|
|
|
|
if (!buf->undostack().empty()
|
2003-10-14 13:01:49 +00:00
|
|
|
|
&& buf->undostack().top().kind == kind
|
2003-10-15 08:49:44 +00:00
|
|
|
|
&& buf->undostack().top().first_par == first_par
|
|
|
|
|
&& buf->undostack().top().end_par == end_par) {
|
2003-10-14 13:01:49 +00:00
|
|
|
|
// No additonal undo recording needed -
|
|
|
|
|
// effectively, we combine undo recordings to one.
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// make and push the Undo entry
|
2003-10-15 08:49:44 +00:00
|
|
|
|
int textnum;
|
|
|
|
|
ParIterator pit = text2pit(text, textnum);
|
|
|
|
|
stack.push(Undo(kind, textnum, pit.index(),
|
|
|
|
|
first_par, end_par, text->cursor.par(), text->cursor.pos()));
|
|
|
|
|
lyxerr << "undo record: " << stack.top() << std::endl;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
|
|
|
|
// record the relevant paragraphs
|
|
|
|
|
ParagraphList & undo_pars = stack.top().pars;
|
|
|
|
|
|
2003-10-15 08:49:44 +00:00
|
|
|
|
ParagraphList & plist = text->ownerParagraphs();
|
|
|
|
|
ParagraphList::iterator first = plist.begin();
|
|
|
|
|
advance(first, first_par);
|
|
|
|
|
ParagraphList::iterator last = plist.begin();
|
|
|
|
|
advance(last, last_par);
|
|
|
|
|
|
2003-10-29 12:18:08 +00:00
|
|
|
|
for (ParagraphList::iterator it = first; it != last; ++it)
|
2003-10-14 13:01:49 +00:00
|
|
|
|
undo_pars.push_back(*it);
|
|
|
|
|
undo_pars.push_back(*last);
|
|
|
|
|
|
|
|
|
|
// and make sure that next time, we should be combining if possible
|
|
|
|
|
undo_finished = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-10-15 08:49:44 +00:00
|
|
|
|
// returns false if no undo possible
|
2003-10-14 13:01:49 +00:00
|
|
|
|
bool performUndoOrRedo(BufferView * bv, Undo const & undo)
|
|
|
|
|
{
|
2003-10-15 08:49:44 +00:00
|
|
|
|
lyxerr << "undo, performing: " << undo << std::endl;
|
|
|
|
|
ParIterator pit = num2pit(bv, undo.text);
|
|
|
|
|
LyXText * text = pit2text(bv, pit);
|
2003-10-14 13:01:49 +00:00
|
|
|
|
ParagraphList & plist = text->ownerParagraphs();
|
|
|
|
|
|
|
|
|
|
// remove new stuff between first and last
|
|
|
|
|
{
|
|
|
|
|
ParagraphList::iterator first = plist.begin();
|
2003-10-15 08:49:44 +00:00
|
|
|
|
advance(first, undo.first_par);
|
2003-10-14 13:01:49 +00:00
|
|
|
|
ParagraphList::iterator last = plist.begin();
|
2003-10-15 08:49:44 +00:00
|
|
|
|
advance(last, plist.size() - undo.end_par);
|
2003-10-14 13:01:49 +00:00
|
|
|
|
plist.erase(first, ++last);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// re-insert old stuff instead
|
|
|
|
|
if (plist.empty()) {
|
|
|
|
|
plist.assign(undo.pars.begin(), undo.pars.end());
|
|
|
|
|
} else {
|
|
|
|
|
ParagraphList::iterator first = plist.begin();
|
2003-10-15 08:49:44 +00:00
|
|
|
|
advance(first, undo.first_par);
|
2003-10-14 13:01:49 +00:00
|
|
|
|
plist.insert(first, undo.pars.begin(), undo.pars.end());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// set cursor
|
2003-10-15 08:49:44 +00:00
|
|
|
|
lyxerr << "undo, text: " << undo.text
|
|
|
|
|
<< " inset: " << pit.inset()
|
|
|
|
|
<< " index: " << undo.index
|
|
|
|
|
<< std::endl;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
|
|
|
|
// set cursor again to force the position to be the right one
|
2003-10-27 10:03:04 +00:00
|
|
|
|
text->cursor.par(undo.cursor_par);
|
|
|
|
|
text->cursor.pos(undo.cursor_pos);
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
|
|
|
|
// clear any selection
|
|
|
|
|
text->clearSelection();
|
|
|
|
|
text->selection.cursor = text->cursor;
|
|
|
|
|
text->updateCounters();
|
|
|
|
|
|
2003-10-27 10:03:04 +00:00
|
|
|
|
// rebreak the entire lyxtext
|
2003-10-14 13:01:49 +00:00
|
|
|
|
bv->text->fullRebreak();
|
|
|
|
|
|
2003-10-27 10:03:04 +00:00
|
|
|
|
InsetOld * inset = pit.inset();
|
|
|
|
|
if (inset) {
|
|
|
|
|
// magic needed to cope with inset locking
|
|
|
|
|
bv->lockInset(dynamic_cast<UpdatableInset *>(inset));
|
|
|
|
|
}
|
|
|
|
|
|
2003-10-14 13:01:49 +00:00
|
|
|
|
finishUndo();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-10-15 08:49:44 +00:00
|
|
|
|
// returns false if no undo possible
|
2003-10-14 13:01:49 +00:00
|
|
|
|
bool textUndoOrRedo(BufferView * bv,
|
|
|
|
|
limited_stack<Undo> & stack, limited_stack<Undo> & otherstack)
|
|
|
|
|
{
|
|
|
|
|
if (stack.empty()) {
|
2003-10-15 08:49:44 +00:00
|
|
|
|
// nothing to do
|
2003-10-14 13:01:49 +00:00
|
|
|
|
freezeUndo();
|
|
|
|
|
bv->unlockInset(bv->theLockingInset());
|
|
|
|
|
finishUndo();
|
|
|
|
|
unFreezeUndo();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Undo undo = stack.top();
|
|
|
|
|
stack.pop();
|
|
|
|
|
finishUndo();
|
|
|
|
|
|
|
|
|
|
if (!undo_frozen) {
|
|
|
|
|
otherstack.push(undo);
|
|
|
|
|
otherstack.top().pars.clear();
|
2003-10-15 08:49:44 +00:00
|
|
|
|
ParIterator pit = num2pit(bv, undo.text);
|
|
|
|
|
ParagraphList & plist = pit.plist();
|
|
|
|
|
if (undo.first_par + undo.end_par <= int(plist.size())) {
|
2003-10-14 13:01:49 +00:00
|
|
|
|
ParagraphList::iterator first = plist.begin();
|
2003-10-15 08:49:44 +00:00
|
|
|
|
advance(first, undo.first_par);
|
2003-10-14 13:01:49 +00:00
|
|
|
|
ParagraphList::iterator last = plist.begin();
|
2003-10-15 08:49:44 +00:00
|
|
|
|
advance(last, plist.size() - undo.end_par + 1);
|
2003-10-14 13:01:49 +00:00
|
|
|
|
otherstack.top().pars.insert(otherstack.top().pars.begin(), first, last);
|
|
|
|
|
}
|
2003-10-15 08:49:44 +00:00
|
|
|
|
LyXText * text = pit2text(bv, pit);
|
|
|
|
|
otherstack.top().cursor_pos = text->cursor.pos();
|
|
|
|
|
otherstack.top().cursor_par = text->cursor.par();
|
|
|
|
|
lyxerr << " undo other: " << otherstack.top() << std::endl;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Now we can unlock the inset for safety because the inset
|
|
|
|
|
// pointer could be changed during the undo-function. Anyway
|
|
|
|
|
// if needed we have to lock the right inset/position if this
|
|
|
|
|
// is requested.
|
|
|
|
|
freezeUndo();
|
|
|
|
|
bv->unlockInset(bv->theLockingInset());
|
|
|
|
|
bool const ret = performUndoOrRedo(bv, undo);
|
|
|
|
|
unFreezeUndo();
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void freezeUndo()
|
|
|
|
|
{
|
2003-10-15 08:49:44 +00:00
|
|
|
|
// this is dangerous and for internal use only
|
2003-10-14 13:01:49 +00:00
|
|
|
|
undo_frozen = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void unFreezeUndo()
|
|
|
|
|
{
|
2003-10-15 08:49:44 +00:00
|
|
|
|
// this is dangerous and for internal use only
|
2003-10-14 13:01:49 +00:00
|
|
|
|
undo_frozen = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void finishUndo()
|
|
|
|
|
{
|
2003-10-15 08:49:44 +00:00
|
|
|
|
// makes sure the next operation will be stored
|
2003-10-14 13:01:49 +00:00
|
|
|
|
undo_finished = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool textUndo(BufferView * bv)
|
|
|
|
|
{
|
|
|
|
|
return textUndoOrRedo(bv, bv->buffer()->undostack(),
|
|
|
|
|
bv->buffer()->redostack());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool textRedo(BufferView * bv)
|
|
|
|
|
{
|
|
|
|
|
return textUndoOrRedo(bv, bv->buffer()->redostack(),
|
|
|
|
|
bv->buffer()->undostack());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void recordUndo(Undo::undo_kind kind,
|
|
|
|
|
LyXText const * text, paroffset_type first, paroffset_type last)
|
|
|
|
|
{
|
2003-10-15 08:49:44 +00:00
|
|
|
|
if (undo_frozen)
|
|
|
|
|
return;
|
|
|
|
|
Buffer * buf = text->bv()->buffer();
|
|
|
|
|
recordUndo(kind, const_cast<LyXText *>(text), first, last, buf->undostack());
|
|
|
|
|
buf->redostack().clear();
|
2003-10-14 13:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void recordUndo(Undo::undo_kind kind, LyXText const * text, paroffset_type par)
|
|
|
|
|
{
|
|
|
|
|
recordUndo(kind, text, par, par);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void recordUndo(BufferView * bv, Undo::undo_kind kind)
|
|
|
|
|
{
|
|
|
|
|
recordUndo(kind, bv->text, bv->text->cursor.par());
|
|
|
|
|
}
|