X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FDocIterator.cpp;h=d14e0b32ab27090c96ce2a57f1955e9731f1837e;hb=4c11ba11fdfa84b4cb36b7ee20cfadb749baa19d;hp=58b91dff3620f43a258b2a84daa056413c1da3d9;hpb=02028c0b12ba94093e4e77494e7158a58f1631e5;p=lyx.git diff --git a/src/DocIterator.cpp b/src/DocIterator.cpp index 58b91dff36..d14e0b32ab 100644 --- a/src/DocIterator.cpp +++ b/src/DocIterator.cpp @@ -656,6 +656,26 @@ void DocIterator::sanitize() } +bool DocIterator::isInside(Inset const * p) const +{ + for (CursorSlice const & sl : slices_) + if (&sl.inset() == p) + return true; + return false; +} + + +void DocIterator::leaveInset(Inset const & inset) +{ + for (size_t i = 0; i != slices_.size(); ++i) { + if (&slices_[i].inset() == &inset) { + resize(i); + return; + } + } +} + + int DocIterator::find(MathData const & cell) const { for (size_t l = 0; l != slices_.size(); ++l) { @@ -713,15 +733,62 @@ Encoding const * DocIterator::getEncoding() const { if (empty()) return 0; + BufferParams const & bp = buffer()->params(); if (bp.useNonTeXFonts) return encodings.fromLyXName("utf8-plain"); + // With platex, we don't switch encodings (not even if forced). + if (bp.encoding().package() == Encoding::japanese) + return &bp.encoding(); + CursorSlice const & sl = innerTextSlice(); Text const & text = *sl.text(); - Font font = text.getPar(sl.pit()).getFont(bp, sl.pos(), - text.outerFont(sl.pit())); - return font.language()->encoding(); + Language const * lang = + text.getPar(sl.pit()).getFont(bp, sl.pos(), + text.outerFont(sl.pit())).language(); + // If we have a custom encoding for the buffer, we don't switch + // encodings (see output_latex::switchEncoding()) + bool const customenc = bp.inputenc != "auto-legacy" && bp.inputenc != "auto-legacy-plain"; + Encoding const * enc = customenc ? &bp.encoding() : lang->encoding(); + + // Some insets force specific encodings sometimes (e.g., listings in + // multibyte context forces singlebyte). + if (inset().forcedEncoding(enc, encodings.fromLyXName("iso8859-1"))) { + // Get the language outside the inset + size_t const n = depth(); + for (size_t i = 0; i < n; ++i) { + Text const & otext = *slices_[i].text(); + Language const * olang = + otext.getPar(slices_[i].pit()).getFont(bp, slices_[i].pos(), + otext.outerFont(slices_[i].pit())).language(); + Encoding const * oenc = olang->encoding(); + if (oenc->name() != "inherit") + return inset().forcedEncoding(enc, oenc); + } + // Fall back to buffer encoding if no outer lang was found. + return inset().forcedEncoding(enc, &bp.encoding()); + } + + // Inherited encoding (latex_language) is determined by the context + // Look for the first outer encoding that is not itself "inherit" + if (lang->encoding()->name() == "inherit") { + size_t const n = depth(); + for (size_t i = 0; i < n; ++i) { + Text const & otext = *slices_[i].text(); + Language const * olang = + otext.getPar(slices_[i].pit()).getFont(bp, slices_[i].pos(), + otext.outerFont(slices_[i].pit())).language(); + // Again, if we have a custom encoding, this is used + // instead of the language's. + Encoding const * oenc = customenc + ? &bp.encoding() : olang->encoding(); + if (olang->encoding()->name() != "inherit") + return oenc; + } + } + + return enc; }