X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fparagraph_pimpl.C;h=8c0461b83059a6e275f2f2722462430856ee05b4;hb=de161c40b1e8c5896f18f503c12cf29ec57bbf1e;hp=4ffd914f3e7943d8599a7727ccf8f55acefb5735;hpb=3d0c8789660dfa279191c4d46c6ccba010e29e41;p=lyx.git diff --git a/src/paragraph_pimpl.C b/src/paragraph_pimpl.C index 4ffd914f3e..8c0461b830 100644 --- a/src/paragraph_pimpl.C +++ b/src/paragraph_pimpl.C @@ -14,6 +14,7 @@ #include #include "paragraph_pimpl.h" +#include "paragraph.h" #include "bufferparams.h" #include "debug.h" @@ -109,12 +110,20 @@ void Paragraph::Pimpl::untrackChanges() } -void Paragraph::Pimpl::cleanChanges() +void Paragraph::Pimpl::cleanChanges(Paragraph::ChangeTracking ct) { - // if we're not tracking, we don't want to reset... - if (!tracking()) + // if the paragraph was not tracked and we don't know the buffer's + // change tracking state, we do nothing + if ((ct == Paragraph::trackingUnknown) && !tracking()) return; + // untrack everything if we are in a buffer where ct is disabled + else if (ct == Paragraph::trackingOff) { + untrackChanges(); + return; + } + + // in a buffer where ct is enabled, set everything to INSERTED changes_.reset(new Changes(Change::INSERTED)); changes_->set(Change::INSERTED, 0, size() + 1); } @@ -138,7 +147,7 @@ bool Paragraph::Pimpl::isChangeEdited(pos_type start, pos_type end) const } -void Paragraph::Pimpl::setChange(pos_type pos, Change::Type type) +void Paragraph::Pimpl::setChangeType(pos_type pos, Change::Type type) { if (!tracking()) return; @@ -147,7 +156,7 @@ void Paragraph::Pimpl::setChange(pos_type pos, Change::Type type) } -void Paragraph::Pimpl::setChangeFull(pos_type pos, Change change) +void Paragraph::Pimpl::setChange(pos_type pos, Change change) { if (!tracking()) return; @@ -155,21 +164,13 @@ void Paragraph::Pimpl::setChangeFull(pos_type pos, Change change) changes_->set(change, pos); } -Change::Type Paragraph::Pimpl::lookupChange(pos_type pos) const -{ - if (!tracking()) - return Change::UNCHANGED; - - return changes_->lookup(pos); -} - -Change const Paragraph::Pimpl::lookupChangeFull(pos_type pos) const +Change const Paragraph::Pimpl::lookupChange(pos_type pos) const { if (!tracking()) return Change(Change::UNCHANGED); - return changes_->lookupFull(pos); + return changes_->lookup(pos); } @@ -203,7 +204,7 @@ void Paragraph::Pimpl::acceptChange(pos_type start, pos_type end) pos_type i = start; for (; i < end; ++i) { - switch (lookupChange(i)) { + switch (lookupChange(i).type) { case Change::UNCHANGED: break; @@ -212,7 +213,7 @@ void Paragraph::Pimpl::acceptChange(pos_type start, pos_type end) break; case Change::DELETED: - // Suppress access to nonexistent + // Suppress access to nonexistent // "end-of-paragraph char": if (i < size()) { eraseIntern(i); @@ -242,7 +243,7 @@ void Paragraph::Pimpl::rejectChange(pos_type start, pos_type end) pos_type i = start; for (; i < end; ++i) { - switch (lookupChange(i)) { + switch (lookupChange(i).type) { case Change::UNCHANGED: break; @@ -369,11 +370,11 @@ bool Paragraph::Pimpl::erase(pos_type pos) BOOST_ASSERT(pos <= size()); if (tracking()) { - Change::Type changetype(changes_->lookup(pos)); - changes_->record(Change(Change::DELETED), pos); + Change::Type changetype(changes_->lookup(pos).type); // only allow the actual removal if it was /new/ text if (changetype != Change::INSERTED) { + changes_->record(Change(Change::DELETED), pos); if (pos < size() && owner_->isInset(pos)) owner_->getInset(pos)->markErased(true); return false; @@ -531,7 +532,7 @@ void Paragraph::Pimpl::simpleTeXSpecialChars(Buffer const & buf, // output change tracking marks only if desired, // if dvipost is installed, // and with dvi/ps (other formats don't work) - LaTeXFeatures features(buf, bparams, runparams.nice); + LaTeXFeatures features(buf, bparams, runparams); bool const output = bparams.output_changes && runparams.flavor == OutputParams::LATEX && features.isAvailable("dvipost"); @@ -602,9 +603,9 @@ void Paragraph::Pimpl::simpleTeXSpecialChars(Buffer const & buf, if ((bparams.inputenc == "latin1" || bparams.inputenc == "latin9") || (bparams.inputenc == "auto" && - (font.language()->encoding()->LatexName() + (font.language()->encoding()->latexName() == "latin1" || - font.language()->encoding()->LatexName() + font.language()->encoding()->latexName() == "latin9"))) { os << "\\ensuremath{" << c