/* This file is part of * ====================================================== * * LyX, The Document Processor * * Copyright 1995-2001 The LyX Team. * * ====================================================== */ #include #include "undo_funcs.h" #include "lyxtext.h" #include "funcrequest.h" #include "BufferView.h" #include "buffer.h" #include "insets/updatableinset.h" #include "insets/insettext.h" #include "debug.h" #include "support/LAssert.h" #include "iterators.h" /// The flag used by FinishUndo(). bool undo_finished; /// Whether actions are not added to the undo stacks. bool undo_frozen; namespace { /** * Finish the undo operation in the case there was no entry * on the stack to perform. */ void finishNoUndo(BufferView * bv) { freezeUndo(); bv->unlockInset(bv->theLockingInset()); finishUndo(); bv->text->postPaint(0); unFreezeUndo(); } // Returns false if no undo possible. bool textHandleUndo(BufferView * bv, Undo & undo) { Buffer * buf = bv->buffer(); ParagraphList * plist = &buf->paragraphs; /* ParIterator null = buf->par_iterator_end(); for (ParIterator it = buf->par_iterator_begin(); it != null; ++it) if (it.plist().id() == undo.plist_id) { plist = &it.plist(); break; } */ // Set the right(new) inset-owner of the paragraph if there is any. UpdatableInset * inset = 0; if (undo.inset_id >= 0) { Inset * in = bv->buffer()->getInsetFromID(undo.inset_id); inset = static_cast(in); } ParagraphList::iterator pit = undo.pars.begin(); ParagraphList::iterator end = undo.pars.end(); for ( ; pit != end; ++pit) pit->setInsetOwner(inset); lyxerr << "\nhandle: inset_id: " << undo.inset_id << "\n"; lyxerr << "handle: inset: " << inset << "\n"; lyxerr << "handle: plist_id: " << undo.plist_id << "\n"; lyxerr << "handle: undo.pars.size(): " << undo.pars.size() << "\n"; // remove stuff between first and behind { ParagraphList::iterator first = plist->begin(); advance(first, undo.first_par_offset); ParagraphList::iterator last = plist->begin(); advance(last, plist->size() - undo.last_par_offset); lyxerr << "handle: first_id: " << first->id() << "\n"; lyxerr << "handle: last_id: " << last->id() << "\n"; plist->erase(first, ++last); lyxerr << "after remove\n"; } // re-insert old stuff { ParagraphList::iterator first = plist->begin(); advance(first, undo.first_par_offset); plist->insert(first, undo.pars.begin(), undo.pars.end()); lyxerr << "after insert\n"; } /* // A memory optimization for edit: // Only layout information // is stored in the undo. So restore // the text informations. if (undo.kind == Undo::EDIT) { undo.pars[par]->setContentsFromPar(*deletelist.back()); ++par; } */ // redo Paragraphs (should be handled outside undo...) LyXText * text = inset ? inset->getLyXText(bv) : bv->text; { lyxerr << "text: " << text << "\n"; if (undo.first_par_offset) { ParagraphList::iterator redo = plist->begin(); advance(redo, undo.first_par_offset); text->setCursorIntern(plist->begin(), 0); } text->redoParagraphs(text->cursor, plist->end()); lyxerr << "after redo\n"; } /* Inset * = bv->buffer()->getInsetFromID(inset_id); lyxerr << "tmppar: " << tmppar->id() << "\n"; LyXText * t; if (it) { FuncRequest cmd(bv, LFUN_INSET_EDIT, "left"); it->localDispatch(cmd); t = it->getLyXText(bv); } else { t = bv->text; } t->setCursorIntern(*tmppar, undo.cursor_pos); // Clear any selection and set the selection // cursor for an evt. new selection. t->clearSelection(); t->selection.cursor = t->cursor; t->updateCounters(); */ if (inset) { lyxerr << "fit cursor...\n"; bv->fitCursor(); bv->updateInset(inset); } // set cursor { ParagraphList::iterator cursor = plist->begin(); advance(cursor, undo.cursor_par_offset); bv->text->setCursorIntern(cursor, undo.cursor_pos); lyxerr << "after setCursor\n"; } finishUndo(); bv->text->postPaint(0); lyxerr << "finished textHandleUndo...\n"; return true; } void createUndo(BufferView * bv, Undo::undo_kind kind, ParagraphList::iterator first, ParagraphList::iterator last, limited_stack & stack) { Buffer * buf = bv->buffer(); ParagraphList * plist = 0; ParIterator null = buf->par_iterator_end(); lyxerr << "\n"; #if 0 // this is what we'd like to have in the end for small grained undo for (ParIterator it = buf->par_iterator_begin(); it != null; ++it) { if (it->id() == first->id()) { plist = &it.plist(); break; } } #else // and that's the big stick we wield now lyxerr << "create: first_id orig: " << first->id() << "\n"; lyxerr << "create: last_id orig: " << last->id() << "\n"; plist = &buf->paragraphs; // this is what we'd like to have in the end for small grained undo for (ParIterator it = buf->par_iterator_begin(); it != null; ++it) { if (it->id() == first->id()) { first = it.outerPar(); last = it.outerPar(); break; } } #endif int const inset_id = first->inInset() ? first->inInset()->id() : -1; int const first_offset = std::distance(plist->begin(), first); int const last_offset = std::distance(last, plist->end()); if (last == plist->end()) { lyxerr << "*** createUndo: last == end schould not happen\n"; } //lyxerr << "create: plist_id: " << plist->id() << "\n"; lyxerr << "create: first_id: " << first->id() << "\n"; lyxerr << "create: last_id: " << last->id() << "\n"; lyxerr << "create: first_offset: " << first_offset << "\n"; lyxerr << "create: last_offset: " << last_offset << "\n"; lyxerr << "create: inset_id: " << inset_id << "\n"; lyxerr << "create: kind: " << kind << "\n"; // Undo::EDIT and Undo::FINISH are // always finished. (no overlapping there) // overlapping only with insert and delete inside one paragraph: // Nobody wants all removed character // appear one by one when undoing. // EDIT is special since only layout information, not the // contents of a paragaph are stored. if (!undo_finished && kind != Undo::EDIT && kind != Undo::FINISH) { // Check whether storing is needed. if (!buf->undostack.empty() && buf->undostack.top().kind == kind && buf->undostack.top().first_par_offset == first_offset && buf->undostack.top().last_par_offset == last_offset) { // No undo needed. return; } } // Create a new Undo. /* // this should be re-activated once we are back at fine-grained undo LyXCursor const & cur = bv->theLockingInset() ? bv->theLockingInset()->cursor(bv) : bv->text->cursor; int const cursor_offset = std::distance(plist->begin(), cur.par()); stack.push(Undo(kind, inset_id, plist->id(), first_offset, last_offset, cursor_offset, cur.pos(), ParagraphList())); */ stack.push(Undo(kind, inset_id, 0, //plist->id(), first_offset, last_offset, first_offset, 0, ParagraphList())); ParagraphList & undo_pars = stack.top().pars; for (ParagraphList::iterator it = first; it != last; ++it) { undo_pars.push_back(*it); undo_pars.back().id(it->id()); } undo_pars.push_back(*last); undo_pars.back().id(last->id()); // A memory optimization: Just store the layout // information when only edit. #warning Waste... //if (kind == Undo::EDIT) // for (size_t i = 0, n = undo_pars.size(); i < n; ++i) // undo_pars[i]->clearContents(); undo_finished = false; } // Returns false if no undo possible. bool textUndoOrRedo(BufferView * bv, limited_stack & stack, limited_stack & otherstack) { if (stack.empty()) { finishNoUndo(bv); return false; } Undo undo = stack.top(); stack.pop(); finishUndo(); if (!undo_frozen) { otherstack.push(undo); otherstack.top().pars.clear(); Buffer * buf = bv->buffer(); ParagraphList & plist = buf->paragraphs; lyxerr << "\nredo: first: " << undo.first_par_offset << "\n"; lyxerr << "redo: last: " << undo.last_par_offset << "\n"; lyxerr << "redo: size: " << plist.size() << "\n"; if (undo.first_par_offset + undo.last_par_offset <= int(plist.size())) { ParagraphList::iterator first = plist.begin(); advance(first, undo.first_par_offset); ParagraphList::iterator last = plist.begin(); advance(last, plist.size() - undo.last_par_offset + 1); otherstack.top().pars.insert(otherstack.top().pars.begin(), first, last); } } // 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 = textHandleUndo(bv, undo); unFreezeUndo(); return ret; } } // namespace anon void finishUndo() { // Makes sure the next operation will be stored. undo_finished = true; } void freezeUndo() { // This is dangerous and for internal use only. undo_frozen = true; } void unFreezeUndo() { // This is dangerous and for internal use only. undo_frozen = false; } 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 setUndo(BufferView * bv, Undo::undo_kind kind, ParagraphList::iterator first) { setUndo(bv, kind, first, first); } void setUndo(BufferView * bv, Undo::undo_kind kind, ParagraphList::iterator first, ParagraphList::iterator last) { if (!undo_frozen) { createUndo(bv, kind, first, last, bv->buffer()->undostack); bv->buffer()->redostack.clear(); } } void setCursorParUndo(BufferView * bv) { setUndo(bv, Undo::FINISH, bv->text->cursor.par()); }