mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-23 16:52:02 +00:00
almost only ws changes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6916 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
96885e74d7
commit
cd50f3ae85
@ -1,5 +1,7 @@
|
|||||||
2003-05-02 Lars Gullik Bjønnes <larsbj@gullik.net>
|
2003-05-02 Lars Gullik Bjønnes <larsbj@gullik.net>
|
||||||
|
|
||||||
|
* undo_funcs.C: almost only ws changes.
|
||||||
|
|
||||||
* ParagraphList.C (splice): just return if pl is empty.
|
* ParagraphList.C (splice): just return if pl is empty.
|
||||||
|
|
||||||
2003-05-02 Lars Gullik Bjønnes <larsbj@gullik.net>
|
2003-05-02 Lars Gullik Bjønnes <larsbj@gullik.net>
|
||||||
|
114
src/undo_funcs.C
114
src/undo_funcs.C
@ -26,14 +26,14 @@ using std::vector;
|
|||||||
using boost::shared_ptr;
|
using boost::shared_ptr;
|
||||||
|
|
||||||
|
|
||||||
/// the flag used by FinishUndo();
|
/// The flag used by FinishUndo().
|
||||||
bool undo_finished;
|
bool undo_finished;
|
||||||
/// whether actions are not added to the undo stacks
|
/// Whether actions are not added to the undo stacks.
|
||||||
bool undo_frozen;
|
bool undo_frozen;
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
/// utility to return the cursor
|
/// Utility to return the cursor.
|
||||||
LyXCursor const & undoCursor(BufferView * bv)
|
LyXCursor const & undoCursor(BufferView * bv)
|
||||||
{
|
{
|
||||||
if (bv->theLockingInset())
|
if (bv->theLockingInset())
|
||||||
@ -41,10 +41,11 @@ LyXCursor const & undoCursor(BufferView * bv)
|
|||||||
return bv->text->cursor;
|
return bv->text->cursor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* returns a pointer to the very first Paragraph depending of where we are
|
* Returns a pointer to the very first Paragraph depending of where
|
||||||
* so it will return the first paragraph of the buffer or the first paragraph
|
* we are so it will return the first paragraph of the buffer or the
|
||||||
* of the textinset we're in.
|
* first paragraph of the textinset we're in.
|
||||||
*/
|
*/
|
||||||
Paragraph * firstUndoParagraph(BufferView * bv, int inset_id)
|
Paragraph * firstUndoParagraph(BufferView * bv, int inset_id)
|
||||||
{
|
{
|
||||||
@ -72,7 +73,7 @@ void finishNoUndo(BufferView * bv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// returns false if no undo possible
|
// Returns false if no undo possible.
|
||||||
bool textHandleUndo(BufferView * bv, Undo & undo)
|
bool textHandleUndo(BufferView * bv, Undo & undo)
|
||||||
{
|
{
|
||||||
Buffer * b = bv->buffer();
|
Buffer * b = bv->buffer();
|
||||||
@ -80,8 +81,8 @@ bool textHandleUndo(BufferView * bv, Undo & undo)
|
|||||||
Paragraph * const before = &*b->getParFromID(undo.number_of_before_par);
|
Paragraph * const before = &*b->getParFromID(undo.number_of_before_par);
|
||||||
Paragraph * const behind = &*b->getParFromID(undo.number_of_behind_par);
|
Paragraph * const behind = &*b->getParFromID(undo.number_of_behind_par);
|
||||||
|
|
||||||
// if there's no before take the beginning
|
// If there's no before take the beginning
|
||||||
// of the document for redoing
|
// of the document for redoing.
|
||||||
if (!before) {
|
if (!before) {
|
||||||
LyXText * t = bv->text;
|
LyXText * t = bv->text;
|
||||||
int num = undo.number_of_inset_id;
|
int num = undo.number_of_inset_id;
|
||||||
@ -96,16 +97,18 @@ bool textHandleUndo(BufferView * bv, Undo & undo)
|
|||||||
t->setCursorIntern(firstUndoParagraph(bv, num), 0);
|
t->setCursorIntern(firstUndoParagraph(bv, num), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// replace the paragraphs with the undo informations
|
// Replace the paragraphs with the undo informations.
|
||||||
|
|
||||||
Paragraph * undopar = undo.par;
|
Paragraph * undopar = undo.par;
|
||||||
undo.par = 0; /* otherwise the undo destructor would
|
// Otherwise the undo destructor would
|
||||||
delete the paragraph */
|
// delete the paragraph.
|
||||||
|
undo.par = 0;
|
||||||
|
|
||||||
// get last undo par and set the right(new) inset-owner of the
|
// Get last undo par and set the right(new) inset-owner of the
|
||||||
// paragraph if there is any. This is not needed if we don't have
|
// paragraph if there is any. This is not needed if we don't
|
||||||
// a paragraph before because then in is automatically done in the
|
// have a paragraph before because then in is automatically
|
||||||
// function which assigns the first paragraph to an InsetText. (Jug)
|
// done in the function which assigns the first paragraph to
|
||||||
|
// an InsetText. (Jug)
|
||||||
Paragraph * lastundopar = undopar;
|
Paragraph * lastundopar = undopar;
|
||||||
if (lastundopar) {
|
if (lastundopar) {
|
||||||
Inset * in = 0;
|
Inset * in = 0;
|
||||||
@ -122,7 +125,7 @@ bool textHandleUndo(BufferView * bv, Undo & undo)
|
|||||||
|
|
||||||
vector<Paragraph *> deletelist;
|
vector<Paragraph *> deletelist;
|
||||||
|
|
||||||
// now add old paragraphs to be deleted
|
// Now add old paragraphs to be deleted.
|
||||||
if (before != behind || (!behind && !before)) {
|
if (before != behind || (!behind && !before)) {
|
||||||
Paragraph * deletepar;
|
Paragraph * deletepar;
|
||||||
if (before)
|
if (before)
|
||||||
@ -135,7 +138,7 @@ bool textHandleUndo(BufferView * bv, Undo & undo)
|
|||||||
Paragraph * tmppar = deletepar;
|
Paragraph * tmppar = deletepar;
|
||||||
deletepar = deletepar->next();
|
deletepar = deletepar->next();
|
||||||
|
|
||||||
// a memory optimization for edit:
|
// A memory optimization for edit:
|
||||||
// Only layout information
|
// Only layout information
|
||||||
// is stored in the undo. So restore
|
// is stored in the undo. So restore
|
||||||
// the text informations.
|
// the text informations.
|
||||||
@ -150,14 +153,14 @@ bool textHandleUndo(BufferView * bv, Undo & undo)
|
|||||||
// next/prev pointer in the paragraphs so that a rebuild of
|
// next/prev pointer in the paragraphs so that a rebuild of
|
||||||
// the LyXText works!!!
|
// the LyXText works!!!
|
||||||
|
|
||||||
// thread the end of the undo onto the par in front if any
|
// Thread the end of the undo onto the par in front if any.
|
||||||
if (lastundopar) {
|
if (lastundopar) {
|
||||||
lastundopar->next(behind);
|
lastundopar->next(behind);
|
||||||
if (behind)
|
if (behind)
|
||||||
behind->previous(lastundopar);
|
behind->previous(lastundopar);
|
||||||
}
|
}
|
||||||
|
|
||||||
// put the new stuff in the list if there is one
|
// Put the new stuff in the list if there is one.
|
||||||
if (undopar) {
|
if (undopar) {
|
||||||
undopar->previous(before);
|
undopar->previous(before);
|
||||||
if (before)
|
if (before)
|
||||||
@ -172,9 +175,9 @@ bool textHandleUndo(BufferView * bv, Undo & undo)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// We enter here on DELETE undo operations where we have to
|
// We enter here on DELETE undo operations where we
|
||||||
// substitue the second paragraph with the first if the removed
|
// have to substitue the second paragraph with the
|
||||||
// one is the first!
|
// first if the removed one is the first.
|
||||||
if (!before && behind) {
|
if (!before && behind) {
|
||||||
int id = firstUndoParagraph(bv, undo.number_of_inset_id)->id();
|
int id = firstUndoParagraph(bv, undo.number_of_inset_id)->id();
|
||||||
Paragraph * op = &*bv->buffer()->getParFromID(id);
|
Paragraph * op = &*bv->buffer()->getParFromID(id);
|
||||||
@ -189,14 +192,16 @@ bool textHandleUndo(BufferView * bv, Undo & undo)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Set the cursor for redoing
|
// Set the cursor for redoing.
|
||||||
if (before) { // if we have a par before the undopar
|
// If we have a par before the undopar.
|
||||||
|
if (before) {
|
||||||
Inset * it = before->inInset();
|
Inset * it = before->inInset();
|
||||||
if (it)
|
if (it)
|
||||||
it->getLyXText(bv)->setCursorIntern(before, 0);
|
it->getLyXText(bv)->setCursorIntern(before, 0);
|
||||||
else
|
else
|
||||||
bv->text->setCursorIntern(before, 0);
|
bv->text->setCursorIntern(before, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// we are not ready for this we cannot set the cursor for a paragraph
|
// we are not ready for this we cannot set the cursor for a paragraph
|
||||||
// which is not already in a row of LyXText!!!
|
// which is not already in a row of LyXText!!!
|
||||||
#if 0
|
#if 0
|
||||||
@ -210,7 +215,8 @@ bool textHandleUndo(BufferView * bv, Undo & undo)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
Paragraph * endpar = 0;
|
Paragraph * endpar = 0;
|
||||||
// calculate the endpar for redoing the paragraphs.
|
|
||||||
|
// Calculate the endpar for redoing the paragraphs.
|
||||||
if (behind)
|
if (behind)
|
||||||
endpar = behind->next();
|
endpar = behind->next();
|
||||||
|
|
||||||
@ -233,8 +239,8 @@ bool textHandleUndo(BufferView * bv, Undo & undo)
|
|||||||
t = bv->text;
|
t = bv->text;
|
||||||
}
|
}
|
||||||
t->setCursorIntern(tmppar, undo.cursor_pos);
|
t->setCursorIntern(tmppar, undo.cursor_pos);
|
||||||
// clear any selection and set the selection cursor
|
// Clear any selection and set the selection
|
||||||
// for an evt. new selection.
|
// cursor for an evt. new selection.
|
||||||
t->clearSelection();
|
t->clearSelection();
|
||||||
t->selection.cursor = t->cursor;
|
t->selection.cursor = t->cursor;
|
||||||
t->updateCounters();
|
t->updateCounters();
|
||||||
@ -257,23 +263,21 @@ bool textHandleUndo(BufferView * bv, Undo & undo)
|
|||||||
t = bv->text;
|
t = bv->text;
|
||||||
}
|
}
|
||||||
t->setCursorIntern(tmppar, undo.cursor_pos);
|
t->setCursorIntern(tmppar, undo.cursor_pos);
|
||||||
// clear any selection and set the selection cursor
|
// Clear any selection and set the selection
|
||||||
// for an evt. new selection.
|
// cursor for an evt. new selection.
|
||||||
t->clearSelection();
|
t->clearSelection();
|
||||||
t->selection.cursor = t->cursor;
|
t->selection.cursor = t->cursor;
|
||||||
t->updateCounters();
|
t->updateCounters();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// And here it's safe enough to delete all removed paragraphs
|
// And here it's safe enough to delete all removed paragraphs.
|
||||||
vector<Paragraph *>::iterator pit = deletelist.begin();
|
vector<Paragraph *>::iterator pit = deletelist.begin();
|
||||||
if (pit != deletelist.end()) {
|
for(; pit != deletelist.end(); ++pit) {
|
||||||
for(;pit != deletelist.end(); ++pit) {
|
(*pit)->previous(0);
|
||||||
(*pit)->previous(0);
|
(*pit)->next(0);
|
||||||
(*pit)->next(0);
|
delete (*pit);
|
||||||
delete (*pit);
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
finishUndo();
|
finishUndo();
|
||||||
bv->text->postPaint(0);
|
bv->text->postPaint(0);
|
||||||
@ -310,18 +314,18 @@ bool createUndo(BufferView * bv, Undo::undo_kind kind,
|
|||||||
// EDIT is special since only layout information, not the
|
// EDIT is special since only layout information, not the
|
||||||
// contents of a paragaph are stored.
|
// contents of a paragaph are stored.
|
||||||
if (!undo_finished && (kind != Undo::EDIT) && (kind != Undo::FINISH)) {
|
if (!undo_finished && (kind != Undo::EDIT) && (kind != Undo::FINISH)) {
|
||||||
// check whether storing is needed
|
// Check whether storing is needed.
|
||||||
if (!b->undostack.empty() &&
|
if (!b->undostack.empty() &&
|
||||||
b->undostack.top()->kind == kind &&
|
b->undostack.top()->kind == kind &&
|
||||||
b->undostack.top()->number_of_before_par == before_number &&
|
b->undostack.top()->number_of_before_par == before_number &&
|
||||||
b->undostack.top()->number_of_behind_par == behind_number) {
|
b->undostack.top()->number_of_behind_par == behind_number) {
|
||||||
// no undo needed
|
// No undo needed.
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// create a new Undo
|
// Create a new Undo.
|
||||||
Paragraph * undopar = 0; // nothing to replace (undo of delete maybe)
|
Paragraph * undopar = 0;
|
||||||
|
|
||||||
Paragraph * start = first;
|
Paragraph * start = first;
|
||||||
Paragraph * end = 0;
|
Paragraph * end = 0;
|
||||||
@ -340,8 +344,8 @@ bool createUndo(BufferView * bv, Undo::undo_kind kind,
|
|||||||
Paragraph * tmppar = start;
|
Paragraph * tmppar = start;
|
||||||
Paragraph * tmppar2 = new Paragraph(*tmppar, true);
|
Paragraph * tmppar2 = new Paragraph(*tmppar, true);
|
||||||
|
|
||||||
// a memory optimization: Just store the layout information
|
// A memory optimization: Just store the layout
|
||||||
// when only edit
|
// information when only edit.
|
||||||
if (kind == Undo::EDIT) {
|
if (kind == Undo::EDIT) {
|
||||||
tmppar2->clearContents();
|
tmppar2->clearContents();
|
||||||
}
|
}
|
||||||
@ -375,7 +379,7 @@ bool createUndo(BufferView * bv, Undo::undo_kind kind,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// returns false if no undo possible
|
// Returns false if no undo possible.
|
||||||
bool textUndoOrRedo(BufferView * bv,
|
bool textUndoOrRedo(BufferView * bv,
|
||||||
limited_stack<boost::shared_ptr<Undo> > & stack,
|
limited_stack<boost::shared_ptr<Undo> > & stack,
|
||||||
limited_stack<boost::shared_ptr<Undo> > & otherstack)
|
limited_stack<boost::shared_ptr<Undo> > & otherstack)
|
||||||
@ -405,9 +409,10 @@ bool textUndoOrRedo(BufferView * bv,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// now we can unlock the inset for saftey because the inset pointer could
|
// Now we can unlock the inset for saftey because the inset
|
||||||
// be changed during the undo-function. Anyway if needed we have to lock
|
// pointer could be changed during the undo-function. Anyway
|
||||||
// the right inset/position if this is requested.
|
// if needed we have to lock the right inset/position if this
|
||||||
|
// is requested.
|
||||||
freezeUndo();
|
freezeUndo();
|
||||||
bv->unlockInset(bv->theLockingInset());
|
bv->unlockInset(bv->theLockingInset());
|
||||||
bool const ret = textHandleUndo(bv, *undo.get());
|
bool const ret = textHandleUndo(bv, *undo.get());
|
||||||
@ -417,36 +422,39 @@ bool textUndoOrRedo(BufferView * bv,
|
|||||||
|
|
||||||
} // namespace anon
|
} // namespace anon
|
||||||
|
|
||||||
|
|
||||||
void finishUndo()
|
void finishUndo()
|
||||||
{
|
{
|
||||||
// makes sure the next operation will be stored
|
// Makes sure the next operation will be stored.
|
||||||
undo_finished = true;
|
undo_finished = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void freezeUndo()
|
void freezeUndo()
|
||||||
{
|
{
|
||||||
// this is dangerous and for internal use only
|
// This is dangerous and for internal use only.
|
||||||
undo_frozen = true;
|
undo_frozen = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void unFreezeUndo()
|
void unFreezeUndo()
|
||||||
{
|
{
|
||||||
// this is dangerous and for internal use only
|
// This is dangerous and for internal use only.
|
||||||
undo_frozen = false;
|
undo_frozen = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool textUndo(BufferView * bv)
|
bool textUndo(BufferView * bv)
|
||||||
{
|
{
|
||||||
return textUndoOrRedo(bv, bv->buffer()->undostack, bv->buffer()->redostack);
|
return textUndoOrRedo(bv, bv->buffer()->undostack,
|
||||||
|
bv->buffer()->redostack);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool textRedo(BufferView * bv)
|
bool textRedo(BufferView * bv)
|
||||||
{
|
{
|
||||||
return textUndoOrRedo(bv, bv->buffer()->redostack, bv->buffer()->undostack);
|
return textUndoOrRedo(bv, bv->buffer()->redostack,
|
||||||
|
bv->buffer()->undostack);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user