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"
|
2004-01-20 14:25:24 +00:00
|
|
|
|
#include "cursor.h"
|
2003-10-14 13:01:49 +00:00
|
|
|
|
#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-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
|
2003-12-01 13:35:49 +00:00
|
|
|
|
ParIterator text2pit(Buffer & buf, LyXText * text, int & tcount)
|
2003-10-15 08:49:44 +00:00
|
|
|
|
{
|
|
|
|
|
tcount = 0;
|
2003-12-01 13:35:49 +00:00
|
|
|
|
ParIterator pit = buf.par_iterator_begin();
|
|
|
|
|
ParIterator end = buf.par_iterator_end();
|
2003-10-15 08:49:44 +00:00
|
|
|
|
|
|
|
|
|
for ( ; pit != end; ++pit, ++tcount)
|
2003-12-01 13:35:49 +00:00
|
|
|
|
if (pit.text(buf) == text)
|
2003-10-15 08:49:44 +00:00
|
|
|
|
return pit;
|
|
|
|
|
lyxerr << "undo: should not happen" << std::endl;
|
|
|
|
|
return end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// translates offset from buffer begin to ParIterator
|
2003-12-01 13:35:49 +00:00
|
|
|
|
ParIterator num2pit(Buffer & buf, int num)
|
2003-10-15 08:49:44 +00:00
|
|
|
|
{
|
2003-12-01 13:35:49 +00:00
|
|
|
|
ParIterator pit = buf.par_iterator_begin();
|
|
|
|
|
ParIterator end = buf.par_iterator_end();
|
2003-10-15 08:49:44 +00:00
|
|
|
|
|
|
|
|
|
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);
|
2003-12-01 13:35:49 +00:00
|
|
|
|
return buf.par_iterator_begin();
|
2003-10-15 08:49:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-10-14 13:01:49 +00:00
|
|
|
|
void recordUndo(Undo::undo_kind kind,
|
2004-02-03 08:56:28 +00:00
|
|
|
|
LCursor & cur, paroffset_type first_par, paroffset_type last_par,
|
2003-10-14 13:01:49 +00:00
|
|
|
|
limited_stack<Undo> & stack)
|
|
|
|
|
{
|
2004-02-03 08:56:28 +00:00
|
|
|
|
if (first_par > last_par) {
|
|
|
|
|
paroffset_type t = first_par;
|
|
|
|
|
first_par = last_par;
|
|
|
|
|
last_par = t;
|
|
|
|
|
}
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
2004-02-03 08:56:28 +00:00
|
|
|
|
Buffer & buf = *cur.bv().buffer();
|
|
|
|
|
int const end_par = cur.lastpar() + 1 - 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-12-01 13:35:49 +00:00
|
|
|
|
if (!buf.undostack().empty()
|
|
|
|
|
&& buf.undostack().top().kind == kind
|
|
|
|
|
&& 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;
|
2004-02-03 08:56:28 +00:00
|
|
|
|
LyXText * text = cur.text();
|
|
|
|
|
BOOST_ASSERT(text); // not in mathed (yet)
|
2003-12-01 13:35:49 +00:00
|
|
|
|
ParIterator pit = text2pit(buf, text, textnum);
|
2003-10-15 08:49:44 +00:00
|
|
|
|
stack.push(Undo(kind, textnum, pit.index(),
|
2004-02-03 08:56:28 +00:00
|
|
|
|
first_par, end_par, cur.par(), cur.pos()));
|
2004-02-02 17:32:56 +00:00
|
|
|
|
//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-12-01 13:35:49 +00:00
|
|
|
|
ParagraphList & plist = text->paragraphs();
|
2003-10-15 08:49:44 +00:00
|
|
|
|
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
|
2004-02-03 08:56:28 +00:00
|
|
|
|
bool performUndoOrRedo(BufferView & bv, Undo const & undo)
|
2003-10-14 13:01:49 +00:00
|
|
|
|
{
|
2004-02-03 08:56:28 +00:00
|
|
|
|
Buffer & buf = *bv.buffer();
|
2003-10-15 08:49:44 +00:00
|
|
|
|
lyxerr << "undo, performing: " << undo << std::endl;
|
2003-12-01 13:35:49 +00:00
|
|
|
|
ParIterator pit = num2pit(buf, undo.text);
|
|
|
|
|
LyXText * text = pit.text(buf);
|
|
|
|
|
ParagraphList & plist = text->paragraphs();
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
|
|
|
|
// 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-12-01 13:35:49 +00:00
|
|
|
|
lyxerr << "undo, text: " << undo.text
|
2003-11-03 21:22:31 +00:00
|
|
|
|
<< " inset: " << pit.inset()
|
|
|
|
|
<< " index: " << undo.index
|
|
|
|
|
<< " par: " << undo.cursor_par
|
|
|
|
|
<< " pos: " << undo.cursor_pos
|
|
|
|
|
<< std::endl;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
|
|
|
|
text->updateCounters();
|
|
|
|
|
|
2003-10-27 10:03:04 +00:00
|
|
|
|
// rebreak the entire lyxtext
|
2004-02-13 07:30:59 +00:00
|
|
|
|
#warning needed?
|
|
|
|
|
text->redoParagraphs(buf.paragraphs().begin(), buf.paragraphs().end());
|
|
|
|
|
bv.cursor().resetAnchor();
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
2004-02-02 11:07:51 +00:00
|
|
|
|
ParIterator pit2 = num2pit(buf, undo.text);
|
|
|
|
|
advance(pit2, undo.cursor_par);
|
2004-02-03 08:56:28 +00:00
|
|
|
|
bv.setCursor(pit2, undo.cursor_pos);
|
2004-02-02 08:55:45 +00:00
|
|
|
|
|
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
|
2004-02-03 08:56:28 +00:00
|
|
|
|
bool textUndoOrRedo(BufferView & bv,
|
2003-10-14 13:01:49 +00:00
|
|
|
|
limited_stack<Undo> & stack, limited_stack<Undo> & otherstack)
|
|
|
|
|
{
|
2004-02-03 08:56:28 +00:00
|
|
|
|
Buffer & buf = *bv.buffer();
|
2003-10-14 13:01:49 +00:00
|
|
|
|
if (stack.empty()) {
|
2003-10-15 08:49:44 +00:00
|
|
|
|
// nothing to do
|
2003-10-14 13:01:49 +00:00
|
|
|
|
finishUndo();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Undo undo = stack.top();
|
|
|
|
|
stack.pop();
|
|
|
|
|
finishUndo();
|
|
|
|
|
|
|
|
|
|
if (!undo_frozen) {
|
|
|
|
|
otherstack.push(undo);
|
|
|
|
|
otherstack.top().pars.clear();
|
2003-12-01 13:35:49 +00:00
|
|
|
|
ParIterator pit = num2pit(buf, undo.text);
|
2003-10-15 08:49:44 +00:00
|
|
|
|
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);
|
|
|
|
|
}
|
2004-02-03 08:56:28 +00:00
|
|
|
|
otherstack.top().cursor_pos = bv.cursor().pos();
|
|
|
|
|
otherstack.top().cursor_par = bv.cursor().par();
|
2003-10-15 08:49:44 +00:00
|
|
|
|
lyxerr << " undo other: " << otherstack.top() << std::endl;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
freezeUndo();
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-03 08:56:28 +00:00
|
|
|
|
bool textUndo(BufferView & bv)
|
2003-10-14 13:01:49 +00:00
|
|
|
|
{
|
2004-02-03 08:56:28 +00:00
|
|
|
|
return textUndoOrRedo(bv, bv.buffer()->undostack(),
|
|
|
|
|
bv.buffer()->redostack());
|
2003-10-14 13:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-03 08:56:28 +00:00
|
|
|
|
bool textRedo(BufferView & bv)
|
2003-10-14 13:01:49 +00:00
|
|
|
|
{
|
2004-02-03 08:56:28 +00:00
|
|
|
|
return textUndoOrRedo(bv, bv.buffer()->redostack(),
|
|
|
|
|
bv.buffer()->undostack());
|
2003-10-14 13:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void recordUndo(Undo::undo_kind kind,
|
2004-02-03 08:56:28 +00:00
|
|
|
|
LCursor & cur, paroffset_type first, paroffset_type last)
|
2003-10-14 13:01:49 +00:00
|
|
|
|
{
|
2003-10-15 08:49:44 +00:00
|
|
|
|
if (undo_frozen)
|
|
|
|
|
return;
|
2004-02-03 08:56:28 +00:00
|
|
|
|
Buffer * buf = cur.bv().buffer();
|
|
|
|
|
recordUndo(kind, cur, first, last, buf->undostack());
|
2003-10-15 08:49:44 +00:00
|
|
|
|
buf->redostack().clear();
|
2003-10-14 13:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-03 08:56:28 +00:00
|
|
|
|
void recordUndo(LCursor & cur, Undo::undo_kind kind)
|
2003-10-14 13:01:49 +00:00
|
|
|
|
{
|
2004-02-03 08:56:28 +00:00
|
|
|
|
recordUndo(kind, cur, cur.par(), cur.par());
|
2003-10-14 13:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-13 07:30:59 +00:00
|
|
|
|
void recordUndoSelection(LCursor & cur, Undo::undo_kind kind)
|
|
|
|
|
{
|
|
|
|
|
recordUndo(kind, cur, cur.selBegin().par(), cur.selEnd().par());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-03 08:56:28 +00:00
|
|
|
|
void recordUndo(LCursor & cur, Undo::undo_kind kind, paroffset_type from)
|
2003-10-14 13:01:49 +00:00
|
|
|
|
{
|
2004-02-03 08:56:28 +00:00
|
|
|
|
recordUndo(kind, cur, cur.par(), from);
|
2004-01-15 17:34:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-03 08:56:28 +00:00
|
|
|
|
void recordUndo(LCursor & cur, Undo::undo_kind kind,
|
|
|
|
|
paroffset_type from, paroffset_type to)
|
|
|
|
|
{
|
|
|
|
|
recordUndo(kind, cur, from, to);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void recordUndoFullDocument(LCursor &)
|
2004-01-15 17:34:44 +00:00
|
|
|
|
{
|
2004-02-03 08:56:28 +00:00
|
|
|
|
//recordUndo(Undo::ATOMIC,
|
|
|
|
|
// cur, 0, cur.bv().text()->paragraphs().size() - 1);
|
2003-10-14 13:01:49 +00:00
|
|
|
|
}
|