]> git.lyx.org Git - lyx.git/commitdiff
* src/paragraph_funcs.C: moveItem() now really moves
authorMichael Schmitt <michael.schmitt@teststep.org>
Sat, 25 Nov 2006 23:02:10 +0000 (23:02 +0000)
committerMichael Schmitt <michael.schmitt@teststep.org>
Sat, 25 Nov 2006 23:02:10 +0000 (23:02 +0000)
items (instead of corrupting the source); adjust
calls to moveItem(); clean up breakParagraphConservative()
with regards to change tracking

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16047 a592a061-630c-0410-9148-cb99ea01b6c8

src/paragraph_funcs.C

index 95c7c1552633e5d0cd4a93812187742c9499eea2..1fed78e8919291b385b56b2deadfc61ee8ff4732 100644 (file)
@@ -25,6 +25,9 @@ using std::string;
 static bool moveItem(Paragraph & fromPar, pos_type fromPos,
        Paragraph & toPar, pos_type toPos, BufferParams const & params)
 {
 static bool moveItem(Paragraph & fromPar, pos_type fromPos,
        Paragraph & toPar, pos_type toPos, BufferParams const & params)
 {
+       // Note: moveItem() does not honour change tracking!
+       // Therefore, it should only be used for breaking and merging paragraphs
+
        Paragraph::value_type const tmpChar = fromPar.getChar(fromPos);
        LyXFont const tmpFont = fromPar.getFontSettings(params, fromPos);
        Change const tmpChange = fromPar.lookupChange(fromPos);
        Paragraph::value_type const tmpChar = fromPar.getChar(fromPos);
        LyXFont const tmpFont = fromPar.getFontSettings(params, fromPos);
        Change const tmpChange = fromPar.lookupChange(fromPos);
@@ -32,20 +35,23 @@ static bool moveItem(Paragraph & fromPar, pos_type fromPos,
        if (tmpChar == Paragraph::META_INSET) {
                InsetBase * tmpInset = 0;
                if (fromPar.getInset(fromPos)) {
        if (tmpChar == Paragraph::META_INSET) {
                InsetBase * tmpInset = 0;
                if (fromPar.getInset(fromPos)) {
-                       // the inset is not in a paragraph anymore
+                       // the inset is not in the paragraph any more
                        tmpInset = fromPar.insetlist.release(fromPos);
                        tmpInset = fromPar.insetlist.release(fromPos);
-                       fromPar.insetlist.erase(fromPos);
                }
 
                }
 
+               fromPar.eraseChar(fromPos, false);
+
                if (!toPar.insetAllowed(tmpInset->lyxCode())) {
                        delete tmpInset;
                        return false;
                }
                if (!toPar.insetAllowed(tmpInset->lyxCode())) {
                        delete tmpInset;
                        return false;
                }
-               if (tmpInset)
-                       toPar.insertInset(toPos, tmpInset, tmpFont, tmpChange);
+
+               toPar.insertInset(toPos, tmpInset, tmpFont, tmpChange);
        } else {
        } else {
+               fromPar.eraseChar(fromPos, false);
                toPar.insertChar(toPos, tmpChar, tmpFont, tmpChange);
        }
                toPar.insertChar(toPos, tmpChar, tmpFont, tmpChange);
        }
+
        return true;
 }
 
        return true;
 }
 
@@ -105,20 +111,16 @@ void breakParagraph(BufferParams const & bparams,
                 */
                pos_type pos_end = par.size() - 1;
 
                 */
                pos_type pos_end = par.size() - 1;
 
-               for (pos_type i = pos, j = pos; i <= pos_end; ++i) {
-                       if (moveItem(par, i, *tmp, j - pos, bparams)) {
+               for (pos_type i = pos, j = 0; i <= pos_end; ++i) {
+                       if (moveItem(par, pos, *tmp, j, bparams)) {
                                ++j;
                        }
                }
                                ++j;
                        }
                }
-
-               for (pos_type i = pos_end; i >= pos; --i)
-                       // FIXME: change tracking (MG)
-                       par.eraseChar(i, false); // erase without change tracking
        }
 
        if (pos) {
                // Make sure that we keep the language when
        }
 
        if (pos) {
                // Make sure that we keep the language when
-               // breaking paragrpah.
+               // breaking paragraph.
                if (tmp->empty()) {
                        LyXFont changed = tmp->getFirstFontSettings(bparams);
                        LyXFont old = par.getFontSettings(bparams, par.size());
                if (tmp->empty()) {
                        LyXFont changed = tmp->getFirstFontSettings(bparams);
                        LyXFont old = par.getFontSettings(bparams, par.size());
@@ -162,31 +164,21 @@ void breakParagraphConservative(BufferParams const & bparams,
 
        tmp.makeSameLayout(par);
 
 
        tmp.makeSameLayout(par);
 
-       // When can pos > size()?
-       // I guess pos == size() is possible.
-       if (par.size() > pos) {
-               // copy everything behind the break-position to the new
-               // paragraph
+       BOOST_ASSERT(pos <= par.size());
+
+       if (pos < par.size()) {
+               // move everything behind the break position to the new paragraph
                pos_type pos_end = par.size() - 1;
 
                pos_type pos_end = par.size() - 1;
 
-               for (pos_type i = pos, j = pos; i <= pos_end; ++i) {
-                       if (moveItem(par, i, tmp, j - pos, bparams)) {
+               for (pos_type i = pos, j = 0; i <= pos_end; ++i) {
+                       if (moveItem(par, pos, tmp, j, bparams)) {
                                ++j;
                        }
                }
                                ++j;
                        }
                }
-               // Move over end-of-par change attr
-               // FIXME: change tracking (MG)
-               tmp.setChange(tmp.size(), Change(par.lookupChange(par.size()).type));
-
-               // If tracking changes, set all the text that is to be
-               // erased to Change::INSERTED.
-               for (pos_type k = pos_end; k >= pos; --k) {
-                       if (bparams.trackChanges)
-                               // FIXME: Change tracking (MG)
-                               par.setChange(k, Change(Change::INSERTED));
-                       // FIXME: change tracking (MG)
-                       par.eraseChar(k, false);
-               }
+               // Move over the end-of-par change information
+               tmp.setChange(tmp.size(), par.lookupChange(par.size()));
+               par.setChange(par.size(), Change(bparams.trackChanges ?
+                                          Change::INSERTED : Change::UNCHANGED));
        }
 }
 
        }
 }
 
@@ -209,8 +201,8 @@ void mergeParagraph(BufferParams const & bparams,
 
        Change change = next.lookupChange(next.size());
        // ok, now copy the paragraph
 
        Change change = next.lookupChange(next.size());
        // ok, now copy the paragraph
-       for (pos_type i = 0, j = 0; i <= pos_end; ++i) {
-               if (moveItem(next, i, par, pos_insert + j, bparams)) {
+       for (pos_type i = 0, j = pos_insert; i <= pos_end; ++i) {
+               if (moveItem(next, 0, par, j, bparams)) {
                        ++j;
                }
        }
                        ++j;
                }
        }