]> git.lyx.org Git - lyx.git/blob - src/Paragraph.cpp
Correct Right Arrow key processing in Modules list
[lyx.git] / src / Paragraph.cpp
1 /**
2  * \file Paragraph.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author Lars Gullik Bjønnes
8  * \author Richard Heck (XHTML output)
9  * \author Jean-Marc Lasgouttes
10  * \author Angus Leeming
11  * \author John Levon
12  * \author André Pönitz
13  * \author Dekel Tsur
14  * \author Jürgen Vigna
15  *
16  * Full author contact details are available in file CREDITS.
17  */
18
19 #include <config.h>
20
21 #include "Paragraph.h"
22
23 #include "LayoutFile.h"
24 #include "Buffer.h"
25 #include "BufferParams.h"
26 #include "Changes.h"
27 #include "Counters.h"
28 #include "BufferEncodings.h"
29 #include "InsetList.h"
30 #include "Language.h"
31 #include "LaTeXFeatures.h"
32 #include "Layout.h"
33 #include "Font.h"
34 #include "FontList.h"
35 #include "LyXRC.h"
36 #include "OutputParams.h"
37 #include "output_latex.h"
38 #include "output_xhtml.h"
39 #include "output_docbook.h"
40 #include "ParagraphParameters.h"
41 #include "SpellChecker.h"
42 #include "xml.h"
43 #include "texstream.h"
44 #include "TextClass.h"
45 #include "TexRow.h"
46 #include "Text.h"
47 #include "WordLangTuple.h"
48 #include "WordList.h"
49
50 #include "frontends/alert.h"
51
52 #include "insets/InsetBibitem.h"
53 #include "insets/InsetLabel.h"
54 #include "insets/InsetSpecialChar.h"
55 #include "insets/InsetText.h"
56
57 #include "mathed/InsetMathHull.h"
58
59 #include "support/debug.h"
60 #include "support/docstring_list.h"
61 #include "support/ExceptionMessage.h"
62 #include "support/gettext.h"
63 #include "support/lassert.h"
64 #include "support/Length.h"
65 #include "support/lstrings.h"
66 #include "support/textutils.h"
67 #include "output_docbook.h"
68
69 #include <atomic>
70 #include <sstream>
71 #include <vector>
72
73 using namespace std;
74 using namespace lyx::support;
75
76 // OSX clang, gcc < 4.8.0, and msvc < 2015 do not support C++11 thread_local
77 #if defined(__APPLE__) || (defined(__GNUC__) && __GNUC__ == 4 && __GNUC_MINOR__ < 8)
78 #define THREAD_LOCAL_STATIC static __thread
79 #elif defined(_MSC_VER) && (_MSC_VER < 1900)
80 #define THREAD_LOCAL_STATIC static __declspec(thread)
81 #else
82 #define THREAD_LOCAL_STATIC thread_local static
83 #endif
84
85 namespace lyx {
86
87 /////////////////////////////////////////////////////////////////////
88 //
89 // SpellResultRange
90 //
91 /////////////////////////////////////////////////////////////////////
92
93 class SpellResultRange {
94 public:
95         SpellResultRange(FontSpan range, SpellChecker::Result result)
96         : range_(range), result_(result)
97         {}
98         ///
99         FontSpan const & range() const { return range_; }
100         ///
101         void range(FontSpan const & r) { range_ = r; }
102         ///
103         SpellChecker::Result result() const { return result_; }
104         ///
105         void result(SpellChecker::Result r) { result_ = r; }
106         ///
107         bool contains(pos_type pos) const { return range_.contains(pos); }
108         ///
109         bool covered(FontSpan const & r) const
110         {
111                 // 1. first of new range inside current range or
112                 // 2. last of new range inside current range or
113                 // 3. first of current range inside new range or
114                 // 4. last of current range inside new range
115                 //FIXME: is this the same as !range_.intersect(r).empty() ?
116                 return range_.contains(r.first) || range_.contains(r.last) ||
117                         r.contains(range_.first) || r.contains(range_.last);
118         }
119         ///
120         void shift(pos_type pos, int offset)
121         {
122                 if (range_.first > pos) {
123                         range_.first += offset;
124                         range_.last += offset;
125                 } else if (range_.last >= pos) {
126                         range_.last += offset;
127                 }
128         }
129 private:
130         FontSpan range_ ;
131         SpellChecker::Result result_ ;
132 };
133
134
135 /////////////////////////////////////////////////////////////////////
136 //
137 // SpellCheckerState
138 //
139 /////////////////////////////////////////////////////////////////////
140
141 class SpellCheckerState {
142 public:
143         SpellCheckerState()
144         {
145                 needs_refresh_ = true;
146                 current_change_number_ = 0;
147         }
148
149         void setRange(FontSpan const & fp, SpellChecker::Result state)
150         {
151                 Ranges result;
152                 RangesIterator et = ranges_.end();
153                 RangesIterator it = ranges_.begin();
154                 for (; it != et; ++it) {
155                         if (!it->covered(fp))
156                                 result.push_back(SpellResultRange(it->range(), it->result()));
157                         else if (state == SpellChecker::WORD_OK) {
158                                 // trim or split the current misspelled range
159                                 // store misspelled ranges only
160                                 FontSpan range = it->range();
161                                 if (fp.first > range.first) {
162                                         // misspelled area in front of WORD_OK
163                                         range.last = fp.first - 1;
164                                         result.push_back(SpellResultRange(range, it->result()));
165                                         range = it->range();
166                                 }
167                                 if (fp.last < range.last) {
168                                         // misspelled area after WORD_OK range
169                                         range.first = fp.last + 1;
170                                         result.push_back(SpellResultRange(range, it->result()));
171                                 }
172                         }
173                 }
174                 ranges_ = result;
175                 if (state != SpellChecker::WORD_OK)
176                         ranges_.push_back(SpellResultRange(fp, state));
177         }
178
179         void increasePosAfterPos(pos_type pos)
180         {
181                 correctRangesAfterPos(pos, 1);
182                 needsRefresh(pos);
183         }
184
185         void decreasePosAfterPos(pos_type pos)
186         {
187                 correctRangesAfterPos(pos, -1);
188                 needsRefresh(pos);
189         }
190
191         void refreshLast(pos_type pos)
192         {
193                 if (pos < refresh_.last)
194                         refresh_.last = pos;
195         }
196
197         SpellChecker::Result getState(pos_type pos) const
198         {
199                 SpellChecker::Result result = SpellChecker::WORD_OK;
200                 RangesIterator et = ranges_.end();
201                 RangesIterator it = ranges_.begin();
202                 for (; it != et; ++it) {
203                         if(it->contains(pos)) {
204                                 return it->result();
205                         }
206                 }
207                 return result;
208         }
209
210         FontSpan const & getRange(pos_type pos) const
211         {
212                 /// empty span to indicate mismatch
213                 static FontSpan empty_;
214                 RangesIterator et = ranges_.end();
215                 RangesIterator it = ranges_.begin();
216                 for (; it != et; ++it) {
217                         if(it->contains(pos)) {
218                                 return it->range();
219                         }
220                 }
221                 return empty_;
222         }
223
224         bool needsRefresh() const
225         {
226                 return needs_refresh_;
227         }
228
229         SpellChecker::ChangeNumber currentChangeNumber() const
230         {
231                 return current_change_number_;
232         }
233
234         void refreshRange(pos_type & first, pos_type & last) const
235         {
236                 first = refresh_.first;
237                 last = refresh_.last;
238         }
239
240         void needsRefresh(pos_type pos)
241         {
242                 if (needs_refresh_ && pos != -1) {
243                         if (pos < refresh_.first)
244                                 refresh_.first = pos;
245                         if (pos > refresh_.last)
246                                 refresh_.last = pos;
247                 } else if (pos != -1) {
248                         // init request check for neighbour positions too
249                         refresh_.first = pos > 0 ? pos - 1 : 0;
250                         // no need for special end of paragraph check
251                         refresh_.last = pos + 1;
252                 }
253                 needs_refresh_ = pos != -1;
254         }
255
256         void needsCompleteRefresh(SpellChecker::ChangeNumber change_number)
257         {
258                 needs_refresh_ = true;
259                 refresh_.first = 0;
260                 refresh_.last = -1;
261                 current_change_number_ = change_number;
262         }
263 private:
264         typedef vector<SpellResultRange> Ranges;
265         typedef Ranges::const_iterator RangesIterator;
266         Ranges ranges_;
267         /// the area of the paragraph with pending spell check
268         FontSpan refresh_;
269         /// spell state cache version number
270         SpellChecker::ChangeNumber current_change_number_;
271         bool needs_refresh_;
272
273
274         void correctRangesAfterPos(pos_type pos, int offset)
275         {
276                 RangesIterator et = ranges_.end();
277                 Ranges::iterator it = ranges_.begin();
278                 for (; it != et; ++it) {
279                         it->shift(pos, offset);
280                 }
281         }
282
283 };
284
285 /////////////////////////////////////////////////////////////////////
286 //
287 // Paragraph::Private
288 //
289 /////////////////////////////////////////////////////////////////////
290
291 class Paragraph::Private
292 {
293         // Enforce our own "copy" constructor
294         Private(Private const &) = delete;
295         Private & operator=(Private const &) = delete;
296         // Unique ID generator
297         static int make_id();
298 public:
299         ///
300         Private(Paragraph * owner, Layout const & layout);
301         /// "Copy constructor"
302         Private(Private const &, Paragraph * owner);
303         /// Copy constructor from \p beg  to \p end
304         Private(Private const &, Paragraph * owner, pos_type beg, pos_type end);
305
306         ///
307         void insertChar(pos_type pos, char_type c, Change const & change);
308
309         /// Output the surrogate pair formed by \p c and \p next to \p os.
310         /// \return the number of characters written.
311         int latexSurrogatePair(BufferParams const &, otexstream & os,
312                                char_type c, char_type next,
313                                OutputParams const &);
314
315         /// Output a space in appropriate formatting (or a surrogate pair
316         /// if the next character is a combining character).
317         /// \return whether a surrogate pair was output.
318         bool simpleTeXBlanks(BufferParams const &,
319                              OutputParams const &,
320                              otexstream &,
321                              pos_type i,
322                              unsigned int & column,
323                              Font const & font,
324                              Layout const & style);
325
326         /// This could go to ParagraphParameters if we want to.
327         int startTeXParParams(BufferParams const &, otexstream &,
328                               OutputParams const &) const;
329
330         /// This could go to ParagraphParameters if we want to.
331         bool endTeXParParams(BufferParams const &, otexstream &,
332                              OutputParams const &) const;
333
334         ///
335         void latexInset(BufferParams const &,
336                                    otexstream &,
337                                    OutputParams &,
338                                    Font & running_font,
339                                    Font & basefont,
340                                    Font const & outerfont,
341                                    bool & open_font,
342                                    Change & running_change,
343                                    Layout const & style,
344                                    pos_type & i,
345                                    unsigned int & column);
346
347         ///
348         void latexSpecialChar(
349                                    otexstream & os,
350                                    BufferParams const & bparams,
351                                    OutputParams const & runparams,
352                                    Font const & running_font,
353                                    string & alien_script,
354                                    Layout const & style,
355                                    pos_type & i,
356                                    pos_type end_pos,
357                                    unsigned int & column);
358
359         ///
360         bool latexSpecialT1(
361                 char_type const c,
362                 otexstream & os,
363                 pos_type i,
364                 unsigned int & column);
365         ///
366         bool latexSpecialTU(
367                 char_type const c,
368                 otexstream & os,
369                 pos_type i,
370                 unsigned int & column);
371         ///
372         bool latexSpecialT3(
373                 char_type const c,
374                 otexstream & os,
375                 pos_type i,
376                 unsigned int & column);
377
378         ///
379         void validate(LaTeXFeatures & features) const;
380
381         /// Checks if the paragraph contains only text and no inset or font change.
382         bool onlyText(Buffer const & buf, Font const & outerfont,
383                       pos_type initial) const;
384
385         /// a vector of speller skip positions
386         typedef vector<FontSpan> SkipPositions;
387         typedef SkipPositions::const_iterator SkipPositionsIterator;
388
389         void appendSkipPosition(SkipPositions & skips, pos_type const pos) const;
390
391         Language * getSpellLanguage(pos_type const from) const;
392
393         Language * locateSpellRange(pos_type & from, pos_type & to,
394                                     SkipPositions & skips) const;
395
396         bool hasSpellerChange() const
397         {
398                 SpellChecker::ChangeNumber speller_change_number = 0;
399                 if (theSpellChecker())
400                         speller_change_number = theSpellChecker()->changeNumber();
401                 return speller_change_number > speller_state_.currentChangeNumber();
402         }
403
404         bool ignoreWord(docstring const & word) const ;
405
406         void setMisspelled(pos_type from, pos_type to, SpellChecker::Result state)
407         {
408                 pos_type textsize = owner_->size();
409                 // check for sane arguments
410                 if (to <= from || from >= textsize)
411                         return;
412                 FontSpan fp = FontSpan(from, to - 1);
413                 speller_state_.setRange(fp, state);
414         }
415
416         void requestSpellCheck(pos_type pos)
417         {
418                 if (pos == -1)
419                         speller_state_.needsCompleteRefresh(speller_state_.currentChangeNumber());
420                 else
421                         speller_state_.needsRefresh(pos);
422         }
423
424         void readySpellCheck()
425         {
426                 speller_state_.needsRefresh(-1);
427         }
428
429         bool needsSpellCheck() const
430         {
431                 return speller_state_.needsRefresh();
432         }
433
434         void rangeOfSpellCheck(pos_type & first, pos_type & last) const
435         {
436                 speller_state_.refreshRange(first, last);
437                 if (last == -1) {
438                         last = owner_->size();
439                         return;
440                 }
441                 pos_type endpos = last;
442                 owner_->locateWord(first, endpos, WHOLE_WORD, true);
443                 if (endpos < last) {
444                         endpos = last;
445                         owner_->locateWord(last, endpos, WHOLE_WORD, true);
446                 }
447                 last = endpos;
448         }
449
450         int countSkips(SkipPositionsIterator & it, SkipPositionsIterator const et,
451                             int & start) const
452         {
453                 int numskips = 0;
454                 while (it != et && it->first < start) {
455                         long skip = it->last - it->first + 1;
456                         start += skip;
457                         numskips += skip;
458                         ++it;
459                 }
460                 return numskips;
461         }
462
463         void markMisspelledWords(pos_type const & first, pos_type const & last,
464                                                          SpellChecker::Result result,
465                                                          docstring const & word,
466                                                          SkipPositions const & skips);
467
468         InsetCode ownerCode() const
469         {
470                 return inset_owner_ ? inset_owner_->lyxCode() : NO_CODE;
471         }
472
473         /// Which Paragraph owns us?
474         Paragraph * owner_;
475
476         /// In which Inset?
477         Inset const * inset_owner_;
478
479         ///
480         FontList fontlist_;
481
482         ///
483         ParagraphParameters params_;
484
485         /// for recording and looking up changes
486         Changes changes_;
487
488         ///
489         InsetList insetlist_;
490
491         /// end of label
492         pos_type begin_of_body_;
493
494         typedef docstring TextContainer;
495         ///
496         TextContainer text_;
497
498         typedef set<docstring> Words;
499         typedef map<string, Words> LangWordsMap;
500         ///
501         LangWordsMap words_;
502         ///
503         Layout const * layout_;
504         ///
505         SpellCheckerState speller_state_;
506         ///
507         int id_;
508 };
509
510
511 Paragraph::Private::Private(Paragraph * owner, Layout const & layout)
512         : owner_(owner), inset_owner_(nullptr), begin_of_body_(0), layout_(&layout), id_(-1)
513 {
514         text_.reserve(100);
515 }
516
517
518 //static
519 int Paragraph::Private::make_id()
520 {
521         // The id is unique per session across buffers because it is used in
522         // LFUN_PARAGRAPH_GOTO to switch to a different buffer, for instance in the
523         // outliner.
524         // (thread-safe)
525         static int next_id(0);
526         return next_id++;
527 }
528
529
530 Paragraph::Private::Private(Private const & p, Paragraph * owner)
531         : owner_(owner), inset_owner_(p.inset_owner_), fontlist_(p.fontlist_),
532           params_(p.params_), changes_(p.changes_), insetlist_(p.insetlist_),
533           begin_of_body_(p.begin_of_body_), text_(p.text_), words_(p.words_),
534           layout_(p.layout_), id_(make_id())
535 {
536         requestSpellCheck(p.text_.size());
537 }
538
539
540 Paragraph::Private::Private(Private const & p, Paragraph * owner,
541         pos_type beg, pos_type end)
542         : owner_(owner), inset_owner_(p.inset_owner_),
543           params_(p.params_), changes_(p.changes_),
544           insetlist_(p.insetlist_, beg, end),
545           begin_of_body_(p.begin_of_body_), words_(p.words_),
546           layout_(p.layout_), id_(make_id())
547 {
548         if (beg >= pos_type(p.text_.size()))
549                 return;
550         text_ = p.text_.substr(beg, end - beg);
551
552         FontList::const_iterator fcit = fontlist_.begin();
553         FontList::const_iterator fend = fontlist_.end();
554         for (; fcit != fend; ++fcit) {
555                 if (fcit->pos() < beg)
556                         continue;
557                 if (fcit->pos() >= end) {
558                         // Add last entry in the fontlist_.
559                         fontlist_.set(text_.size() - 1, fcit->font());
560                         break;
561                 }
562                 // Add a new entry in the fontlist_.
563                 fontlist_.set(fcit->pos() - beg, fcit->font());
564         }
565         requestSpellCheck(p.text_.size());
566 }
567
568
569 void Paragraph::addChangesToToc(DocIterator const & cdit, Buffer const & buf,
570                                 bool output_active, TocBackend & backend) const
571 {
572         d->changes_.addToToc(cdit, buf, output_active, backend);
573 }
574
575
576 bool Paragraph::isDeleted(pos_type start, pos_type end) const
577 {
578         LASSERT(start >= 0 && start <= size(), return false);
579         LASSERT(end > start && end <= size() + 1, return false);
580
581         return d->changes_.isDeleted(start, end);
582 }
583
584
585 bool Paragraph::isChanged(pos_type start, pos_type end) const
586 {
587         LASSERT(start >= 0 && start <= size(), return false);
588         LASSERT(end > start && end <= size() + 1, return false);
589
590         return d->changes_.isChanged(start, end);
591 }
592
593 // FIXME: Ideally the diverse isChanged() methods should account for that!
594 bool Paragraph::hasChangedInsets(pos_type start, pos_type end) const
595 {
596         LASSERT(start >= 0 && start <= size(), return false);
597         LASSERT(end > start && end <= size() + 1, return false);
598
599         for (auto const & icit : d->insetlist_) {
600                 if (icit.pos < start)
601                         continue;
602                 if (icit.pos >= end)
603                         break;
604                 if (icit.inset && icit.inset->isChanged())
605                         return true;
606         }
607         return false;
608 }
609
610 bool Paragraph::isChanged() const
611 {
612         return d->changes_.isChanged();
613 }
614
615
616 bool Paragraph::isMergedOnEndOfParDeletion(bool trackChanges) const
617 {
618         // keep the logic here in sync with the logic of eraseChars()
619         if (!trackChanges)
620                 return true;
621
622         Change const & change = d->changes_.lookup(size());
623         return change.inserted() && change.currentAuthor();
624 }
625
626 Change Paragraph::parEndChange() const
627 {
628         return d->changes_.lookup(size());
629 }
630
631
632 void Paragraph::setChange(Change const & change)
633 {
634         // beware of the imaginary end-of-par character!
635         d->changes_.set(change, 0, size() + 1);
636
637         /*
638          * Propagate the change recursively - but not in case of DELETED!
639          *
640          * Imagine that your co-author makes changes in an existing inset. He
641          * sends your document to you and you come to the conclusion that the
642          * inset should go completely. If you erase it, LyX must not delete all
643          * text within the inset. Otherwise, the change tracked insertions of
644          * your co-author get lost and there is no way to restore them later.
645          *
646          * Conclusion: An inset's content should remain untouched if you delete it
647          */
648
649         if (!change.deleted()) {
650                 for (pos_type pos = 0; pos < size(); ++pos) {
651                         if (Inset * inset = getInset(pos))
652                                 inset->setChange(change);
653                 }
654         }
655 }
656
657
658 void Paragraph::setChange(pos_type pos, Change const & change)
659 {
660         LASSERT(pos >= 0 && pos <= size(), return);
661         d->changes_.set(change, pos);
662
663         // see comment in setChange(Change const &) above
664         if (!change.deleted() && pos < size())
665                 if (Inset * inset = getInset(pos))
666                         inset->setChange(change);
667 }
668
669
670 Change const & Paragraph::lookupChange(pos_type pos) const
671 {
672         LBUFERR(pos >= 0 && pos <= size());
673         return d->changes_.lookup(pos);
674 }
675
676
677 void Paragraph::acceptChanges(pos_type start, pos_type end)
678 {
679         LASSERT(start >= 0 && start <= size(), return);
680         LASSERT(end > start && end <= size() + 1, return);
681
682         for (pos_type pos = start; pos < end; ++pos) {
683                 switch (lookupChange(pos).type) {
684                         case Change::UNCHANGED:
685                                 // accept changes in nested inset
686                                 if (Inset * inset = getInset(pos))
687                                         inset->acceptChanges();
688                                 break;
689
690                         case Change::INSERTED:
691                                 d->changes_.set(Change(Change::UNCHANGED), pos);
692                                 // also accept changes in nested inset
693                                 if (Inset * inset = getInset(pos))
694                                         inset->acceptChanges();
695                                 break;
696
697                         case Change::DELETED:
698                                 // Suppress access to non-existent
699                                 // "end-of-paragraph char"
700                                 if (pos < size()) {
701                                         eraseChar(pos, false);
702                                         --end;
703                                         --pos;
704                                 }
705                                 break;
706                 }
707
708         }
709 }
710
711
712 void Paragraph::rejectChanges(pos_type start, pos_type end)
713 {
714         LASSERT(start >= 0 && start <= size(), return);
715         LASSERT(end > start && end <= size() + 1, return);
716
717         for (pos_type pos = start; pos < end; ++pos) {
718                 switch (lookupChange(pos).type) {
719                         case Change::UNCHANGED:
720                                 // reject changes in nested inset
721                                 if (Inset * inset = getInset(pos))
722                                                 inset->rejectChanges();
723                                 break;
724
725                         case Change::INSERTED:
726                                 // Suppress access to non-existent
727                                 // "end-of-paragraph char"
728                                 if (pos < size()) {
729                                         eraseChar(pos, false);
730                                         --end;
731                                         --pos;
732                                 }
733                                 break;
734
735                         case Change::DELETED:
736                                 d->changes_.set(Change(Change::UNCHANGED), pos);
737
738                                 // Do NOT reject changes within a deleted inset!
739                                 // There may be insertions of a co-author inside of it!
740
741                                 break;
742                 }
743         }
744 }
745
746
747 void Paragraph::Private::insertChar(pos_type pos, char_type c,
748                 Change const & change)
749 {
750         LASSERT(pos >= 0 && pos <= int(text_.size()), return);
751
752         // track change
753         changes_.insert(change, pos);
754
755         // This is actually very common when parsing buffers (and
756         // maybe inserting ascii text)
757         if (pos == pos_type(text_.size())) {
758                 // when appending characters, no need to update tables
759                 text_.push_back(c);
760                 // but we want spell checking
761                 requestSpellCheck(pos);
762                 return;
763         }
764
765         text_.insert(text_.begin() + pos, c);
766
767         // Update the font table.
768         fontlist_.increasePosAfterPos(pos);
769
770         // Update the insets
771         insetlist_.increasePosAfterPos(pos);
772
773         // Update list of misspelled positions
774         speller_state_.increasePosAfterPos(pos);
775 }
776
777
778 bool Paragraph::insertInset(pos_type pos, Inset * inset,
779                                    Font const & font, Change const & change)
780 {
781         LASSERT(inset, return false);
782         LASSERT(pos >= 0 && pos <= size(), return false);
783
784         // Paragraph::insertInset() can be used in cut/copy/paste operation where
785         // d->inset_owner_ is not set yet.
786         if (d->inset_owner_ && !d->inset_owner_->insetAllowed(inset->lyxCode()))
787                 return false;
788
789         d->insertChar(pos, META_INSET, change);
790         LASSERT(d->text_[pos] == META_INSET, return false);
791
792         // Add a new entry in the insetlist_.
793         d->insetlist_.insert(inset, pos);
794
795         // Some insets require run of spell checker
796         requestSpellCheck(pos);
797         setFont(pos, font);
798         return true;
799 }
800
801
802 bool Paragraph::eraseChar(pos_type pos, bool trackChanges)
803 {
804         LASSERT(pos >= 0 && pos <= size(), return false);
805
806         // keep the logic here in sync with the logic of isMergedOnEndOfParDeletion()
807
808         if (trackChanges) {
809                 Change change = d->changes_.lookup(pos);
810
811                 // set the character to DELETED if
812                 //  a) it was previously unchanged or
813                 //  b) it was inserted by a co-author
814
815                 if (!change.changed() ||
816                       (change.inserted() && !change.currentAuthor())) {
817                         setChange(pos, Change(Change::DELETED));
818                         // request run of spell checker
819                         requestSpellCheck(pos);
820                         return false;
821                 }
822
823                 if (change.deleted())
824                         return false;
825         }
826
827         // Don't physically access the imaginary end-of-paragraph character.
828         // eraseChar() can only mark it as DELETED. A physical deletion of
829         // end-of-par must be handled externally.
830         if (pos == size()) {
831                 return false;
832         }
833
834         // track change
835         d->changes_.erase(pos);
836
837         // if it is an inset, delete the inset entry
838         if (d->text_[pos] == META_INSET)
839                 d->insetlist_.erase(pos);
840
841         d->text_.erase(d->text_.begin() + pos);
842
843         // Update the fontlist_
844         d->fontlist_.erase(pos);
845
846         // Update the insetlist_
847         d->insetlist_.decreasePosAfterPos(pos);
848
849         // Update list of misspelled positions
850         d->speller_state_.decreasePosAfterPos(pos);
851         d->speller_state_.refreshLast(size());
852
853         return true;
854 }
855
856
857 int Paragraph::eraseChars(pos_type start, pos_type end, bool trackChanges)
858 {
859         LASSERT(start >= 0 && start <= size(), return 0);
860         LASSERT(end >= start && end <= size() + 1, return 0);
861
862         pos_type i = start;
863         for (pos_type count = end - start; count; --count) {
864                 if (!eraseChar(i, trackChanges))
865                         ++i;
866         }
867         return end - i;
868 }
869
870 // Handle combining characters
871 int Paragraph::Private::latexSurrogatePair(BufferParams const & bparams,
872                 otexstream & os, char_type c, char_type next,
873                 OutputParams const & runparams)
874 {
875         // Writing next here may circumvent a possible font change between
876         // c and next. Since next is only output if it forms a surrogate pair
877         // with c we can ignore this:
878         // A font change inside a surrogate pair does not make sense and is
879         // hopefully impossible to input.
880         // FIXME: change tracking
881         // Is this correct WRT change tracking?
882         Encoding const & encoding = *(runparams.encoding);
883         docstring latex1 = encoding.latexChar(next).first;
884         if (runparams.inIPA) {
885                 string const tipashortcut = Encodings::TIPAShortcut(next);
886                 if (!tipashortcut.empty()) {
887                         latex1 = from_ascii(tipashortcut);
888                 }
889         }
890         docstring latex2 = encoding.latexChar(c).first;
891
892         if (bparams.useNonTeXFonts || docstring(1, next) == latex1) {
893                 // Encoding supports the combination:
894                 // output as is (combining char after base char).
895                 os << latex2 << latex1;
896                 return latex1.length() + latex2.length();
897         }
898
899         os << latex1 << "{" << latex2 << "}";
900         return latex1.length() + latex2.length() + 2;
901 }
902
903
904 bool Paragraph::Private::simpleTeXBlanks(BufferParams const & bparams,
905                                        OutputParams const & runparams,
906                                        otexstream & os,
907                                        pos_type i,
908                                        unsigned int & column,
909                                        Font const & font,
910                                        Layout const & style)
911 {
912         if (style.pass_thru || runparams.pass_thru)
913                 return false;
914
915         if (i + 1 < int(text_.size())) {
916                 char_type next = text_[i + 1];
917                 if (Encodings::isCombiningChar(next)) {
918                         // This space has an accent, so we must always output it.
919                         column += latexSurrogatePair(bparams, os, ' ', next, runparams) - 1;
920                         return true;
921                 }
922         }
923
924         if (runparams.linelen > 0
925             && column > runparams.linelen
926             && i
927             && text_[i - 1] != ' '
928             && (i + 1 < int(text_.size()))
929             // same in FreeSpacing mode
930             && !owner_->isFreeSpacing()
931             // In typewriter mode, we want to avoid
932             // ! . ? : at the end of a line
933             && !(font.fontInfo().family() == TYPEWRITER_FAMILY
934                  && (text_[i - 1] == '.'
935                      || text_[i - 1] == '?'
936                      || text_[i - 1] == ':'
937                      || text_[i - 1] == '!'))) {
938                 os << '\n';
939                 os.texrow().start(owner_->id(), i + 1);
940                 column = 0;
941         } else if (style.free_spacing) {
942                 os << '~';
943         } else {
944                 os << ' ';
945         }
946         return false;
947 }
948
949
950 void Paragraph::Private::latexInset(BufferParams const & bparams,
951                                     otexstream & os,
952                                     OutputParams & runparams,
953                                     Font & running_font,
954                                     Font & basefont,
955                                     Font const & outerfont,
956                                     bool & open_font,
957                                     Change & running_change,
958                                     Layout const & style,
959                                     pos_type & i,
960                                     unsigned int & column)
961 {
962         Inset * inset = owner_->getInset(i);
963         LBUFERR(inset);
964
965         if (style.pass_thru) {
966                 odocstringstream ods;
967                 inset->plaintext(ods, runparams);
968                 os << ods.str();
969                 return;
970         }
971
972         // FIXME: move this to InsetNewline::latex
973         if (inset->lyxCode() == NEWLINE_CODE || inset->lyxCode() == SEPARATOR_CODE) {
974                 // newlines are handled differently here than
975                 // the default in simpleTeXSpecialChars().
976                 if (!style.newline_allowed) {
977                         os << '\n';
978                 } else {
979                         if (open_font) {
980                                 bool needPar = false;
981                                 column += running_font.latexWriteEndChanges(
982                                         os, bparams, runparams,
983                                         basefont, basefont, needPar);
984                                 open_font = false;
985                         }
986
987                         if (running_font.fontInfo().family() == TYPEWRITER_FAMILY)
988                                 os << '~';
989
990                         basefont = owner_->getLayoutFont(bparams, outerfont);
991                         running_font = basefont;
992
993                         if (runparams.moving_arg)
994                                 os << "\\protect ";
995
996                 }
997                 os.texrow().start(owner_->id(), i + 1);
998                 column = 0;
999         }
1000
1001         if (owner_->isDeleted(i)) {
1002                 if( ++runparams.inDeletedInset == 1)
1003                         runparams.changeOfDeletedInset = owner_->lookupChange(i);
1004         }
1005
1006         if (inset->canTrackChanges()) {
1007                 column += Changes::latexMarkChange(os, bparams, running_change,
1008                         Change(Change::UNCHANGED), runparams);
1009                 running_change = Change(Change::UNCHANGED);
1010         }
1011
1012         bool close = false;
1013         odocstream::pos_type const len = os.os().tellp();
1014
1015         if (inset->forceLTR(runparams)
1016             && running_font.isRightToLeft()
1017             // ERT is an exception, it should be output with no
1018             // decorations at all
1019             && inset->lyxCode() != ERT_CODE) {
1020                 if (runparams.use_polyglossia) {
1021                         os << "\\LRE{";
1022                 } else if (running_font.language()->lang() == "farsi"
1023                            || running_font.language()->lang() == "arabic_arabi")
1024                         os << "\\textLR{" << termcmd;
1025                 else
1026                         os << "\\L{";
1027                 close = true;
1028         }
1029
1030         if (open_font && (!inset->inheritFont() || inset->allowMultiPar())) {
1031                 // Some insets cannot be inside a font change command.
1032                 // However, even such insets *can* be placed in \L or \R
1033                 // or their equivalents (for RTL language switches),
1034                 // so we don't close the language in those cases
1035                 // (= differing isRightToLeft()).
1036                 // ArabTeX, though, doesn't seem to handle this special behavior.
1037                 bool const inRLSwitch = 
1038                                 basefont.isRightToLeft() != running_font.isRightToLeft()
1039                                 && basefont.language()->lang() != "arabic_arabtex"
1040                                 && running_font.language()->lang() != "arabic_arabtex";
1041                 // Having said that, PassThru insets must be inside a font change command,
1042                 // as we do not re-open the font inside. So:
1043                 bool const closeLanguage = !inset->isPassThru() && !inRLSwitch;
1044                 bool lang_closed = false;
1045                 bool lang_switched_at_inset = false;
1046                 // Close language if needed
1047                 if (closeLanguage) {
1048                         // We need prev_font here as language changes directly at inset
1049                         // will only be started inside the inset.
1050                         Font const prev_font = (i > 0) ?
1051                                                 owner_->getFont(bparams, i - 1, outerfont)
1052                                               : running_font;
1053                         Font tmpfont(basefont);
1054                         tmpfont.setLanguage(prev_font.language());
1055                         bool needPar = false;
1056                         unsigned int count = tmpfont.latexWriteEndChanges(os, bparams, runparams,
1057                                                                           basefont, basefont,
1058                                                                           needPar, closeLanguage);
1059                         column += count;
1060                         lang_closed = count > 0;
1061                         lang_switched_at_inset = prev_font.language() != running_font.language();
1062                 }
1063                 // Now re-do font changes in a way needed here
1064                 // (using switches with multi-par insets)
1065                 InsetText const * textinset = inset->asInsetText();
1066                 bool const cprotect = textinset
1067                         ? textinset->hasCProtectContent(runparams.moving_arg)
1068                           && !textinset->text().isMainText()
1069                         : false;
1070                 unsigned int count2 = running_font.latexWriteStartChanges(os, bparams,
1071                                                       runparams, basefont,
1072                                                       running_font, true,
1073                                                       cprotect);
1074                 column += count2;
1075                 // Update the running_font, making sure, however,
1076                 // to leave the language as it was.
1077                 // FIXME: probably a better way to keep track of the old
1078                 // language, than copying the entire font?
1079                 Font const copy_font(running_font);
1080                 basefont = owner_->getLayoutFont(bparams, outerfont);
1081                 running_font = basefont;
1082                 if (!closeLanguage)
1083                         running_font.setLanguage(copy_font.language());
1084                 // For these, we use switches, so they should be taken as
1085                 // base inside the inset.
1086                 basefont.fontInfo().setSize(copy_font.fontInfo().size());
1087                 basefont.fontInfo().setFamily(copy_font.fontInfo().family());
1088                 basefont.fontInfo().setSeries(copy_font.fontInfo().series());
1089                 if (count2 == 0 && (lang_closed || lang_switched_at_inset))
1090                         // All fonts closed
1091                         open_font = false;
1092                 if (closeLanguage)
1093                         runparams.local_font = &basefont;
1094         }
1095
1096         size_t const previous_row_count = os.texrow().rows();
1097
1098         try {
1099                 runparams.lastid = id_;
1100                 runparams.lastpos = i;
1101                 inset->latex(os, runparams);
1102         } catch (EncodingException & e) {
1103                 // add location information and throw again.
1104                 e.par_id = id_;
1105                 e.pos = i;
1106                 throw(e);
1107         }
1108
1109         if (close)
1110                 os << '}';
1111
1112         if (os.texrow().rows() > previous_row_count) {
1113                 os.texrow().start(owner_->id(), i + 1);
1114                 column = 0;
1115         } else {
1116                 column += (unsigned int)(os.os().tellp() - len);
1117         }
1118
1119         if (owner_->isDeleted(i))
1120                 --runparams.inDeletedInset;
1121 }
1122
1123
1124 void Paragraph::Private::latexSpecialChar(otexstream & os,
1125                                           BufferParams const & bparams,
1126                                           OutputParams const & runparams,
1127                                           Font const & running_font,
1128                                           string & alien_script,
1129                                           Layout const & style,
1130                                           pos_type & i,
1131                                           pos_type end_pos,
1132                                           unsigned int & column)
1133 {
1134         char_type const c = owner_->getUChar(bparams, runparams, i);
1135
1136         if (style.pass_thru || runparams.pass_thru
1137             || contains(style.pass_thru_chars, c)
1138             || contains(runparams.pass_thru_chars, c)) {
1139                 if (c != '\0') {
1140                         Encoding const * const enc = runparams.encoding;
1141                         if (enc && !enc->encodable(c))
1142                                 throw EncodingException(c);
1143                         os.put(c);
1144                 }
1145                 return;
1146         }
1147
1148         // TIPA uses its own T3 encoding
1149         if (runparams.inIPA && latexSpecialT3(c, os, i, column))
1150                 return;
1151         // If T1 font encoding is used, use the special
1152         // characters it provides.
1153         // NOTE: Some languages reset the font encoding internally to a
1154         //       non-standard font encoding. If we are using such a language,
1155         //       we do not output special T1 chars.
1156         if (!runparams.inIPA && !running_font.language()->internalFontEncoding()
1157             && !runparams.isFullUnicode() && bparams.main_font_encoding() == "T1"
1158             && latexSpecialT1(c, os, i, column))
1159                 return;
1160         // NOTE: "fontspec" (non-TeX fonts) sets the font encoding to "TU" (untill 2017 "EU1" or "EU2")
1161         else if (!runparams.inIPA && !running_font.language()->internalFontEncoding()
1162                  && runparams.isFullUnicode() && latexSpecialTU(c, os, i, column))
1163                      return;
1164
1165         // Otherwise, we use what LaTeX provides us.
1166         switch (c) {
1167         case '\\':
1168                 os << "\\textbackslash" << termcmd;
1169                 column += 15;
1170                 break;
1171         case '<':
1172                 os << "\\textless" << termcmd;
1173                 column += 10;
1174                 break;
1175         case '>':
1176                 os << "\\textgreater" << termcmd;
1177                 column += 13;
1178                 break;
1179         case '|':
1180                 os << "\\textbar" << termcmd;
1181                 column += 9;
1182                 break;
1183         case '-':
1184                 os << '-';
1185                 if (i + 1 < static_cast<pos_type>(text_.size()) &&
1186                     (end_pos == -1 || i + 1 < end_pos) &&
1187                     text_[i+1] == '-') {
1188                         // Prevent "--" becoming an en dash and "---" an em dash.
1189                         // (Within \ttfamily, "---" is merged to en dash + hyphen.)
1190                         os << "{}";
1191                         column += 2;
1192                 }
1193                 break;
1194         case '\"':
1195                 os << "\\textquotedbl" << termcmd;
1196                 column += 14;
1197                 break;
1198
1199         case '$': case '&':
1200         case '%': case '#': case '{':
1201         case '}': case '_':
1202                 os << '\\';
1203                 os.put(c);
1204                 column += 1;
1205                 break;
1206
1207         case '~':
1208                 os << "\\textasciitilde" << termcmd;
1209                 column += 16;
1210                 break;
1211
1212         case '^':
1213                 os << "\\textasciicircum" << termcmd;
1214                 column += 17;
1215                 break;
1216
1217         case '*':
1218         case '[':
1219         case ']':
1220                 // avoid being mistaken for optional arguments
1221                 os << '{';
1222                 os.put(c);
1223                 os << '}';
1224                 column += 2;
1225                 break;
1226
1227         case ' ':
1228                 // Blanks are printed before font switching.
1229                 // Sure? I am not! (try nice-latex)
1230                 // I am sure it's correct. LyX might be smarter
1231                 // in the future, but for now, nothing wrong is
1232                 // written. (Asger)
1233                 break;
1234
1235         case 0x2013:
1236         case 0x2014:
1237                 // XeTeX's dash behaviour is determined via a global setting
1238                 if (bparams.use_dash_ligatures
1239                     && owner_->getFontSettings(bparams, i).fontInfo().family() != TYPEWRITER_FAMILY
1240                     && !runparams.inIPA
1241                         // TODO #10961: && not in inset Flex Code
1242                         // TODO #10961: && not in layout LyXCode
1243                     && (!bparams.useNonTeXFonts || runparams.flavor != OutputParams::XETEX)) {
1244                         if (c == 0x2013) {
1245                                 // en-dash
1246                                 os << "--";
1247                                 column +=2;
1248                         } else {
1249                                 // em-dash
1250                                 os << "---";
1251                                 column +=3;
1252                         }
1253                         break;
1254                 }
1255                 // fall through
1256         default:
1257                 if (c == '\0')
1258                         return;
1259
1260                 Encoding const & encoding = *(runparams.encoding);
1261                 char_type next = '\0';
1262                 if (i + 1 < int(text_.size())) {
1263                         next = text_[i + 1];
1264                         if (Encodings::isCombiningChar(next)) {
1265                                 column += latexSurrogatePair(bparams, os, c, next, runparams) - 1;
1266                                 ++i;
1267                                 break;
1268                         }
1269                 }
1270                 pair<docstring, bool> latex = encoding.latexChar(c);
1271                 docstring nextlatex;
1272                 bool nexttipas = false;
1273                 string nexttipashortcut;
1274                 if (next != '\0' && next != META_INSET && !encoding.encodable(next)) {
1275                         nextlatex = encoding.latexChar(next).first;
1276                         if (runparams.inIPA) {
1277                                 nexttipashortcut = Encodings::TIPAShortcut(next);
1278                                 nexttipas = !nexttipashortcut.empty();
1279                         }
1280                 }
1281                 bool tipas = false;
1282                 if (runparams.inIPA) {
1283                         string const tipashortcut = Encodings::TIPAShortcut(c);
1284                         if (!tipashortcut.empty()) {
1285                                 latex.first = from_ascii(tipashortcut);
1286                                 latex.second = false;
1287                                 tipas = true;
1288                         }
1289                 }
1290                 // eventually close "script wrapper" command (see `Paragraph::latex`)
1291                 if (!alien_script.empty()
1292                         && alien_script != Encodings::isKnownScriptChar(next)) {
1293                         column += latex.first.length();
1294                         alien_script.clear();
1295                         os << latex.first << "}";
1296                         break;
1297                 }
1298                 if (latex.second
1299                          && ((!prefixIs(nextlatex, '\\')
1300                                && !prefixIs(nextlatex, '{')
1301                                && !prefixIs(nextlatex, '}'))
1302                              || (nexttipas
1303                                  && !prefixIs(from_ascii(nexttipashortcut), '\\')))
1304                          && !tipas) {
1305                         // Prevent eating of a following space or command corruption by
1306                         // following characters
1307                         if (next == ' ' || next == '\0') {
1308                                 column += latex.first.length() + 1;
1309                                 os << latex.first << "{}";
1310                         } else {
1311                                 column += latex.first.length();
1312                                 os << latex.first << " ";
1313                         }
1314                 } else {
1315                         column += latex.first.length() - 1;
1316                         os << latex.first;
1317                 }
1318                 break;
1319         }
1320 }
1321
1322
1323 bool Paragraph::Private::latexSpecialT1(char_type const c, otexstream & os,
1324         pos_type i, unsigned int & column)
1325 {
1326         switch (c) {
1327         case '>':
1328         case '<':
1329                 os.put(c);
1330                 // In T1 encoding, these characters exist
1331                 // but we should avoid ligatures
1332                 if (i + 1 >= int(text_.size()) || text_[i + 1] != c)
1333                         return true;
1334                 os << "\\textcompwordmark" << termcmd;
1335                 column += 19;
1336                 return true;
1337         case '|':
1338                 os.put(c);
1339                 return true;
1340         case '\"':
1341                 // soul.sty breaks with \char`\"
1342                 os << "\\textquotedbl" << termcmd;
1343                 column += 14;
1344                 return true;
1345         default:
1346                 return false;
1347         }
1348 }
1349
1350
1351 bool Paragraph::Private::latexSpecialTU(char_type const c, otexstream & os,
1352         pos_type i, unsigned int & column)
1353 {
1354         // TU encoding is currently on par with T1.
1355         return latexSpecialT1(c, os, i, column);
1356 }
1357
1358
1359 bool Paragraph::Private::latexSpecialT3(char_type const c, otexstream & os,
1360         pos_type /*i*/, unsigned int & column)
1361 {
1362         switch (c) {
1363         case '*':
1364         case '[':
1365         case ']':
1366         case '\"':
1367                 os.put(c);
1368                 return true;
1369         case '|':
1370                 os << "\\textvertline" << termcmd;
1371                 column += 14;
1372                 return true;
1373         default:
1374                 return false;
1375         }
1376 }
1377
1378
1379 void Paragraph::Private::validate(LaTeXFeatures & features) const
1380 {
1381         if (layout_->inpreamble && inset_owner_) {
1382                 // FIXME: Using a string stream here circumvents the encoding
1383                 // switching machinery of odocstream. Therefore the
1384                 // output is wrong if this paragraph contains content
1385                 // that needs to switch encoding.
1386                 Buffer const & buf = inset_owner_->buffer();
1387                 otexstringstream os;
1388                 os << layout_->preamble();
1389                 size_t const length = os.length();
1390                 TeXOnePar(buf, *inset_owner_->getText(int(buf.getParFromID(owner_->id()).idx())),
1391                           buf.getParFromID(owner_->id()).pit(), os,
1392                           features.runparams(), string(), 0, -1, true);
1393                 if (os.length() > length)
1394                         features.addPreambleSnippet(os.release(), true);
1395         }
1396
1397         if (features.runparams().flavor == OutputParams::HTML
1398             && layout_->htmltitle()) {
1399                 features.setHTMLTitle(owner_->asString(AS_STR_INSETS | AS_STR_SKIPDELETE));
1400         }
1401
1402         // check the params.
1403         if (!params_.spacing().isDefault())
1404                 features.require("setspace");
1405
1406         // then the layouts
1407         features.useLayout(layout_->name());
1408
1409         // then the fonts
1410         fontlist_.validate(features);
1411
1412         // then the indentation
1413         if (!params_.leftIndent().zero())
1414                 features.require("ParagraphLeftIndent");
1415
1416         // then the insets
1417         InsetList::const_iterator icit = insetlist_.begin();
1418         InsetList::const_iterator iend = insetlist_.end();
1419         for (; icit != iend; ++icit) {
1420                 if (icit->inset) {
1421                         features.inDeletedInset(owner_->isDeleted(icit->pos));
1422                         if (icit->inset->lyxCode() == FOOT_CODE) {
1423                                 // FIXME: an item inset would make things much easier.
1424                                 if ((layout_->latextype == LATEX_LIST_ENVIRONMENT
1425                                      || (layout_->latextype == LATEX_ITEM_ENVIRONMENT
1426                                          && layout_->margintype == MARGIN_FIRST_DYNAMIC))
1427                                     && (icit->pos < begin_of_body_
1428                                         || (icit->pos == begin_of_body_
1429                                             && (icit->pos == 0 || text_[icit->pos - 1] != ' '))))
1430                                         features.saveNoteEnv("description");
1431                         }
1432                         icit->inset->validate(features);
1433                         features.inDeletedInset(false);
1434                         if (layout_->needprotect &&
1435                             icit->inset->lyxCode() == FOOT_CODE)
1436                                 features.require("NeedLyXFootnoteCode");
1437                 }
1438         }
1439
1440         // then the contents
1441         BufferParams const bp = features.runparams().is_child
1442                 ? features.buffer().masterParams() : features.buffer().params();
1443         for (pos_type i = 0; i < int(text_.size()) ; ++i) {
1444                 char_type c = text_[i];
1445                 CharInfo const & ci = Encodings::unicodeCharInfo(c);
1446                 if (c == 0x0022) {
1447                         if (features.runparams().isFullUnicode() && bp.useNonTeXFonts)
1448                                 features.require("textquotedblp");
1449                         else if (bp.main_font_encoding() != "T1"
1450                                  || ((&owner_->getFontSettings(bp, i))->language()->internalFontEncoding()))
1451                                 features.require("textquotedbl");
1452                 } else if (ci.textfeature() && contains(ci.textpreamble(), '=')) {
1453                         // features that depend on the font or input encoding
1454                         string feats = ci.textpreamble();
1455                         string fontenc = (&owner_->getFontSettings(bp, i))->language()->fontenc(bp);
1456                         if (fontenc.empty())
1457                                 fontenc = features.runparams().main_fontenc;
1458                         while (!feats.empty()) {
1459                                 string feat;
1460                                 feats = split(feats, feat, ',');
1461                                 if (contains(feat, "!=")) {
1462                                         // a feature that is required except for the spcified
1463                                         // font or input encodings
1464                                         string realfeature;
1465                                         string const contexts = ltrim(split(feat, realfeature, '!'), "=");
1466                                         // multiple encodings are separated by semicolon
1467                                         vector<string> context = getVectorFromString(contexts, ";");
1468                                         // require feature if the context matches neither current font
1469                                         // nor input encoding
1470                                         if (std::find(context.begin(), context.end(), fontenc) == context.end()
1471                                             && std::find(context.begin(), context.end(),
1472                                                          features.runparams().encoding->name()) == context.end())
1473                                                 features.require(realfeature);
1474                                 } else if (contains(feat, '=')) {
1475                                         // a feature that is required only for the spcified
1476                                         // font or input encodings
1477                                         string realfeature;
1478                                         string const contexts = split(feat, realfeature, '=');
1479                                         // multiple encodings are separated by semicolon
1480                                         vector<string> context = getVectorFromString(contexts, ";");
1481                                         // require feature if the context matches either current font
1482                                         // or input encoding
1483                                         if (std::find(context.begin(), context.end(), fontenc) != context.end()
1484                                             || std::find(context.begin(), context.end(),
1485                                                          features.runparams().encoding->name()) != context.end())
1486                                                 features.require(realfeature);
1487                                 }
1488                         }
1489                 } else if (!bp.use_dash_ligatures
1490                            && (c == 0x2013 || c == 0x2014)
1491                            && bp.useNonTeXFonts
1492                            && features.runparams().flavor == OutputParams::XETEX)
1493                         // XeTeX's dash behaviour is determined via a global setting
1494                         features.require("xetexdashbreakstate");
1495                 BufferEncodings::validate(c, features);
1496         }
1497 }
1498
1499 /////////////////////////////////////////////////////////////////////
1500 //
1501 // Paragraph
1502 //
1503 /////////////////////////////////////////////////////////////////////
1504
1505 namespace {
1506         Layout const emptyParagraphLayout;
1507 }
1508
1509 Paragraph::Paragraph()
1510         : d(new Paragraph::Private(this, emptyParagraphLayout))
1511 {
1512         itemdepth = 0;
1513         d->params_.clear();
1514 }
1515
1516
1517 Paragraph::Paragraph(Paragraph const & par)
1518         : itemdepth(par.itemdepth),
1519         d(new Paragraph::Private(*par.d, this))
1520 {
1521         registerWords();
1522 }
1523
1524
1525 Paragraph::Paragraph(Paragraph const & par, pos_type beg, pos_type end)
1526         : itemdepth(par.itemdepth),
1527         d(new Paragraph::Private(*par.d, this, beg, end))
1528 {
1529         registerWords();
1530 }
1531
1532
1533 Paragraph & Paragraph::operator=(Paragraph const & par)
1534 {
1535         // needed as we will destroy the private part before copying it
1536         if (&par != this) {
1537                 itemdepth = par.itemdepth;
1538
1539                 deregisterWords();
1540                 delete d;
1541                 d = new Private(*par.d, this);
1542                 registerWords();
1543         }
1544         return *this;
1545 }
1546
1547
1548 Paragraph::~Paragraph()
1549 {
1550         deregisterWords();
1551         delete d;
1552 }
1553
1554
1555 namespace {
1556
1557 // this shall be called just before every "os << ..." action.
1558 void flushString(ostream & os, docstring & s)
1559 {
1560         os << to_utf8(s);
1561         s.erase();
1562 }
1563
1564 } // namespace
1565
1566
1567 void Paragraph::write(ostream & os, BufferParams const & bparams,
1568         depth_type & dth) const
1569 {
1570         // The beginning or end of a deeper (i.e. nested) area?
1571         if (dth != d->params_.depth()) {
1572                 if (d->params_.depth() > dth) {
1573                         while (d->params_.depth() > dth) {
1574                                 os << "\n\\begin_deeper";
1575                                 ++dth;
1576                         }
1577                 } else {
1578                         while (d->params_.depth() < dth) {
1579                                 os << "\n\\end_deeper";
1580                                 --dth;
1581                         }
1582                 }
1583         }
1584
1585         // First write the layout
1586         os << "\n\\begin_layout " << to_utf8(d->layout_->name()) << '\n';
1587
1588         d->params_.write(os);
1589
1590         Font font1(inherit_font, bparams.language);
1591
1592         Change running_change = Change(Change::UNCHANGED);
1593
1594         // this string is used as a buffer to avoid repetitive calls
1595         // to to_utf8(), which turn out to be expensive (JMarc)
1596         docstring write_buffer;
1597
1598         int column = 0;
1599         for (pos_type i = 0; i <= size(); ++i) {
1600
1601                 Change const & change = lookupChange(i);
1602                 if (change != running_change)
1603                         flushString(os, write_buffer);
1604                 Changes::lyxMarkChange(os, bparams, column, running_change, change);
1605                 running_change = change;
1606
1607                 if (i == size())
1608                         break;
1609
1610                 // Write font changes
1611                 Font font2 = getFontSettings(bparams, i);
1612                 if (font2 != font1) {
1613                         flushString(os, write_buffer);
1614                         font2.lyxWriteChanges(font1, os);
1615                         column = 0;
1616                         font1 = font2;
1617                 }
1618
1619                 char_type const c = d->text_[i];
1620                 switch (c) {
1621                 case META_INSET:
1622                         if (Inset const * inset = getInset(i)) {
1623                                 flushString(os, write_buffer);
1624                                 if (inset->directWrite()) {
1625                                         // international char, let it write
1626                                         // code directly so it's shorter in
1627                                         // the file
1628                                         inset->write(os);
1629                                 } else {
1630                                         if (i)
1631                                                 os << '\n';
1632                                         os << "\\begin_inset ";
1633                                         inset->write(os);
1634                                         os << "\n\\end_inset\n\n";
1635                                         column = 0;
1636                                 }
1637                                 // FIXME This can be removed again once the mystery
1638                                 // crash has been resolved.
1639                                 os << flush;
1640                         }
1641                         break;
1642                 case '\\':
1643                         flushString(os, write_buffer);
1644                         os << "\n\\backslash\n";
1645                         column = 0;
1646                         break;
1647                 case '.':
1648                         flushString(os, write_buffer);
1649                         if (i + 1 < size() && d->text_[i + 1] == ' ') {
1650                                 os << ".\n";
1651                                 column = 0;
1652                         } else
1653                                 os << '.';
1654                         break;
1655                 default:
1656                         if ((column > 70 && c == ' ')
1657                             || column > 79) {
1658                                 flushString(os, write_buffer);
1659                                 os << '\n';
1660                                 column = 0;
1661                         }
1662                         // this check is to amend a bug. LyX sometimes
1663                         // inserts '\0' this could cause problems.
1664                         if (c != '\0')
1665                                 write_buffer.push_back(c);
1666                         else
1667                                 LYXERR0("NUL char in structure.");
1668                         ++column;
1669                         break;
1670                 }
1671         }
1672
1673         flushString(os, write_buffer);
1674         os << "\n\\end_layout\n";
1675         // FIXME This can be removed again once the mystery
1676         // crash has been resolved.
1677         os << flush;
1678 }
1679
1680
1681 void Paragraph::validate(LaTeXFeatures & features) const
1682 {
1683         d->validate(features);
1684         bool fragile = features.runparams().moving_arg;
1685         fragile |= layout().needprotect;
1686         if (inInset().getLayout().isNeedProtect())
1687                 fragile = true;
1688         if (needsCProtection(fragile))
1689                 features.require("cprotect");
1690 }
1691
1692
1693 void Paragraph::insert(pos_type start, docstring const & str,
1694                        Font const & font, Change const & change)
1695 {
1696         for (size_t i = 0, n = str.size(); i != n ; ++i)
1697                 insertChar(start + i, str[i], font, change);
1698 }
1699
1700
1701 void Paragraph::appendChar(char_type c, Font const & font,
1702                 Change const & change)
1703 {
1704         // track change
1705         d->changes_.insert(change, d->text_.size());
1706         // when appending characters, no need to update tables
1707         d->text_.push_back(c);
1708         setFont(d->text_.size() - 1, font);
1709         d->requestSpellCheck(d->text_.size() - 1);
1710 }
1711
1712
1713 void Paragraph::appendString(docstring const & s, Font const & font,
1714                 Change const & change)
1715 {
1716         pos_type end = s.size();
1717         size_t oldsize = d->text_.size();
1718         size_t newsize = oldsize + end;
1719         size_t capacity = d->text_.capacity();
1720         if (newsize >= capacity)
1721                 d->text_.reserve(max(capacity + 100, newsize));
1722
1723         // when appending characters, no need to update tables
1724         d->text_.append(s);
1725
1726         // FIXME: Optimize this!
1727         for (size_t i = oldsize; i != newsize; ++i) {
1728                 // track change
1729                 d->changes_.insert(change, i);
1730                 d->requestSpellCheck(i);
1731         }
1732         d->fontlist_.set(oldsize, font);
1733         d->fontlist_.set(newsize - 1, font);
1734 }
1735
1736
1737 void Paragraph::insertChar(pos_type pos, char_type c,
1738                            bool trackChanges)
1739 {
1740         d->insertChar(pos, c, Change(trackChanges ?
1741                            Change::INSERTED : Change::UNCHANGED));
1742 }
1743
1744
1745 void Paragraph::insertChar(pos_type pos, char_type c,
1746                            Font const & font, bool trackChanges)
1747 {
1748         d->insertChar(pos, c, Change(trackChanges ?
1749                            Change::INSERTED : Change::UNCHANGED));
1750         setFont(pos, font);
1751 }
1752
1753
1754 void Paragraph::insertChar(pos_type pos, char_type c,
1755                            Font const & font, Change const & change)
1756 {
1757         d->insertChar(pos, c, change);
1758         setFont(pos, font);
1759 }
1760
1761
1762 void Paragraph::resetFonts(Font const & font)
1763 {
1764         d->fontlist_.clear();
1765         d->fontlist_.set(0, font);
1766         d->fontlist_.set(d->text_.size() - 1, font);
1767 }
1768
1769 // Gets uninstantiated font setting at position.
1770 Font const & Paragraph::getFontSettings(BufferParams const & bparams,
1771                                          pos_type pos) const
1772 {
1773         if (pos > size()) {
1774                 LYXERR0("pos: " << pos << " size: " << size());
1775                 LBUFERR(false);
1776         }
1777
1778         FontList::const_iterator cit = d->fontlist_.fontIterator(pos);
1779         if (cit != d->fontlist_.end())
1780                 return cit->font();
1781
1782         if (pos == size() && !empty())
1783                 return getFontSettings(bparams, pos - 1);
1784
1785         // Optimisation: avoid a full font instantiation if there is no
1786         // language change from previous call.
1787         static Font previous_font;
1788         static Language const * previous_lang = nullptr;
1789         Language const * lang = getParLanguage(bparams);
1790         if (lang != previous_lang) {
1791                 previous_lang = lang;
1792                 previous_font = Font(inherit_font, lang);
1793         }
1794         return previous_font;
1795 }
1796
1797
1798 FontSpan Paragraph::fontSpan(pos_type pos) const
1799 {
1800         LBUFERR(pos <= size());
1801
1802         if (pos == size())
1803                 return FontSpan(pos, pos);
1804
1805         pos_type start = 0;
1806         FontList::const_iterator cit = d->fontlist_.begin();
1807         FontList::const_iterator end = d->fontlist_.end();
1808         for (; cit != end; ++cit) {
1809                 if (cit->pos() >= pos) {
1810                         if (pos >= beginOfBody())
1811                                 return FontSpan(max(start, beginOfBody()),
1812                                                 cit->pos());
1813                         else
1814                                 return FontSpan(start,
1815                                                 min(beginOfBody() - 1,
1816                                                          cit->pos()));
1817                 }
1818                 start = cit->pos() + 1;
1819         }
1820
1821         // This should not happen, but if so, we take no chances.
1822         LYXERR0("Paragraph::fontSpan: position not found in fontinfo table!");
1823         LASSERT(false, return FontSpan(pos, pos));
1824 }
1825
1826
1827 // Gets uninstantiated font setting at position 0
1828 Font const & Paragraph::getFirstFontSettings(BufferParams const & bparams) const
1829 {
1830         if (!empty() && !d->fontlist_.empty())
1831                 return d->fontlist_.begin()->font();
1832
1833         // Optimisation: avoid a full font instantiation if there is no
1834         // language change from previous call.
1835         static Font previous_font;
1836         static Language const * previous_lang = nullptr;
1837         if (bparams.language != previous_lang) {
1838                 previous_lang = bparams.language;
1839                 previous_font = Font(inherit_font, bparams.language);
1840         }
1841
1842         return previous_font;
1843 }
1844
1845
1846 // Gets the fully instantiated font at a given position in a paragraph
1847 // This is basically the same function as Text::GetFont() in text2.cpp.
1848 // The difference is that this one is used for generating the LaTeX file,
1849 // and thus cosmetic "improvements" are disallowed: This has to deliver
1850 // the true picture of the buffer. (Asger)
1851 Font const Paragraph::getFont(BufferParams const & bparams, pos_type pos,
1852                                  Font const & outerfont) const
1853 {
1854         LBUFERR(pos >= 0);
1855
1856         Font font = getFontSettings(bparams, pos);
1857
1858         pos_type const body_pos = beginOfBody();
1859         FontInfo & fi = font.fontInfo();
1860         if (pos < body_pos)
1861                 fi.realize(d->layout_->labelfont);
1862         else
1863                 fi.realize(d->layout_->font);
1864
1865         fi.realize(outerfont.fontInfo());
1866         fi.realize(bparams.getFont().fontInfo());
1867
1868         return font;
1869 }
1870
1871
1872 Font const Paragraph::getLabelFont
1873         (BufferParams const & bparams, Font const & outerfont) const
1874 {
1875         FontInfo tmpfont = d->layout_->labelfont;
1876         tmpfont.realize(outerfont.fontInfo());
1877         tmpfont.realize(bparams.getFont().fontInfo());
1878         return Font(tmpfont, getParLanguage(bparams));
1879 }
1880
1881
1882 Font const Paragraph::getLayoutFont
1883         (BufferParams const & bparams, Font const & outerfont) const
1884 {
1885         FontInfo tmpfont = d->layout_->font;
1886         tmpfont.realize(outerfont.fontInfo());
1887         tmpfont.realize(bparams.getFont().fontInfo());
1888         return Font(tmpfont, getParLanguage(bparams));
1889 }
1890
1891
1892 char_type Paragraph::getUChar(BufferParams const & bparams,
1893                               OutputParams const & rp,
1894                               pos_type pos) const
1895 {
1896         char_type c = d->text_[pos];
1897
1898         // Return unchanged character in LTR languages
1899         // or if we use poylglossia/bidi (XeTeX).
1900         if (rp.useBidiPackage()
1901             || !getFontSettings(bparams, pos).isRightToLeft())
1902                 return c;
1903
1904         // Without polyglossia/bidi, we need to account for some special cases.
1905         // FIXME This needs to be audited!
1906         // Check if:
1907         // * The input is as expected for all delimiters
1908         //   => checked for Hebrew!
1909         // * The output matches the display in the LyX workarea
1910         //   => checked for Hebrew!
1911         // * The special cases below are really necessary
1912         //   => checked for Hebrew!
1913         // * In arabic_arabi, brackets are transformed to Arabic
1914         //   Ornate Parentheses. Is this is really wanted?
1915
1916         string const & lang = getFontSettings(bparams, pos).language()->lang();
1917         char_type uc = c;
1918
1919         // 1. In the following languages, parentheses need to be reversed.
1920         //    Also with polyglodia/luabidi
1921         bool const reverseparens = (lang == "hebrew" || rp.use_polyglossia);
1922
1923         // 2. In the following languages, brackets don't need to be reversed.
1924         bool const reversebrackets = lang != "arabic_arabtex"
1925                         && lang != "arabic_arabi"
1926                         && lang != "farsi";
1927
1928         // Now swap delimiters if needed.
1929         switch (c) {
1930         case '(':
1931                 if (reverseparens)
1932                         uc = ')';
1933                 break;
1934         case ')':
1935                 if (reverseparens)
1936                         uc = '(';
1937                 break;
1938         case '[':
1939                 if (reversebrackets)
1940                         uc = ']';
1941                 break;
1942         case ']':
1943                 if (reversebrackets)
1944                         uc = '[';
1945                 break;
1946         case '{':
1947                 uc = '}';
1948                 break;
1949         case '}':
1950                 uc = '{';
1951                 break;
1952         case '<':
1953                 uc = '>';
1954                 break;
1955         case '>':
1956                 uc = '<';
1957                 break;
1958         }
1959
1960         return uc;
1961 }
1962
1963
1964 void Paragraph::setFont(pos_type pos, Font const & font)
1965 {
1966         LASSERT(pos <= size(), return);
1967
1968         // First, reduce font against layout/label font
1969         // Update: The setCharFont() routine in text2.cpp already
1970         // reduces font, so we don't need to do that here. (Asger)
1971
1972         d->fontlist_.set(pos, font);
1973 }
1974
1975
1976 void Paragraph::makeSameLayout(Paragraph const & par)
1977 {
1978         d->layout_ = par.d->layout_;
1979         d->params_ = par.d->params_;
1980 }
1981
1982
1983 bool Paragraph::stripLeadingSpaces(bool trackChanges)
1984 {
1985         if (isFreeSpacing())
1986                 return false;
1987
1988         int pos = 0;
1989         int count = 0;
1990
1991         while (pos < size() && (isNewline(pos) || isLineSeparator(pos))) {
1992                 if (eraseChar(pos, trackChanges))
1993                         ++count;
1994                 else
1995                         ++pos;
1996         }
1997
1998         return count > 0 || pos > 0;
1999 }
2000
2001
2002 bool Paragraph::hasSameLayout(Paragraph const & par) const
2003 {
2004         return par.d->layout_ == d->layout_
2005                 && d->params_.sameLayout(par.d->params_);
2006 }
2007
2008
2009 depth_type Paragraph::getDepth() const
2010 {
2011         return d->params_.depth();
2012 }
2013
2014
2015 depth_type Paragraph::getMaxDepthAfter() const
2016 {
2017         if (d->layout_->isEnvironment())
2018                 return d->params_.depth() + 1;
2019         else
2020                 return d->params_.depth();
2021 }
2022
2023
2024 LyXAlignment Paragraph::getAlign(BufferParams const & bparams) const
2025 {
2026         if (d->params_.align() == LYX_ALIGN_LAYOUT)
2027                 return getDefaultAlign(bparams);
2028         else
2029                 return d->params_.align();
2030 }
2031
2032
2033 LyXAlignment Paragraph::getDefaultAlign(BufferParams const & bparams) const
2034 {
2035         LyXAlignment res = layout().align;
2036         if (isRTL(bparams)) {
2037                 // Swap sides
2038                 if (res == LYX_ALIGN_LEFT)
2039                         res = LYX_ALIGN_RIGHT;
2040                 else if  (res == LYX_ALIGN_RIGHT)
2041                         res = LYX_ALIGN_LEFT;
2042         }
2043         return res;
2044 }
2045
2046
2047 docstring const & Paragraph::labelString() const
2048 {
2049         return d->params_.labelString();
2050 }
2051
2052
2053 // the next two functions are for the manual labels
2054 docstring const Paragraph::getLabelWidthString() const
2055 {
2056         if (d->layout_->margintype == MARGIN_MANUAL
2057             || d->layout_->latextype == LATEX_BIB_ENVIRONMENT)
2058                 return d->params_.labelWidthString();
2059         else
2060                 return _("Senseless with this layout!");
2061 }
2062
2063
2064 void Paragraph::setLabelWidthString(docstring const & s)
2065 {
2066         d->params_.labelWidthString(s);
2067 }
2068
2069
2070 docstring Paragraph::expandLabel(Layout const & layout,
2071                 BufferParams const & bparams) const
2072 {
2073         return expandParagraphLabel(layout, bparams, true);
2074 }
2075
2076
2077 docstring Paragraph::expandParagraphLabel(Layout const & layout,
2078                 BufferParams const & bparams, bool process_appendix) const
2079 {
2080         DocumentClass const & tclass = bparams.documentClass();
2081         string const & lang = getParLanguage(bparams)->code();
2082         bool const in_appendix = process_appendix && d->params_.appendix();
2083         docstring fmt = translateIfPossible(layout.labelstring(in_appendix), lang);
2084
2085         if (fmt.empty() && !layout.counter.empty())
2086                 return tclass.counters().theCounter(layout.counter, lang);
2087
2088         // handle 'inherited level parts' in 'fmt',
2089         // i.e. the stuff between '@' in   '@Section@.\arabic{subsection}'
2090         size_t const i = fmt.find('@', 0);
2091         if (i != docstring::npos) {
2092                 size_t const j = fmt.find('@', i + 1);
2093                 if (j != docstring::npos) {
2094                         docstring parent(fmt, i + 1, j - i - 1);
2095                         docstring label = from_ascii("??");
2096                         if (tclass.hasLayout(parent))
2097                                 label = expandParagraphLabel(tclass[parent], bparams,
2098                                                       process_appendix);
2099                         fmt = docstring(fmt, 0, i) + label
2100                                 + docstring(fmt, j + 1, docstring::npos);
2101                 }
2102         }
2103
2104         return tclass.counters().counterLabel(fmt, lang);
2105 }
2106
2107
2108 void Paragraph::applyLayout(Layout const & new_layout)
2109 {
2110         d->layout_ = &new_layout;
2111         LyXAlignment const oldAlign = d->params_.align();
2112
2113         if (!(oldAlign & d->layout_->alignpossible)) {
2114                 frontend::Alert::warning(_("Alignment not permitted"),
2115                         _("The new layout does not permit the alignment previously used.\nSetting to default."));
2116                 d->params_.align(LYX_ALIGN_LAYOUT);
2117         }
2118 }
2119
2120
2121 pos_type Paragraph::beginOfBody() const
2122 {
2123         return d->begin_of_body_;
2124 }
2125
2126
2127 void Paragraph::setBeginOfBody()
2128 {
2129         if (d->layout_->labeltype != LABEL_MANUAL) {
2130                 d->begin_of_body_ = 0;
2131                 return;
2132         }
2133
2134         // Unroll the first two cycles of the loop
2135         // and remember the previous character to
2136         // remove unnecessary getChar() calls
2137         pos_type i = 0;
2138         pos_type end = size();
2139         bool prev_char_deleted = false;
2140         if (i < end && (!(isNewline(i) || isEnvSeparator(i)) || isDeleted(i))) {
2141                 ++i;
2142                 if (i < end) {
2143                         char_type previous_char = d->text_[i];
2144                         if (!(isNewline(i) || isEnvSeparator(i))) {
2145                                 ++i;
2146                                 while (i < end && (previous_char != ' ' || prev_char_deleted)) {
2147                                         char_type temp = d->text_[i];
2148                                         prev_char_deleted = isDeleted(i);
2149                                         if (!isDeleted(i) && (isNewline(i) || isEnvSeparator(i)))
2150                                                 break;
2151                                         ++i;
2152                                         previous_char = temp;
2153                                 }
2154                         }
2155                 }
2156         }
2157
2158         d->begin_of_body_ = i;
2159 }
2160
2161
2162 bool Paragraph::allowParagraphCustomization() const
2163 {
2164         return inInset().allowParagraphCustomization();
2165 }
2166
2167
2168 bool Paragraph::usePlainLayout() const
2169 {
2170         return inInset().usePlainLayout();
2171 }
2172
2173
2174 bool Paragraph::isPassThru() const
2175 {
2176         return inInset().isPassThru() || d->layout_->pass_thru;
2177 }
2178
2179 namespace {
2180
2181 // paragraphs inside floats need different alignment tags to avoid
2182 // unwanted space
2183
2184 bool noTrivlistCentering(InsetCode code)
2185 {
2186         return code == FLOAT_CODE
2187                || code == WRAP_CODE
2188                || code == CELL_CODE;
2189 }
2190
2191
2192 string correction(string const & orig)
2193 {
2194         if (orig == "flushleft")
2195                 return "raggedright";
2196         if (orig == "flushright")
2197                 return "raggedleft";
2198         if (orig == "center")
2199                 return "centering";
2200         return orig;
2201 }
2202
2203
2204 bool corrected_env(otexstream & os, string const & suffix, string const & env,
2205         InsetCode code, bool const lastpar, int & col)
2206 {
2207         string macro = suffix + "{";
2208         if (noTrivlistCentering(code)) {
2209                 if (lastpar) {
2210                         // the last paragraph in non-trivlist-aligned
2211                         // context is special (to avoid unwanted whitespace)
2212                         if (suffix == "\\begin") {
2213                                 macro = "\\" + correction(env) + "{}";
2214                                 os << from_ascii(macro);
2215                                 col += macro.size();
2216                                 return true;
2217                         }
2218                         return false;
2219                 }
2220                 macro += correction(env);
2221         } else
2222                 macro += env;
2223         macro += "}";
2224         if (suffix == "\\par\\end") {
2225                 os << breakln;
2226                 col = 0;
2227         }
2228         os << from_ascii(macro);
2229         col += macro.size();
2230         if (suffix == "\\begin") {
2231                 os << breakln;
2232                 col = 0;
2233         }
2234         return true;
2235 }
2236
2237 } // namespace
2238
2239
2240 int Paragraph::Private::startTeXParParams(BufferParams const & bparams,
2241                         otexstream & os, OutputParams const & runparams) const
2242 {
2243         int column = 0;
2244
2245         bool canindent =
2246                 (bparams.paragraph_separation == BufferParams::ParagraphIndentSeparation) ?
2247                         (layout_->toggle_indent != ITOGGLE_NEVER) :
2248                         (layout_->toggle_indent == ITOGGLE_ALWAYS);
2249
2250         if (canindent && params_.noindent() && !layout_->pass_thru) {
2251                 os << "\\noindent ";
2252                 column += 10;
2253         }
2254
2255         LyXAlignment const curAlign = params_.align();
2256
2257         if (curAlign == layout_->align)
2258                 return column;
2259
2260         switch (curAlign) {
2261         case LYX_ALIGN_NONE:
2262         case LYX_ALIGN_BLOCK:
2263         case LYX_ALIGN_LAYOUT:
2264         case LYX_ALIGN_SPECIAL:
2265         case LYX_ALIGN_DECIMAL:
2266                 break;
2267         case LYX_ALIGN_LEFT:
2268         case LYX_ALIGN_RIGHT:
2269         case LYX_ALIGN_CENTER:
2270                 if (runparams.moving_arg) {
2271                         os << "\\protect";
2272                         column += 8;
2273                 }
2274                 break;
2275         }
2276
2277         string const begin_tag = "\\begin";
2278         InsetCode code = ownerCode();
2279         bool const lastpar = runparams.isLastPar;
2280         // RTL in classic (PDF)LaTeX (without the Bidi package)
2281         // Luabibdi (used by LuaTeX) behaves like classic
2282         bool const rtl_classic = owner_->getParLanguage(bparams)->rightToLeft()
2283                 && !runparams.useBidiPackage();
2284
2285         switch (curAlign) {
2286         case LYX_ALIGN_NONE:
2287         case LYX_ALIGN_BLOCK:
2288         case LYX_ALIGN_LAYOUT:
2289         case LYX_ALIGN_SPECIAL:
2290         case LYX_ALIGN_DECIMAL:
2291                 break;
2292         case LYX_ALIGN_LEFT: {
2293                 if (rtl_classic)
2294                         // Classic (PDF)LaTeX switches the left/right logic in RTL mode
2295                         corrected_env(os, begin_tag, "flushright", code, lastpar, column);
2296                 else
2297                         corrected_env(os, begin_tag, "flushleft", code, lastpar, column);
2298                 break;
2299         } case LYX_ALIGN_RIGHT: {
2300                 if (rtl_classic)
2301                         // Classic (PDF)LaTeX switches the left/right logic in RTL mode
2302                         corrected_env(os, begin_tag, "flushleft", code, lastpar, column);
2303                 else
2304                         corrected_env(os, begin_tag, "flushright", code, lastpar, column);
2305                 break;
2306         } case LYX_ALIGN_CENTER: {
2307                 corrected_env(os, begin_tag, "center", code, lastpar, column);
2308                 break;
2309         }
2310         }
2311
2312         return column;
2313 }
2314
2315
2316 bool Paragraph::Private::endTeXParParams(BufferParams const & bparams,
2317                         otexstream & os, OutputParams const & runparams) const
2318 {
2319         LyXAlignment const curAlign = params_.align();
2320
2321         if (curAlign == layout_->align)
2322                 return false;
2323
2324         switch (curAlign) {
2325         case LYX_ALIGN_NONE:
2326         case LYX_ALIGN_BLOCK:
2327         case LYX_ALIGN_LAYOUT:
2328         case LYX_ALIGN_SPECIAL:
2329         case LYX_ALIGN_DECIMAL:
2330                 break;
2331         case LYX_ALIGN_LEFT:
2332         case LYX_ALIGN_RIGHT:
2333         case LYX_ALIGN_CENTER:
2334                 if (runparams.moving_arg)
2335                         os << "\\protect";
2336                 break;
2337         }
2338
2339         bool output = false;
2340         int col = 0;
2341         string const end_tag = "\\par\\end";
2342         InsetCode code = ownerCode();
2343         bool const lastpar = runparams.isLastPar;
2344         // RTL in classic (PDF)LaTeX (without the Bidi package)
2345         // Luabibdi (used by LuaTeX) behaves like classic
2346         bool const rtl_classic = owner_->getParLanguage(bparams)->rightToLeft()
2347                 && !runparams.useBidiPackage();
2348
2349         switch (curAlign) {
2350         case LYX_ALIGN_NONE:
2351         case LYX_ALIGN_BLOCK:
2352         case LYX_ALIGN_LAYOUT:
2353         case LYX_ALIGN_SPECIAL:
2354         case LYX_ALIGN_DECIMAL:
2355                 break;
2356         case LYX_ALIGN_LEFT: {
2357                 if (rtl_classic)
2358                         // Classic (PDF)LaTeX switches the left/right logic in RTL mode
2359                         output = corrected_env(os, end_tag, "flushright", code, lastpar, col);
2360                 else
2361                         output = corrected_env(os, end_tag, "flushleft", code, lastpar, col);
2362                 break;
2363         } case LYX_ALIGN_RIGHT: {
2364                 if (rtl_classic)
2365                         // Classic (PDF)LaTeX switches the left/right logic in RTL mode
2366                         output = corrected_env(os, end_tag, "flushleft", code, lastpar, col);
2367                 else
2368                         output = corrected_env(os, end_tag, "flushright", code, lastpar, col);
2369                 break;
2370         } case LYX_ALIGN_CENTER: {
2371                 corrected_env(os, end_tag, "center", code, lastpar, col);
2372                 break;
2373         }
2374         }
2375
2376         return output || lastpar;
2377 }
2378
2379
2380 // This one spits out the text of the paragraph
2381 void Paragraph::latex(BufferParams const & bparams,
2382         Font const & outerfont,
2383         otexstream & os,
2384         OutputParams const & runparams,
2385         int start_pos, int end_pos, bool force) const
2386 {
2387         LYXERR(Debug::LATEX, "Paragraph::latex...     " << this);
2388
2389         // FIXME This check should not be needed. Perhaps issue an
2390         // error if it triggers.
2391         Layout const & style = inInset().forcePlainLayout() ?
2392                 bparams.documentClass().plainLayout() : *d->layout_;
2393
2394         if (!force && style.inpreamble)
2395                 return;
2396
2397         bool const allowcust = allowParagraphCustomization();
2398
2399         // Current base font for all inherited font changes, without any
2400         // change caused by an individual character, except for the language:
2401         // It is set to the language of the first character.
2402         // As long as we are in the label, this font is the base font of the
2403         // label. Before the first body character it is set to the base font
2404         // of the body.
2405         Font basefont;
2406
2407         // If there is an open font-encoding changing command (script wrapper),
2408         // alien_script is set to its name
2409         string alien_script;
2410         string script;
2411
2412         // Maybe we have to create a optional argument.
2413         pos_type body_pos = beginOfBody();
2414         unsigned int column = 0;
2415
2416         // If we are inside an non inheritFont() inset, the real outerfont is local_font
2417         Font const real_outerfont = (!inInset().inheritFont()
2418                                      && runparams.local_font != nullptr)
2419                         ? Font(runparams.local_font->fontInfo()) : outerfont;
2420
2421         if (body_pos > 0) {
2422                 // the optional argument is kept in curly brackets in
2423                 // case it contains a ']'
2424                 // This is not strictly needed, but if this is changed it
2425                 // would be a file format change, and tex2lyx would need
2426                 // to be adjusted, since it unconditionally removes the
2427                 // braces when it parses \item.
2428                 os << "[{";
2429                 column += 2;
2430                 basefont = getLabelFont(bparams, real_outerfont);
2431         } else {
2432                 basefont = getLayoutFont(bparams, real_outerfont);
2433         }
2434
2435         // Which font is currently active?
2436         Font running_font(basefont);
2437         // Do we have an open font change?
2438         bool open_font = false;
2439
2440         Change runningChange = Change(Change::UNCHANGED);
2441
2442         Encoding const * const prev_encoding = runparams.encoding;
2443
2444         os.texrow().start(id(), 0);
2445
2446         // if the paragraph is empty, the loop will not be entered at all
2447         if (empty()) {
2448                 // For InTitle commands, we have already opened a group
2449                 // in output_latex::TeXOnePar.
2450                 if (style.isCommand() && !style.intitle) {
2451                         os << '{';
2452                         ++column;
2453                 }
2454                 if (!style.leftdelim().empty()) {
2455                         os << style.leftdelim();
2456                         column += style.leftdelim().size();
2457                 }
2458                 if (allowcust)
2459                         column += d->startTeXParParams(bparams, os, runparams);
2460         }
2461
2462         // Whether a \par can be issued for insets typeset inline with text.
2463         // Yes if greater than 0. This has to be static.
2464         THREAD_LOCAL_STATIC int parInline = 0;
2465
2466         for (pos_type i = 0; i < size(); ++i) {
2467                 // First char in paragraph or after label?
2468                 if (i == body_pos) {
2469                         if (body_pos > 0) {
2470                                 if (open_font) {
2471                                         bool needPar = false;
2472                                         column += running_font.latexWriteEndChanges(
2473                                                 os, bparams, runparams,
2474                                                 basefont, basefont, needPar);
2475                                         open_font = false;
2476                                 }
2477                                 basefont = getLayoutFont(bparams, real_outerfont);
2478                                 running_font = basefont;
2479
2480                                 column += Changes::latexMarkChange(os, bparams,
2481                                                 runningChange, Change(Change::UNCHANGED),
2482                                                 runparams);
2483                                 runningChange = Change(Change::UNCHANGED);
2484
2485                                 os << "}] ";
2486                                 column +=3;
2487                         }
2488                         // For InTitle commands, we have already opened a group
2489                         // in output_latex::TeXOnePar.
2490                         if (style.isCommand() && !style.intitle) {
2491                                 os << '{';
2492                                 ++column;
2493                         }
2494
2495                         if (!style.leftdelim().empty()) {
2496                                 os << style.leftdelim();
2497                                 column += style.leftdelim().size();
2498                         }
2499
2500                         if (allowcust)
2501                                 column += d->startTeXParParams(bparams, os,
2502                                                             runparams);
2503                 }
2504
2505                 runparams.wasDisplayMath = runparams.inDisplayMath;
2506                 runparams.inDisplayMath = false;
2507                 bool deleted_display_math = false;
2508                 Change const & change = runparams.inDeletedInset
2509                         ? runparams.changeOfDeletedInset : lookupChange(i);
2510
2511                 char_type const c = d->text_[i];
2512
2513                 // Check whether a display math inset follows
2514                 if (c == META_INSET
2515                     && i >= start_pos && (end_pos == -1 || i < end_pos)) {
2516                         if (isDeleted(i))
2517                                 runparams.ctObject = getInset(i)->CtObject(runparams);
2518         
2519                         InsetMath const * im = getInset(i)->asInsetMath();
2520                         if (im && im->asHullInset()
2521                             && im->asHullInset()->outerDisplay()) {
2522                                 runparams.inDisplayMath = true;
2523                                 // runparams.inDeletedInset will be set by
2524                                 // latexInset later, but we need this info
2525                                 // before it is called. On the other hand, we
2526                                 // cannot set it here because it is a counter.
2527                                 deleted_display_math = isDeleted(i);
2528                         }
2529                         if (bparams.output_changes && deleted_display_math
2530                             && runningChange == change
2531                             && change.type == Change::DELETED
2532                             && !os.afterParbreak()) {
2533                                 // A display math in the same paragraph follows.
2534                                 // We have to close and then reopen \lyxdeleted,
2535                                 // otherwise the math will be shifted up.
2536                                 OutputParams rp = runparams;
2537                                 if (open_font) {
2538                                         bool needPar = false;
2539                                         column += running_font.latexWriteEndChanges(
2540                                                 os, bparams, rp, basefont,
2541                                                 basefont, needPar);
2542                                         open_font = false;
2543                                 }
2544                                 basefont = (body_pos > i) ? getLabelFont(bparams, real_outerfont)
2545                                                           : getLayoutFont(bparams, real_outerfont);
2546                                 running_font = basefont;
2547                                 column += Changes::latexMarkChange(os, bparams,
2548                                         Change(Change::INSERTED), change, rp);
2549                         }
2550                 }
2551
2552                 if (bparams.output_changes && runningChange != change) {
2553                         if (!alien_script.empty()) {
2554                                 column += 1;
2555                                 os << "}";
2556                                 alien_script.clear();
2557                         }
2558                         if (open_font) {
2559                                 bool needPar = false;
2560                                 column += running_font.latexWriteEndChanges(
2561                                                 os, bparams, runparams,
2562                                                 basefont, basefont, needPar);
2563                                 open_font = false;
2564                         }
2565                         basefont = (body_pos > i) ? getLabelFont(bparams, real_outerfont)
2566                                                   : getLayoutFont(bparams, real_outerfont);
2567                         running_font = basefont;
2568                         column += Changes::latexMarkChange(os, bparams, runningChange,
2569                                                            change, runparams);
2570                         runningChange = change;
2571                 }
2572
2573                 // do not output text which is marked deleted
2574                 // if change tracking output is disabled
2575                 if (!bparams.output_changes && change.deleted()) {
2576                         continue;
2577                 }
2578
2579                 ++column;
2580
2581                 // Fully instantiated font
2582                 Font const current_font = getFont(bparams, i, outerfont);
2583                 // Previous font
2584                 Font const prev_font = (i > 0) ?
2585                                         getFont(bparams, i - 1, outerfont)
2586                                       : current_font;
2587
2588                 Font const last_font = running_font;
2589                 bool const in_ct_deletion = (bparams.output_changes
2590                                              && runningChange == change
2591                                              && change.type == Change::DELETED
2592                                              && !os.afterParbreak());
2593                 bool const multipar_inset =
2594                         (c == META_INSET && getInset(i) && getInset(i)->allowMultiPar());
2595
2596                 // Do we need to close the previous font?
2597                 if (open_font &&
2598                     ((current_font != running_font
2599                       || current_font.language() != running_font.language())
2600                      || (multipar_inset
2601                          && (current_font == prev_font
2602                              || current_font.language() == prev_font.language()))))
2603                 {
2604                         // ensure there is no open script-wrapper
2605                         if (!alien_script.empty()) {
2606                                 column += 1;
2607                                 os << "}";
2608                                 alien_script.clear();
2609                         }
2610                         bool needPar = false;
2611                         if (in_ct_deletion) {
2612                                 // We have to close and then reopen \lyxdeleted,
2613                                 // as strikeout needs to be on lowest level.
2614                                 os << '}';
2615                                 column += 1;
2616                         }
2617                         column += running_font.latexWriteEndChanges(
2618                                     os, bparams, runparams, basefont,
2619                                     (i == body_pos-1) ? basefont : current_font,
2620                                     needPar);
2621                         if (in_ct_deletion) {
2622                                 // We have to close and then reopen \lyxdeleted,
2623                                 // as strikeout needs to be on lowest level.
2624                                 OutputParams rp = runparams;
2625                                 column += Changes::latexMarkChange(os, bparams,
2626                                         Change(Change::UNCHANGED), Change(Change::DELETED), rp);
2627                         }
2628                         running_font = basefont;
2629                         open_font = false;
2630                 }
2631
2632                 // if necessary, close language environment before opening CJK
2633                 string const running_lang = running_font.language()->babel();
2634                 string const lang_end_command = lyxrc.language_command_end;
2635                 if (!lang_end_command.empty() && !bparams.useNonTeXFonts
2636                         && !running_lang.empty()
2637                         && running_lang == openLanguageName()
2638                         && current_font.language()->encoding()->package() == Encoding::CJK) {
2639                         string end_tag = subst(lang_end_command, "$$lang", running_lang);
2640                         os << from_ascii(end_tag);
2641                         column += end_tag.length();
2642                         popLanguageName();
2643                 }
2644
2645                 // Switch file encoding if necessary (and allowed)
2646                 if (!runparams.pass_thru && !style.pass_thru &&
2647                     runparams.encoding->package() != Encoding::none &&
2648                     current_font.language()->encoding()->package() != Encoding::none) {
2649                         pair<bool, int> const enc_switch =
2650                                 switchEncoding(os.os(), bparams, runparams,
2651                                         *(current_font.language()->encoding()));
2652                         if (enc_switch.first) {
2653                                 column += enc_switch.second;
2654                                 runparams.encoding = current_font.language()->encoding();
2655                         }
2656                 }
2657
2658                 // A display math inset inside an ulem command will be output
2659                 // as a box of width \linewidth, so we have to either disable
2660                 // indentation if the inset starts a paragraph, or start a new
2661                 // line to accommodate such box. This has to be done before
2662                 // writing any font changing commands.
2663                 if (runparams.inDisplayMath && !deleted_display_math
2664                     && runparams.inulemcmd) {
2665                         if (os.afterParbreak())
2666                                 os << "\\noindent";
2667                         else
2668                                 os << "\\\\\n";
2669                 }
2670
2671                 // Do we need to change font?
2672                 if ((current_font != running_font ||
2673                      current_font.language() != running_font.language())
2674                     && i != body_pos - 1)
2675                 {
2676                         if (in_ct_deletion) {
2677                                 // We have to close and then reopen \lyxdeleted,
2678                                 // as strikeout needs to be on lowest level.
2679                                 bool needPar = false;
2680                                 OutputParams rp = runparams;
2681                                 column += running_font.latexWriteEndChanges(
2682                                         os, bparams, rp, basefont,
2683                                         basefont, needPar);
2684                                 os << '}';
2685                                 column += 1;
2686                         }
2687                         otexstringstream ots;
2688                         if (!multipar_inset) {
2689                                 InsetText const * textinset = inInset().asInsetText();
2690                                 bool const cprotect = textinset
2691                                         ? textinset->hasCProtectContent(runparams.moving_arg)
2692                                           && !textinset->text().isMainText()
2693                                         : false;
2694                                 column += current_font.latexWriteStartChanges(ots, bparams,
2695                                                                               runparams, basefont, last_font, false,
2696                                                                               cprotect);
2697                         }
2698                         // Check again for display math in ulem commands as a
2699                         // font change may also occur just before a math inset.
2700                         if (runparams.inDisplayMath && !deleted_display_math
2701                             && runparams.inulemcmd) {
2702                                 if (os.afterParbreak())
2703                                         os << "\\noindent";
2704                                 else
2705                                         os << "\\\\\n";
2706                         }
2707                         running_font = current_font;
2708                         open_font = true;
2709                         docstring fontchange = ots.str();
2710                         os << fontchange;
2711                         // check whether the fontchange ends with a \\textcolor
2712                         // modifier and the text starts with a space. If so we
2713                         // need to add } in order to prevent \\textcolor from gobbling
2714                         // the space (bug 4473).
2715                         docstring const last_modifier = rsplit(fontchange, '\\');
2716                         if (prefixIs(last_modifier, from_ascii("textcolor")) && c == ' ')
2717                                 os << from_ascii("{}");
2718                         else if (ots.terminateCommand())
2719                                 os << termcmd;
2720                         if (in_ct_deletion) {
2721                                 // We have to close and then reopen \lyxdeleted,
2722                                 // as strikeout needs to be on lowest level.
2723                                 OutputParams rp = runparams;
2724                                 column += Changes::latexMarkChange(os, bparams,
2725                                         Change(Change::UNCHANGED), change, rp);
2726                         }
2727                 }
2728
2729                 // FIXME: think about end_pos implementation...
2730                 if (c == ' ' && i >= start_pos && (end_pos == -1 || i < end_pos)) {
2731                         // FIXME: integrate this case in latexSpecialChar
2732                         // Do not print the separation of the optional argument
2733                         // if style.pass_thru is false. This works because
2734                         // latexSpecialChar ignores spaces if
2735                         // style.pass_thru is false.
2736                         if (i != body_pos - 1) {
2737                                 if (d->simpleTeXBlanks(bparams, runparams, os,
2738                                                 i, column, current_font, style)) {
2739                                         // A surrogate pair was output. We
2740                                         // must not call latexSpecialChar
2741                                         // in this iteration, since it would output
2742                                         // the combining character again.
2743                                         ++i;
2744                                         continue;
2745                                 }
2746                         }
2747                 }
2748
2749                 OutputParams rp = runparams;
2750                 rp.free_spacing = style.free_spacing;
2751                 rp.local_font = &current_font;
2752                 rp.intitle = style.intitle;
2753
2754                 // Two major modes:  LaTeX or plain
2755                 // Handle here those cases common to both modes
2756                 // and then split to handle the two modes separately.
2757                 if (c == META_INSET) {
2758                         if (i >= start_pos && (end_pos == -1 || i < end_pos)) {
2759                                 // Greyedout notes and, in general, all insets
2760                                 // with InsetLayout::isDisplay() == false,
2761                                 // are typeset inline with the text. So, we
2762                                 // can add a \par to the last paragraph of
2763                                 // such insets only if nothing else follows.
2764                                 bool incremented = false;
2765                                 Inset const * inset = getInset(i);
2766                                 InsetText const * textinset = inset
2767                                                         ? inset->asInsetText()
2768                                                         : nullptr;
2769                                 if (i + 1 == size() && textinset
2770                                     && !inset->getLayout().isDisplay()) {
2771                                         ParagraphList const & pars =
2772                                                 textinset->text().paragraphs();
2773                                         pit_type const pit = pars.size() - 1;
2774                                         Font const lastfont =
2775                                                 pit < 0 || pars[pit].empty()
2776                                                 ? pars[pit].getLayoutFont(
2777                                                                 bparams,
2778                                                                 real_outerfont)
2779                                                 : pars[pit].getFont(bparams,
2780                                                         pars[pit].size() - 1,
2781                                                         real_outerfont);
2782                                         if (lastfont.fontInfo().size() !=
2783                                             basefont.fontInfo().size()) {
2784                                                 ++parInline;
2785                                                 incremented = true;
2786                                         }
2787                                 }
2788                                 // We need to restore these after insets with
2789                                 // allowMultiPar() true
2790                                 Font const save_running_font = running_font;
2791                                 Font const save_basefont = basefont;
2792                                 d->latexInset(bparams, os, rp, running_font,
2793                                                 basefont, real_outerfont, open_font,
2794                                                 runningChange, style, i, column);
2795                                 if (multipar_inset) {
2796                                         running_font = save_running_font;
2797                                         basefont = save_basefont;
2798                                 }
2799                                 if (incremented)
2800                                         --parInline;
2801
2802                                 if (runparams.ctObject == OutputParams::CT_DISPLAYOBJECT
2803                                     || runparams.ctObject == OutputParams::CT_UDISPLAYOBJECT) {
2804                                         // Close \lyx*deleted and force its
2805                                         // reopening (if needed)
2806                                         os << '}';
2807                                         column++;
2808                                         runningChange = Change(Change::UNCHANGED);
2809                                         runparams.ctObject = OutputParams::CT_NORMAL;
2810                                 }
2811                         }
2812                 } else if (i >= start_pos && (end_pos == -1 || i < end_pos)) {
2813                         if (!bparams.useNonTeXFonts)
2814                           script = Encodings::isKnownScriptChar(c);
2815                         if (script != alien_script) {
2816                                 if (!alien_script.empty()) {
2817                                         os << "}";
2818                                         alien_script.clear();
2819                                 }
2820                                 string fontenc = running_font.language()->fontenc(bparams);
2821                                 if (!script.empty()
2822                                         && !Encodings::fontencSupportsScript(fontenc, script)) {
2823                                         column += script.length() + 2;
2824                                         os << "\\" << script << "{";
2825                                         alien_script = script;
2826                                 }
2827                         }
2828                         try {
2829                                 d->latexSpecialChar(os, bparams, rp, running_font,
2830                                                                         alien_script, style, i, end_pos, column);
2831                         } catch (EncodingException & e) {
2832                                 if (runparams.dryrun) {
2833                                         os << "<" << _("LyX Warning: ")
2834                                            << _("uncodable character") << " '";
2835                                         os.put(c);
2836                                         os << "'>";
2837                                 } else {
2838                                         // add location information and throw again.
2839                                         e.par_id = id();
2840                                         e.pos = i;
2841                                         throw(e);
2842                                 }
2843                         }
2844                 }
2845
2846                 // Set the encoding to that returned from latexSpecialChar (see
2847                 // comment for encoding member in OutputParams.h)
2848                 runparams.encoding = rp.encoding;
2849
2850                 // Also carry on the info on a closed ulem command for insets
2851                 // such as Note that do not produce any output, so that no
2852                 // command is ever executed but its opening was recorded.
2853                 runparams.inulemcmd = rp.inulemcmd;
2854
2855                 // These need to be passed upstream as well
2856                 runparams.need_maketitle = rp.need_maketitle;
2857                 runparams.have_maketitle = rp.have_maketitle;
2858
2859                 // And finally, pass the post_macros upstream
2860                 runparams.post_macro = rp.post_macro;
2861         }
2862
2863         // Close wrapper for alien script
2864         if (!alien_script.empty()) {
2865                 os << "}";
2866                 alien_script.clear();
2867         }
2868
2869         // If we have an open font definition, we have to close it
2870         if (open_font) {
2871                 // Make sure that \\par is done with the font of the last
2872                 // character if this has another size as the default.
2873                 // This is necessary because LaTeX (and LyX on the screen)
2874                 // calculates the space between the baselines according
2875                 // to this font. (Matthias)
2876                 //
2877                 // We must not change the font for the last paragraph
2878                 // of non-multipar insets, tabular cells or commands,
2879                 // since this produces unwanted whitespace.
2880
2881                 Font const font = empty()
2882                         ? getLayoutFont(bparams, real_outerfont)
2883                         : getFont(bparams, size() - 1, real_outerfont);
2884
2885                 InsetText const * textinset = inInset().asInsetText();
2886
2887                 bool const maintext = textinset
2888                         ? textinset->text().isMainText()
2889                         : false;
2890
2891                 size_t const numpars = textinset
2892                         ? textinset->text().paragraphs().size()
2893                         : 0;
2894
2895                 bool needPar = false;
2896
2897                 if (style.resfont.size() != font.fontInfo().size()
2898                     && (!runparams.isLastPar || maintext
2899                         || (numpars > 1 && d->ownerCode() != CELL_CODE
2900                             && (inInset().getLayout().isDisplay()
2901                                 || parInline)))
2902                     && !style.isCommand()) {
2903                         needPar = true;
2904                 }
2905 #ifdef FIXED_LANGUAGE_END_DETECTION
2906                 if (next_) {
2907                         running_font.latexWriteEndChanges(os, bparams,
2908                                         runparams, basefont,
2909                                         next_->getFont(bparams, 0, outerfont),
2910                                                        needPar);
2911                 } else {
2912                         running_font.latexWriteEndChanges(os, bparams,
2913                                         runparams, basefont, basefont, needPar);
2914                 }
2915 #else
2916 //FIXME: For now we ALWAYS have to close the foreign font settings if they are
2917 //FIXME: there as we start another \selectlanguage with the next paragraph if
2918 //FIXME: we are in need of this. This should be fixed sometime (Jug)
2919                 running_font.latexWriteEndChanges(os, bparams, runparams,
2920                                 basefont, basefont, needPar);
2921 #endif
2922                 if (needPar) {
2923                         // The \par could not be inserted at the same nesting
2924                         // level of the font size change, so do it now.
2925                         os << "{\\" << font.latexSize() << "\\par}";
2926                 }
2927         }
2928
2929         column += Changes::latexMarkChange(os, bparams, runningChange,
2930                                            Change(Change::UNCHANGED), runparams);
2931
2932         // Needed if there is an optional argument but no contents.
2933         if (body_pos > 0 && body_pos == size()) {
2934                 os << "}]~";
2935         }
2936
2937         if (!style.rightdelim().empty()) {
2938                 os << style.rightdelim();
2939                 column += style.rightdelim().size();
2940         }
2941
2942         if (allowcust && d->endTeXParParams(bparams, os, runparams)
2943             && runparams.encoding != prev_encoding) {
2944                 runparams.encoding = prev_encoding;
2945                 os << setEncoding(prev_encoding->iconvName());
2946         }
2947
2948         LYXERR(Debug::LATEX, "Paragraph::latex... done " << this);
2949 }
2950
2951
2952 bool Paragraph::emptyTag() const
2953 {
2954         for (pos_type i = 0; i < size(); ++i) {
2955                 if (Inset const * inset = getInset(i)) {
2956                         InsetCode lyx_code = inset->lyxCode();
2957                         // FIXME testing like that is wrong. What is
2958                         // the intent?
2959                         if (lyx_code != TOC_CODE &&
2960                             lyx_code != INCLUDE_CODE &&
2961                             lyx_code != GRAPHICS_CODE &&
2962                             lyx_code != ERT_CODE &&
2963                             lyx_code != LISTINGS_CODE &&
2964                             lyx_code != FLOAT_CODE &&
2965                             lyx_code != TABULAR_CODE) {
2966                                 return false;
2967                         }
2968                 } else {
2969                         char_type c = d->text_[i];
2970                         if (c != ' ' && c != '\t')
2971                                 return false;
2972                 }
2973         }
2974         return true;
2975 }
2976
2977
2978 string Paragraph::getID(Buffer const &, OutputParams const &)
2979         const
2980 {
2981         for (pos_type i = 0; i < size(); ++i) {
2982                 if (Inset const * inset = getInset(i)) {
2983                         InsetCode lyx_code = inset->lyxCode();
2984                         if (lyx_code == LABEL_CODE) {
2985                                 InsetLabel const * const il = static_cast<InsetLabel const *>(inset);
2986                                 docstring const & id = il->getParam("name");
2987                                 return "id='" + to_utf8(xml::cleanID(id)) + "'";
2988                         }
2989                 }
2990         }
2991         return string();
2992 }
2993
2994
2995 pos_type Paragraph::firstWordDocBook(XMLStream & xs, OutputParams const & runparams) const
2996 {
2997         pos_type i;
2998         for (i = 0; i < size(); ++i) {
2999                 if (Inset const * inset = getInset(i)) {
3000                         inset->docbook(xs, runparams);
3001                 } else {
3002                         char_type c = d->text_[i];
3003                         if (c == ' ')
3004                                 break;
3005                         xs << c;
3006                 }
3007         }
3008         return i;
3009 }
3010
3011
3012 pos_type Paragraph::firstWordLyXHTML(XMLStream & xs, OutputParams const & runparams)
3013         const
3014 {
3015         pos_type i;
3016         for (i = 0; i < size(); ++i) {
3017                 if (Inset const * inset = getInset(i)) {
3018                         inset->xhtml(xs, runparams);
3019                 } else {
3020                         char_type c = d->text_[i];
3021                         if (c == ' ')
3022                                 break;
3023                         xs << c;
3024                 }
3025         }
3026         return i;
3027 }
3028
3029
3030 bool Paragraph::Private::onlyText(Buffer const & buf, Font const & outerfont, pos_type initial) const
3031 {
3032         Font font_old;
3033         pos_type size = text_.size();
3034         for (pos_type i = initial; i < size; ++i) {
3035                 Font font = owner_->getFont(buf.params(), i, outerfont);
3036                 if (text_[i] == META_INSET)
3037                         return false;
3038                 if (i != initial && font != font_old)
3039                         return false;
3040                 font_old = font;
3041         }
3042
3043         return true;
3044 }
3045
3046
3047 namespace {
3048
3049 void doFontSwitchDocBook(vector<xml::FontTag> & tagsToOpen,
3050                   vector<xml::EndFontTag> & tagsToClose,
3051                   bool & flag, FontState curstate, xml::FontTypes type)
3052 {
3053         if (curstate == FONT_ON) {
3054                 tagsToOpen.push_back(docbookStartFontTag(type));
3055                 flag = true;
3056         } else if (flag) {
3057                 tagsToClose.push_back(docbookEndFontTag(type));
3058                 flag = false;
3059         }
3060 }
3061
3062 class OptionalFontType {
3063 public:
3064         xml::FontTypes ft;
3065         bool has_value;
3066
3067         OptionalFontType(): ft(xml::FT_EMPH), has_value(false) {} // A possible value at random for ft.
3068         OptionalFontType(xml::FontTypes ft): ft(ft), has_value(true) {}
3069 };
3070
3071 OptionalFontType fontShapeToXml(FontShape fs)
3072 {
3073         switch (fs) {
3074         case ITALIC_SHAPE:
3075                 return {xml::FT_ITALIC};
3076         case SLANTED_SHAPE:
3077                 return {xml::FT_SLANTED};
3078         case SMALLCAPS_SHAPE:
3079                 return {xml::FT_SMALLCAPS};
3080         case UP_SHAPE:
3081         case INHERIT_SHAPE:
3082                 return {};
3083         default:
3084                 // the other tags are for internal use
3085                 LATTEST(false);
3086                 return {};
3087         }
3088 }
3089
3090 OptionalFontType fontFamilyToXml(FontFamily fm)
3091 {
3092         switch (fm) {
3093         case ROMAN_FAMILY:
3094                 return {xml::FT_ROMAN};
3095         case SANS_FAMILY:
3096                 return {xml::FT_SANS};
3097         case TYPEWRITER_FAMILY:
3098                 return {xml::FT_TYPE};
3099         case INHERIT_FAMILY:
3100                 return {};
3101         default:
3102                 // the other tags are for internal use
3103                 LATTEST(false);
3104                 return {};
3105         }
3106 }
3107
3108 OptionalFontType fontSizeToXml(FontSize fs)
3109 {
3110         switch (fs) {
3111         case TINY_SIZE:
3112                 return {xml::FT_SIZE_TINY};
3113         case SCRIPT_SIZE:
3114                 return {xml::FT_SIZE_SCRIPT};
3115         case FOOTNOTE_SIZE:
3116                 return {xml::FT_SIZE_FOOTNOTE};
3117         case SMALL_SIZE:
3118                 return {xml::FT_SIZE_SMALL};
3119         case LARGE_SIZE:
3120                 return {xml::FT_SIZE_LARGE};
3121         case LARGER_SIZE:
3122                 return {xml::FT_SIZE_LARGER};
3123         case LARGEST_SIZE:
3124                 return {xml::FT_SIZE_LARGEST};
3125         case HUGE_SIZE:
3126                 return {xml::FT_SIZE_HUGE};
3127         case HUGER_SIZE:
3128                 return {xml::FT_SIZE_HUGER};
3129         case INCREASE_SIZE:
3130                 return {xml::FT_SIZE_INCREASE};
3131         case DECREASE_SIZE:
3132                 return {xml::FT_SIZE_DECREASE};
3133         case INHERIT_SIZE:
3134         case NORMAL_SIZE:
3135                 return {};
3136         default:
3137                 // the other tags are for internal use
3138                 LATTEST(false);
3139                 return {};
3140         }
3141 }
3142
3143 struct DocBookFontState
3144 {
3145         FontShape  curr_fs   = INHERIT_SHAPE;
3146         FontFamily curr_fam  = INHERIT_FAMILY;
3147         FontSize   curr_size = INHERIT_SIZE;
3148
3149         // track whether we have opened these tags
3150         bool emph_flag = false;
3151         bool bold_flag = false;
3152         bool noun_flag = false;
3153         bool ubar_flag = false;
3154         bool dbar_flag = false;
3155         bool sout_flag = false;
3156         bool xout_flag = false;
3157         bool wave_flag = false;
3158         // shape tags
3159         bool shap_flag = false;
3160         // family tags
3161         bool faml_flag = false;
3162         // size tags
3163         bool size_flag = false;
3164 };
3165
3166 std::tuple<vector<xml::FontTag>, vector<xml::EndFontTag>> computeDocBookFontSwitch(FontInfo const & font_old,
3167                                                                                            Font const & font,
3168                                                                                            std::string const & default_family,
3169                                                                                            DocBookFontState & fs)
3170 {
3171         vector<xml::FontTag> tagsToOpen;
3172         vector<xml::EndFontTag> tagsToClose;
3173
3174         // emphasis
3175         FontState curstate = font.fontInfo().emph();
3176         if (font_old.emph() != curstate)
3177                 doFontSwitchDocBook(tagsToOpen, tagsToClose, fs.emph_flag, curstate, xml::FT_EMPH);
3178
3179         // noun
3180         curstate = font.fontInfo().noun();
3181         if (font_old.noun() != curstate)
3182                 doFontSwitchDocBook(tagsToOpen, tagsToClose, fs.noun_flag, curstate, xml::FT_NOUN);
3183
3184         // underbar
3185         curstate = font.fontInfo().underbar();
3186         if (font_old.underbar() != curstate)
3187                 doFontSwitchDocBook(tagsToOpen, tagsToClose, fs.ubar_flag, curstate, xml::FT_UBAR);
3188
3189         // strikeout
3190         curstate = font.fontInfo().strikeout();
3191         if (font_old.strikeout() != curstate)
3192                 doFontSwitchDocBook(tagsToOpen, tagsToClose, fs.sout_flag, curstate, xml::FT_SOUT);
3193
3194         // xout
3195         curstate = font.fontInfo().xout();
3196         if (font_old.xout() != curstate)
3197                 doFontSwitchDocBook(tagsToOpen, tagsToClose, fs.xout_flag, curstate, xml::FT_XOUT);
3198
3199         // double underbar
3200         curstate = font.fontInfo().uuline();
3201         if (font_old.uuline() != curstate)
3202                 doFontSwitchDocBook(tagsToOpen, tagsToClose, fs.dbar_flag, curstate, xml::FT_DBAR);
3203
3204         // wavy line
3205         curstate = font.fontInfo().uwave();
3206         if (font_old.uwave() != curstate)
3207                 doFontSwitchDocBook(tagsToOpen, tagsToClose, fs.wave_flag, curstate, xml::FT_WAVE);
3208
3209         // bold
3210         // a little hackish, but allows us to reuse what we have.
3211         curstate = (font.fontInfo().series() == BOLD_SERIES ? FONT_ON : FONT_OFF);
3212         if (font_old.series() != font.fontInfo().series())
3213                 doFontSwitchDocBook(tagsToOpen, tagsToClose, fs.bold_flag, curstate, xml::FT_BOLD);
3214
3215         // Font shape
3216         fs.curr_fs = font.fontInfo().shape();
3217         FontShape old_fs = font_old.shape();
3218         if (old_fs != fs.curr_fs) {
3219                 if (fs.shap_flag) {
3220                         OptionalFontType tag = fontShapeToXml(old_fs);
3221                         if (tag.has_value)
3222                                 tagsToClose.push_back(docbookEndFontTag(tag.ft));
3223                         fs.shap_flag = false;
3224                 }
3225
3226                 OptionalFontType tag = fontShapeToXml(fs.curr_fs);
3227                 if (tag.has_value)
3228                         tagsToOpen.push_back(docbookStartFontTag(tag.ft));
3229         }
3230
3231         // Font family
3232         fs.curr_fam = font.fontInfo().family();
3233         FontFamily old_fam = font_old.family();
3234         if (old_fam != fs.curr_fam) {
3235                 if (fs.faml_flag) {
3236                         OptionalFontType tag = fontFamilyToXml(old_fam);
3237                         if (tag.has_value)
3238                                 tagsToClose.push_back(docbookEndFontTag(tag.ft));
3239                         fs.faml_flag = false;
3240                 }
3241                 switch (fs.curr_fam) {
3242                         case ROMAN_FAMILY:
3243                                 // we will treat a "default" font family as roman, since we have
3244                                 // no other idea what to do.
3245                                 if (default_family != "rmdefault" && default_family != "default") {
3246                                         tagsToOpen.push_back(docbookStartFontTag(xml::FT_ROMAN));
3247                                         fs.faml_flag = true;
3248                                 }
3249                                 break;
3250                         case SANS_FAMILY:
3251                                 if (default_family != "sfdefault") {
3252                                         tagsToOpen.push_back(docbookStartFontTag(xml::FT_SANS));
3253                                         fs.faml_flag = true;
3254                                 }
3255                                 break;
3256                         case TYPEWRITER_FAMILY:
3257                                 if (default_family != "ttdefault") {
3258                                         tagsToOpen.push_back(docbookStartFontTag(xml::FT_TYPE));
3259                                         fs.faml_flag = true;
3260                                 }
3261                                 break;
3262                         case INHERIT_FAMILY:
3263                                 break;
3264                         default:
3265                                 // the other tags are for internal use
3266                                 LATTEST(false);
3267                                 break;
3268                 }
3269         }
3270
3271         // Font size
3272         fs.curr_size = font.fontInfo().size();
3273         FontSize old_size = font_old.size();
3274         if (old_size != fs.curr_size) {
3275                 if (fs.size_flag) {
3276                         OptionalFontType tag = fontSizeToXml(old_size);
3277                         if (tag.has_value)
3278                                 tagsToClose.push_back(docbookEndFontTag(tag.ft));
3279                         fs.size_flag = false;
3280                 }
3281
3282                 OptionalFontType tag = fontSizeToXml(fs.curr_size);
3283                 if (tag.has_value) {
3284                         tagsToOpen.push_back(docbookStartFontTag(tag.ft));
3285                         fs.size_flag = true;
3286                 }
3287         }
3288
3289         return std::tuple<vector<xml::FontTag>, vector<xml::EndFontTag>>(tagsToOpen, tagsToClose);
3290 }
3291
3292 } // anonymous namespace
3293
3294
3295 void Paragraph::simpleDocBookOnePar(Buffer const & buf,
3296                                     XMLStream & xs,
3297                                     OutputParams const & runparams,
3298                                     Font const & outerfont,
3299                                     bool start_paragraph, bool close_paragraph,
3300                                     pos_type initial) const
3301 {
3302         // track whether we have opened these tags
3303         DocBookFontState fs;
3304
3305         if (start_paragraph)
3306                 xs.startDivision(allowEmpty());
3307
3308         Layout const & style = *d->layout_;
3309         FontInfo font_old =
3310                         style.labeltype == LABEL_MANUAL ? style.labelfont : style.font;
3311
3312         string const default_family =
3313                         buf.masterBuffer()->params().fonts_default_family;
3314
3315         vector<xml::FontTag> tagsToOpen;
3316         vector<xml::EndFontTag> tagsToClose;
3317
3318         // parsing main loop
3319         for (pos_type i = initial; i < size(); ++i) {
3320                 // let's not show deleted material in the output
3321                 if (isDeleted(i))
3322                         continue;
3323
3324                 Font const font = getFont(buf.masterBuffer()->params(), i, outerfont);
3325
3326                 // Determine which tags should be opened or closed.
3327                 tie(tagsToOpen, tagsToClose) = computeDocBookFontSwitch(font_old, font, default_family, fs);
3328
3329                 // FIXME XHTML
3330                 // Other such tags? What about the other text ranges?
3331
3332                 vector<xml::EndFontTag>::const_iterator cit = tagsToClose.begin();
3333                 vector<xml::EndFontTag>::const_iterator cen = tagsToClose.end();
3334                 for (; cit != cen; ++cit)
3335                         xs << *cit;
3336
3337                 vector<xml::FontTag>::const_iterator sit = tagsToOpen.begin();
3338                 vector<xml::FontTag>::const_iterator sen = tagsToOpen.end();
3339                 for (; sit != sen; ++sit)
3340                         xs << *sit;
3341
3342                 tagsToClose.clear();
3343                 tagsToOpen.clear();
3344
3345                 if (Inset const * inset = getInset(i)) {
3346                         if (!runparams.for_toc || inset->isInToc()) {
3347                                 OutputParams np = runparams;
3348                                 np.local_font = &font;
3349                                 // If the paragraph has size 1, then we are in the "special
3350                                 // case" where we do not output the containing paragraph info.
3351                                 // This "special case" is defined in more details in output_docbook.cpp, makeParagraphs. The results
3352                                 // of that brittle logic is passed to this function through open_par.
3353                                 if (!inset->getLayout().htmlisblock() && size() != 1) // TODO: htmlisblock here too!
3354                                         np.docbook_in_par = true;
3355                                 inset->docbook(xs, np);
3356                         }
3357                 } else {
3358                         char_type c = getUChar(buf.masterBuffer()->params(), runparams, i);
3359                         xs << c;
3360                 }
3361                 font_old = font.fontInfo();
3362         }
3363
3364         // FIXME, this code is just imported from XHTML
3365         // I'm worried about what happens if a branch, say, is itself
3366         // wrapped in some font stuff. I think that will not work.
3367         xs.closeFontTags();
3368         if (runparams.docbook_in_listing)
3369                 xs << xml::CR();
3370         if (close_paragraph)
3371                 xs.endDivision();
3372 }
3373
3374
3375 namespace {
3376
3377 void doFontSwitchXHTML(vector<xml::FontTag> & tagsToOpen,
3378                   vector<xml::EndFontTag> & tagsToClose,
3379                   bool & flag, FontState curstate, xml::FontTypes type)
3380 {
3381         if (curstate == FONT_ON) {
3382                 tagsToOpen.push_back(xhtmlStartFontTag(type));
3383                 flag = true;
3384         } else if (flag) {
3385                 tagsToClose.push_back(xhtmlEndFontTag(type));
3386                 flag = false;
3387         }
3388 }
3389
3390 } // anonymous namespace
3391
3392
3393 docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
3394                                     XMLStream & xs,
3395                                     OutputParams const & runparams,
3396                                     Font const & outerfont,
3397                                     bool start_paragraph, bool close_paragraph,
3398                                     pos_type initial) const
3399 {
3400         docstring retval;
3401
3402         // track whether we have opened these tags
3403         bool emph_flag = false;
3404         bool bold_flag = false;
3405         bool noun_flag = false;
3406         bool ubar_flag = false;
3407         bool dbar_flag = false;
3408         bool sout_flag = false;
3409         bool xout_flag = false;
3410         bool wave_flag = false;
3411         // shape tags
3412         bool shap_flag = false;
3413         // family tags
3414         bool faml_flag = false;
3415         // size tags
3416         bool size_flag = false;
3417
3418         Layout const & style = *d->layout_;
3419
3420         if (start_paragraph)
3421                 xs.startDivision(allowEmpty());
3422
3423         FontInfo font_old =
3424                 style.labeltype == LABEL_MANUAL ? style.labelfont : style.font;
3425
3426         FontShape  curr_fs   = INHERIT_SHAPE;
3427         FontFamily curr_fam  = INHERIT_FAMILY;
3428         FontSize   curr_size = INHERIT_SIZE;
3429
3430         string const default_family =
3431                 buf.masterBuffer()->params().fonts_default_family;
3432
3433         vector<xml::FontTag> tagsToOpen;
3434         vector<xml::EndFontTag> tagsToClose;
3435
3436         // parsing main loop
3437         for (pos_type i = initial; i < size(); ++i) {
3438                 // let's not show deleted material in the output
3439                 if (isDeleted(i))
3440                         continue;
3441
3442                 Font const font = getFont(buf.masterBuffer()->params(), i, outerfont);
3443
3444                 // emphasis
3445                 FontState curstate = font.fontInfo().emph();
3446                 if (font_old.emph() != curstate)
3447                         doFontSwitchXHTML(tagsToOpen, tagsToClose, emph_flag, curstate, xml::FT_EMPH);
3448
3449                 // noun
3450                 curstate = font.fontInfo().noun();
3451                 if (font_old.noun() != curstate)
3452                         doFontSwitchXHTML(tagsToOpen, tagsToClose, noun_flag, curstate, xml::FT_NOUN);
3453
3454                 // underbar
3455                 curstate = font.fontInfo().underbar();
3456                 if (font_old.underbar() != curstate)
3457                         doFontSwitchXHTML(tagsToOpen, tagsToClose, ubar_flag, curstate, xml::FT_UBAR);
3458
3459                 // strikeout
3460                 curstate = font.fontInfo().strikeout();
3461                 if (font_old.strikeout() != curstate)
3462                         doFontSwitchXHTML(tagsToOpen, tagsToClose, sout_flag, curstate, xml::FT_SOUT);
3463
3464                 // xout
3465                 curstate = font.fontInfo().xout();
3466                 if (font_old.xout() != curstate)
3467                         doFontSwitchXHTML(tagsToOpen, tagsToClose, xout_flag, curstate, xml::FT_XOUT);
3468
3469                 // double underbar
3470                 curstate = font.fontInfo().uuline();
3471                 if (font_old.uuline() != curstate)
3472                         doFontSwitchXHTML(tagsToOpen, tagsToClose, dbar_flag, curstate, xml::FT_DBAR);
3473
3474                 // wavy line
3475                 curstate = font.fontInfo().uwave();
3476                 if (font_old.uwave() != curstate)
3477                         doFontSwitchXHTML(tagsToOpen, tagsToClose, wave_flag, curstate, xml::FT_WAVE);
3478
3479                 // bold
3480                 // a little hackish, but allows us to reuse what we have.
3481                 curstate = (font.fontInfo().series() == BOLD_SERIES ? FONT_ON : FONT_OFF);
3482                 if (font_old.series() != font.fontInfo().series())
3483                         doFontSwitchXHTML(tagsToOpen, tagsToClose, bold_flag, curstate, xml::FT_BOLD);
3484
3485                 // Font shape
3486                 curr_fs = font.fontInfo().shape();
3487                 FontShape old_fs = font_old.shape();
3488                 if (old_fs != curr_fs) {
3489                         if (shap_flag) {
3490                                 switch (old_fs) {
3491                                 case ITALIC_SHAPE:
3492                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_ITALIC));
3493                                         break;
3494                                 case SLANTED_SHAPE:
3495                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_SLANTED));
3496                                         break;
3497                                 case SMALLCAPS_SHAPE:
3498                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_SMALLCAPS));
3499                                         break;
3500                                 case UP_SHAPE:
3501                                 case INHERIT_SHAPE:
3502                                         break;
3503                                 default:
3504                                         // the other tags are for internal use
3505                                         LATTEST(false);
3506                                         break;
3507                                 }
3508                                 shap_flag = false;
3509                         }
3510                         switch (curr_fs) {
3511                         case ITALIC_SHAPE:
3512                                 tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_ITALIC));
3513                                 shap_flag = true;
3514                                 break;
3515                         case SLANTED_SHAPE:
3516                                 tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_SLANTED));
3517                                 shap_flag = true;
3518                                 break;
3519                         case SMALLCAPS_SHAPE:
3520                                 tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_SMALLCAPS));
3521                                 shap_flag = true;
3522                                 break;
3523                         case UP_SHAPE:
3524                         case INHERIT_SHAPE:
3525                                 break;
3526                         default:
3527                                 // the other tags are for internal use
3528                                 LATTEST(false);
3529                                 break;
3530                         }
3531                 }
3532
3533                 // Font family
3534                 curr_fam = font.fontInfo().family();
3535                 FontFamily old_fam = font_old.family();
3536                 if (old_fam != curr_fam) {
3537                         if (faml_flag) {
3538                                 switch (old_fam) {
3539                                 case ROMAN_FAMILY:
3540                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_ROMAN));
3541                                         break;
3542                                 case SANS_FAMILY:
3543                                     tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_SANS));
3544                                     break;
3545                                 case TYPEWRITER_FAMILY:
3546                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_TYPE));
3547                                         break;
3548                                 case INHERIT_FAMILY:
3549                                         break;
3550                                 default:
3551                                         // the other tags are for internal use
3552                                         LATTEST(false);
3553                                         break;
3554                                 }
3555                                 faml_flag = false;
3556                         }
3557                         switch (curr_fam) {
3558                         case ROMAN_FAMILY:
3559                                 // we will treat a "default" font family as roman, since we have
3560                                 // no other idea what to do.
3561                                 if (default_family != "rmdefault" && default_family != "default") {
3562                                         tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_ROMAN));
3563                                         faml_flag = true;
3564                                 }
3565                                 break;
3566                         case SANS_FAMILY:
3567                                 if (default_family != "sfdefault") {
3568                                         tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_SANS));
3569                                         faml_flag = true;
3570                                 }
3571                                 break;
3572                         case TYPEWRITER_FAMILY:
3573                                 if (default_family != "ttdefault") {
3574                                         tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_TYPE));
3575                                         faml_flag = true;
3576                                 }
3577                                 break;
3578                         case INHERIT_FAMILY:
3579                                 break;
3580                         default:
3581                                 // the other tags are for internal use
3582                                 LATTEST(false);
3583                                 break;
3584                         }
3585                 }
3586
3587                 // Font size
3588                 curr_size = font.fontInfo().size();
3589                 FontSize old_size = font_old.size();
3590                 if (old_size != curr_size) {
3591                         if (size_flag) {
3592                                 switch (old_size) {
3593                                 case TINY_SIZE:
3594                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_SIZE_TINY));
3595                                         break;
3596                                 case SCRIPT_SIZE:
3597                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_SIZE_SCRIPT));
3598                                         break;
3599                                 case FOOTNOTE_SIZE:
3600                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_SIZE_FOOTNOTE));
3601                                         break;
3602                                 case SMALL_SIZE:
3603                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_SIZE_SMALL));
3604                                         break;
3605                                 case LARGE_SIZE:
3606                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_SIZE_LARGE));
3607                                         break;
3608                                 case LARGER_SIZE:
3609                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_SIZE_LARGER));
3610                                         break;
3611                                 case LARGEST_SIZE:
3612                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_SIZE_LARGEST));
3613                                         break;
3614                                 case HUGE_SIZE:
3615                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_SIZE_HUGE));
3616                                         break;
3617                                 case HUGER_SIZE:
3618                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_SIZE_HUGER));
3619                                         break;
3620                                 case INCREASE_SIZE:
3621                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_SIZE_INCREASE));
3622                                         break;
3623                                 case DECREASE_SIZE:
3624                                         tagsToClose.emplace_back(xhtmlEndFontTag(xml::FT_SIZE_DECREASE));
3625                                         break;
3626                                 case INHERIT_SIZE:
3627                                 case NORMAL_SIZE:
3628                                         break;
3629                                 default:
3630                                         // the other tags are for internal use
3631                                         LATTEST(false);
3632                                         break;
3633                                 }
3634                                 size_flag = false;
3635                         }
3636                         switch (curr_size) {
3637                         case TINY_SIZE:
3638                                 tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_SIZE_TINY));
3639                                 size_flag = true;
3640                                 break;
3641                         case SCRIPT_SIZE:
3642                                 tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_SIZE_SCRIPT));
3643                                 size_flag = true;
3644                                 break;
3645                         case FOOTNOTE_SIZE:
3646                                 tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_SIZE_FOOTNOTE));
3647                                 size_flag = true;
3648                                 break;
3649                         case SMALL_SIZE:
3650                                 tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_SIZE_SMALL));
3651                                 size_flag = true;
3652                                 break;
3653                         case LARGE_SIZE:
3654                                 tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_SIZE_LARGE));
3655                                 size_flag = true;
3656                                 break;
3657                         case LARGER_SIZE:
3658                                 tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_SIZE_LARGER));
3659                                 size_flag = true;
3660                                 break;
3661                         case LARGEST_SIZE:
3662                                 tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_SIZE_LARGEST));
3663                                 size_flag = true;
3664                                 break;
3665                         case HUGE_SIZE:
3666                                 tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_SIZE_HUGE));
3667                                 size_flag = true;
3668                                 break;
3669                         case HUGER_SIZE:
3670                                 tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_SIZE_HUGER));
3671                                 size_flag = true;
3672                                 break;
3673                         case INCREASE_SIZE:
3674                                 tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_SIZE_INCREASE));
3675                                 size_flag = true;
3676                                 break;
3677                         case DECREASE_SIZE:
3678                                 tagsToOpen.emplace_back(xhtmlStartFontTag(xml::FT_SIZE_DECREASE));
3679                                 size_flag = true;
3680                                 break;
3681                         case INHERIT_SIZE:
3682                         case NORMAL_SIZE:
3683                                 break;
3684                         default:
3685                                 // the other tags are for internal use
3686                                 LATTEST(false);
3687                                 break;
3688                         }
3689                 }
3690
3691                 // FIXME XHTML
3692                 // Other such tags? What about the other text ranges?
3693
3694                 vector<xml::EndFontTag>::const_iterator cit = tagsToClose.begin();
3695                 vector<xml::EndFontTag>::const_iterator cen = tagsToClose.end();
3696                 for (; cit != cen; ++cit)
3697                         xs << *cit;
3698
3699                 vector<xml::FontTag>::const_iterator sit = tagsToOpen.begin();
3700                 vector<xml::FontTag>::const_iterator sen = tagsToOpen.end();
3701                 for (; sit != sen; ++sit)
3702                         xs << *sit;
3703
3704                 tagsToClose.clear();
3705                 tagsToOpen.clear();
3706
3707                 Inset const * inset = getInset(i);
3708                 if (inset) {
3709                         if (!runparams.for_toc || inset->isInToc()) {
3710                                 OutputParams np = runparams;
3711                                 np.local_font = &font;
3712                                 // If the paragraph has size 1, then we are in the "special
3713                                 // case" where we do not output the containing paragraph info
3714                                 if (!inset->getLayout().htmlisblock() && size() != 1)
3715                                         np.html_in_par = true;
3716                                 retval += inset->xhtml(xs, np);
3717                         }
3718                 } else {
3719                         char_type c = getUChar(buf.masterBuffer()->params(),
3720                                                runparams, i);
3721                         if (c == ' ' && (style.free_spacing || runparams.free_spacing))
3722                                 xs << XMLStream::ESCAPE_NONE << "&nbsp;";
3723                         else
3724                                 xs << c;
3725                 }
3726                 font_old = font.fontInfo();
3727         }
3728
3729         // FIXME XHTML
3730         // I'm worried about what happens if a branch, say, is itself
3731         // wrapped in some font stuff. I think that will not work.
3732         xs.closeFontTags();
3733         if (close_paragraph)
3734                 xs.endDivision();
3735
3736         return retval;
3737 }
3738
3739
3740 bool Paragraph::isHfill(pos_type pos) const
3741 {
3742         Inset const * inset = getInset(pos);
3743         return inset && inset->isHfill();
3744 }
3745
3746
3747 bool Paragraph::isNewline(pos_type pos) const
3748 {
3749         // U+2028 LINE SEPARATOR
3750         // U+2029 PARAGRAPH SEPARATOR
3751         char_type const c = d->text_[pos];
3752         if (c == 0x2028 || c == 0x2029)
3753                 return true;
3754         Inset const * inset = getInset(pos);
3755         return inset && inset->lyxCode() == NEWLINE_CODE;
3756 }
3757
3758
3759 bool Paragraph::isEnvSeparator(pos_type pos) const
3760 {
3761         Inset const * inset = getInset(pos);
3762         return inset && inset->lyxCode() == SEPARATOR_CODE;
3763 }
3764
3765
3766 bool Paragraph::isLineSeparator(pos_type pos) const
3767 {
3768         char_type const c = d->text_[pos];
3769         if (isLineSeparatorChar(c))
3770                 return true;
3771         Inset const * inset = getInset(pos);
3772         return inset && inset->isLineSeparator();
3773 }
3774
3775
3776 bool Paragraph::isWordSeparator(pos_type pos, bool const ignore_deleted) const
3777 {
3778         if (pos == size())
3779                 return true;
3780         if (ignore_deleted && isDeleted(pos))
3781                 return false;
3782         if (Inset const * inset = getInset(pos))
3783                 return !inset->isLetter();
3784         // if we have a hard hyphen (no en- or emdash) or apostrophe
3785         // we pass this to the spell checker
3786         // FIXME: this method is subject to change, visit
3787         // https://bugzilla.mozilla.org/show_bug.cgi?id=355178
3788         // to get an impression how complex this is.
3789         if (isHardHyphenOrApostrophe(pos))
3790                 return false;
3791         char_type const c = d->text_[pos];
3792         // We want to pass the escape chars to the spellchecker
3793         docstring const escape_chars = from_utf8(lyxrc.spellchecker_esc_chars);
3794         return !isLetterChar(c) && !isDigitASCII(c) && !contains(escape_chars, c);
3795 }
3796
3797
3798 bool Paragraph::isHardHyphenOrApostrophe(pos_type pos) const
3799 {
3800         pos_type const psize = size();
3801         if (pos >= psize)
3802                 return false;
3803         char_type const c = d->text_[pos];
3804         if (c != '-' && c != '\'')
3805                 return false;
3806         int nextpos = pos + 1;
3807         int prevpos = pos > 0 ? pos - 1 : 0;
3808         if ((nextpos == psize || isSpace(nextpos))
3809                 && (pos == 0 || isSpace(prevpos)))
3810                 return false;
3811         return true;
3812 }
3813
3814
3815 bool Paragraph::needsCProtection(bool const fragile) const
3816 {
3817         // first check the layout of the paragraph, but only in insets
3818         InsetText const * textinset = inInset().asInsetText();
3819         bool const maintext = textinset
3820                 ? textinset->text().isMainText()
3821                 : false;
3822
3823         if (!maintext && layout().needcprotect) {
3824                 // Environments need cprotection regardless the content
3825                 if (layout().latextype == LATEX_ENVIRONMENT)
3826                         return true;
3827
3828                 // Commands need cprotection if they contain specific chars
3829                 int const nchars_escape = 9;
3830                 static char_type const chars_escape[nchars_escape] = {
3831                         '&', '_', '$', '%', '#', '^', '{', '}', '\\'};
3832
3833                 docstring const pars = asString();
3834                 for (int k = 0; k < nchars_escape; k++) {
3835                         if (contains(pars, chars_escape[k]))
3836                                 return true;
3837                 }
3838         }
3839
3840         // now check whether we have insets that need cprotection
3841         pos_type size = pos_type(d->text_.size());
3842         for (pos_type i = 0; i < size; ++i) {
3843                 if (!isInset(i))
3844                         continue;
3845                 Inset const * ins = getInset(i);
3846                 if (ins->needsCProtection(maintext, fragile))
3847                         return true;
3848                 if (ins->getLayout().latextype() == InsetLayout::ENVIRONMENT)
3849                         // Environments need cprotection regardless the content
3850                         return true;
3851                 // Now check math environments
3852                 InsetMath const * im = getInset(i)->asInsetMath();
3853                 if (!im || im->cell(0).empty())
3854                         continue;
3855                 switch(im->cell(0)[0]->lyxCode()) {
3856                 case MATH_AMSARRAY_CODE:
3857                 case MATH_SUBSTACK_CODE:
3858                 case MATH_ENV_CODE:
3859                 case MATH_XYMATRIX_CODE:
3860                         // these need cprotection
3861                         return true;
3862                 default:
3863                         break;
3864                 }
3865         }
3866
3867         return false;
3868 }
3869
3870
3871 FontSpan const & Paragraph::getSpellRange(pos_type pos) const
3872 {
3873         return d->speller_state_.getRange(pos);
3874 }
3875
3876
3877 bool Paragraph::isChar(pos_type pos) const
3878 {
3879         if (Inset const * inset = getInset(pos))
3880                 return inset->isChar();
3881         char_type const c = d->text_[pos];
3882         return !isLetterChar(c) && !isDigitASCII(c) && !lyx::isSpace(c);
3883 }
3884
3885
3886 bool Paragraph::isSpace(pos_type pos) const
3887 {
3888         if (Inset const * inset = getInset(pos))
3889                 return inset->isSpace();
3890         char_type const c = d->text_[pos];
3891         return lyx::isSpace(c);
3892 }
3893
3894
3895 Language const *
3896 Paragraph::getParLanguage(BufferParams const & bparams) const
3897 {
3898         if (!empty())
3899                 return getFirstFontSettings(bparams).language();
3900         // FIXME: we should check the prev par as well (Lgb)
3901         return bparams.language;
3902 }
3903
3904
3905 bool Paragraph::isRTL(BufferParams const & bparams) const
3906 {
3907         return getParLanguage(bparams)->rightToLeft()
3908                 && !inInset().getLayout().forceLTR();
3909 }
3910
3911
3912 void Paragraph::changeLanguage(BufferParams const & bparams,
3913                                Language const * from, Language const * to)
3914 {
3915         // change language including dummy font change at the end
3916         for (pos_type i = 0; i <= size(); ++i) {
3917                 Font font = getFontSettings(bparams, i);
3918                 if (font.language() == from) {
3919                         font.setLanguage(to);
3920                         setFont(i, font);
3921                         d->requestSpellCheck(i);
3922                 }
3923         }
3924 }
3925
3926
3927 bool Paragraph::isMultiLingual(BufferParams const & bparams) const
3928 {
3929         Language const * doc_language = bparams.language;
3930         for (auto const & f : d->fontlist_)
3931                 if (f.font().language() != ignore_language &&
3932                     f.font().language() != latex_language &&
3933                     f.font().language() != doc_language)
3934                         return true;
3935         return false;
3936 }
3937
3938
3939 void Paragraph::getLanguages(std::set<Language const *> & langs) const
3940 {
3941         for (auto const & f : d->fontlist_) {
3942                 Language const * lang = f.font().language();
3943                 if (lang != ignore_language &&
3944                     lang != latex_language)
3945                         langs.insert(lang);
3946         }
3947 }
3948
3949
3950 docstring Paragraph::asString(int options) const
3951 {
3952         return asString(0, size(), options);
3953 }
3954
3955
3956 docstring Paragraph::asString(pos_type beg, pos_type end, int options, const OutputParams *runparams) const
3957 {
3958         odocstringstream os;
3959
3960         if (beg == 0
3961             && options & AS_STR_LABEL
3962             && !d->params_.labelString().empty())
3963                 os << d->params_.labelString() << ' ';
3964
3965         for (pos_type i = beg; i < end; ++i) {
3966                 if ((options & AS_STR_SKIPDELETE) && isDeleted(i))
3967                         continue;
3968                 char_type const c = d->text_[i];
3969                 if (isPrintable(c) || c == '\t'
3970                     || (c == '\n' && (options & AS_STR_NEWLINES)))
3971                         os.put(c);
3972                 else if (c == META_INSET && (options & AS_STR_INSETS)) {
3973                         if (c == META_INSET && (options & AS_STR_PLAINTEXT)) {
3974                                 LASSERT(runparams != nullptr, return docstring());
3975                                 getInset(i)->plaintext(os, *runparams);
3976                         } else {
3977                                 getInset(i)->toString(os);
3978                         }
3979                 }
3980         }
3981
3982         return os.str();
3983 }
3984
3985
3986 void Paragraph::forOutliner(docstring & os, size_t const maxlen,
3987                             bool const shorten, bool const label) const
3988 {
3989         size_t tmplen = shorten ? maxlen + 1 : maxlen;
3990         if (label && !labelString().empty())
3991                 os += labelString() + ' ';
3992         if (!layout().isTocCaption())
3993                 return;
3994         for (pos_type i = 0; i < size() && os.length() < tmplen; ++i) {
3995                 if (isDeleted(i))
3996                         continue;
3997                 char_type const c = d->text_[i];
3998                 if (isPrintable(c))
3999                         os += c;
4000                 else if (c == META_INSET)
4001                         getInset(i)->forOutliner(os, tmplen, false);
4002         }
4003         if (shorten)
4004                 Text::shortenForOutliner(os, maxlen);
4005 }
4006
4007
4008 void Paragraph::setInsetOwner(Inset const * inset)
4009 {
4010         d->inset_owner_ = inset;
4011 }
4012
4013
4014 int Paragraph::id() const
4015 {
4016         return d->id_;
4017 }
4018
4019
4020 void Paragraph::setId(int id)
4021 {
4022         d->id_ = id;
4023 }
4024
4025
4026 Layout const & Paragraph::layout() const
4027 {
4028         return *d->layout_;
4029 }
4030
4031
4032 void Paragraph::setLayout(Layout const & layout)
4033 {
4034         d->layout_ = &layout;
4035 }
4036
4037
4038 void Paragraph::setDefaultLayout(DocumentClass const & tc)
4039 {
4040         setLayout(tc.defaultLayout());
4041 }
4042
4043
4044 void Paragraph::setPlainLayout(DocumentClass const & tc)
4045 {
4046         setLayout(tc.plainLayout());
4047 }
4048
4049
4050 void Paragraph::setPlainOrDefaultLayout(DocumentClass const & tclass)
4051 {
4052         if (usePlainLayout())
4053                 setPlainLayout(tclass);
4054         else
4055                 setDefaultLayout(tclass);
4056 }
4057
4058
4059 Inset const & Paragraph::inInset() const
4060 {
4061         LBUFERR(d->inset_owner_);
4062         return *d->inset_owner_;
4063 }
4064
4065
4066 ParagraphParameters & Paragraph::params()
4067 {
4068         return d->params_;
4069 }
4070
4071
4072 ParagraphParameters const & Paragraph::params() const
4073 {
4074         return d->params_;
4075 }
4076
4077
4078 bool Paragraph::isFreeSpacing() const
4079 {
4080         if (d->layout_->free_spacing)
4081                 return true;
4082         return d->inset_owner_ && d->inset_owner_->isFreeSpacing();
4083 }
4084
4085
4086 bool Paragraph::allowEmpty() const
4087 {
4088         if (d->layout_->keepempty)
4089                 return true;
4090         return d->inset_owner_ && d->inset_owner_->allowEmpty();
4091 }
4092
4093
4094 bool Paragraph::brokenBiblio() const
4095 {
4096         // There is a problem if there is no bibitem at position 0 in
4097         // paragraphs that need one, if there is another bibitem in the
4098         // paragraph or if this paragraph is not supposed to have
4099         // a bibitem inset at all.
4100         return ((d->layout_->labeltype == LABEL_BIBLIO
4101                 && (d->insetlist_.find(BIBITEM_CODE) != 0
4102                     || d->insetlist_.find(BIBITEM_CODE, 1) > 0))
4103                 || (d->layout_->labeltype != LABEL_BIBLIO
4104                     && d->insetlist_.find(BIBITEM_CODE) != -1));
4105 }
4106
4107
4108 int Paragraph::fixBiblio(Buffer const & buffer)
4109 {
4110         // FIXME: when there was already an inset at 0, the return value is 1,
4111         // which does not tell whether another inset has been removed; the
4112         // cursor cannot be correctly updated.
4113
4114         bool const track_changes = buffer.params().track_changes;
4115         int bibitem_pos = d->insetlist_.find(BIBITEM_CODE);
4116
4117         // The case where paragraph is not BIBLIO
4118         if (d->layout_->labeltype != LABEL_BIBLIO) {
4119                 if (bibitem_pos == -1)
4120                         // No InsetBibitem => OK
4121                         return 0;
4122                 // There is an InsetBibitem: remove it!
4123                 d->insetlist_.release(bibitem_pos);
4124                 eraseChar(bibitem_pos, track_changes);
4125                 return (bibitem_pos == 0) ? -1 : -bibitem_pos;
4126         }
4127
4128         bool const hasbibitem0 = bibitem_pos == 0;
4129         if (hasbibitem0) {
4130                 bibitem_pos = d->insetlist_.find(BIBITEM_CODE, 1);
4131                 // There was an InsetBibitem at pos 0,
4132                 // and no other one => OK
4133                 if (bibitem_pos == -1)
4134                         return 0;
4135                 // there is a bibitem at the 0 position, but since
4136                 // there is a second one, we copy the second on the
4137                 // first. We're assuming there are at most two of
4138                 // these, which there should be.
4139                 // FIXME: why does it make sense to do that rather
4140                 // than keep the first? (JMarc)
4141                 Inset * inset = releaseInset(bibitem_pos);
4142                 d->insetlist_.begin()->inset = inset;
4143                 // This needs to be done to update the counter (#8499)
4144                 buffer.updateBuffer();
4145                 return -bibitem_pos;
4146         }
4147
4148         // We need to create an inset at the beginning
4149         Inset * inset = nullptr;
4150         if (bibitem_pos > 0) {
4151                 // there was one somewhere in the paragraph, let's move it
4152                 inset = d->insetlist_.release(bibitem_pos);
4153                 eraseChar(bibitem_pos, track_changes);
4154         } else
4155                 // make a fresh one
4156                 inset = new InsetBibitem(const_cast<Buffer *>(&buffer),
4157                                          InsetCommandParams(BIBITEM_CODE));
4158
4159         Font font(inherit_font, buffer.params().language);
4160         insertInset(0, inset, font, Change(track_changes ? Change::INSERTED
4161                                                    : Change::UNCHANGED));
4162
4163         // This is needed to get the counters right
4164         buffer.updateBuffer();
4165         return 1;
4166 }
4167
4168
4169 void Paragraph::checkAuthors(AuthorList const & authorList)
4170 {
4171         d->changes_.checkAuthors(authorList);
4172 }
4173
4174
4175 bool Paragraph::isChanged(pos_type pos) const
4176 {
4177         return lookupChange(pos).changed();
4178 }
4179
4180
4181 bool Paragraph::isInserted(pos_type pos) const
4182 {
4183         return lookupChange(pos).inserted();
4184 }
4185
4186
4187 bool Paragraph::isDeleted(pos_type pos) const
4188 {
4189         return lookupChange(pos).deleted();
4190 }
4191
4192
4193 InsetList const & Paragraph::insetList() const
4194 {
4195         return d->insetlist_;
4196 }
4197
4198
4199 void Paragraph::setInsetBuffers(Buffer & b)
4200 {
4201         d->insetlist_.setBuffer(b);
4202 }
4203
4204
4205 void Paragraph::resetBuffer()
4206 {
4207         d->insetlist_.resetBuffer();
4208 }
4209
4210
4211 Inset * Paragraph::releaseInset(pos_type pos)
4212 {
4213         Inset * inset = d->insetlist_.release(pos);
4214         /// does not honour change tracking!
4215         eraseChar(pos, false);
4216         return inset;
4217 }
4218
4219
4220 Inset * Paragraph::getInset(pos_type pos)
4221 {
4222         return (pos < pos_type(d->text_.size()) && d->text_[pos] == META_INSET)
4223                  ? d->insetlist_.get(pos) : nullptr;
4224 }
4225
4226
4227 Inset const * Paragraph::getInset(pos_type pos) const
4228 {
4229         return (pos < pos_type(d->text_.size()) && d->text_[pos] == META_INSET)
4230                  ? d->insetlist_.get(pos) : nullptr;
4231 }
4232
4233
4234 void Paragraph::changeCase(BufferParams const & bparams, pos_type pos,
4235                 pos_type & right, TextCase action)
4236 {
4237         // process sequences of modified characters; in change
4238         // tracking mode, this approach results in much better
4239         // usability than changing case on a char-by-char basis
4240         // We also need to track the current font, since font
4241         // changes within sequences can occur.
4242         vector<pair<char_type, Font> > changes;
4243
4244         bool const trackChanges = bparams.track_changes;
4245
4246         bool capitalize = true;
4247
4248         for (; pos < right; ++pos) {
4249                 char_type oldChar = d->text_[pos];
4250                 char_type newChar = oldChar;
4251
4252                 // ignore insets and don't play with deleted text!
4253                 if (oldChar != META_INSET && !isDeleted(pos)) {
4254                         switch (action) {
4255                                 case text_lowercase:
4256                                         newChar = lowercase(oldChar);
4257                                         break;
4258                                 case text_capitalization:
4259                                         if (capitalize) {
4260                                                 newChar = uppercase(oldChar);
4261                                                 capitalize = false;
4262                                         }
4263                                         break;
4264                                 case text_uppercase:
4265                                         newChar = uppercase(oldChar);
4266                                         break;
4267                         }
4268                 }
4269
4270                 if (isWordSeparator(pos) || isDeleted(pos)) {
4271                         // permit capitalization again
4272                         capitalize = true;
4273                 }
4274
4275                 if (oldChar != newChar) {
4276                         changes.push_back(make_pair(newChar, getFontSettings(bparams, pos)));
4277                         if (pos != right - 1)
4278                                 continue;
4279                         // step behind the changing area
4280                         pos++;
4281                 }
4282
4283                 int erasePos = pos - changes.size();
4284                 for (size_t i = 0; i < changes.size(); i++) {
4285                         insertChar(pos, changes[i].first,
4286                                    changes[i].second,
4287                                    trackChanges);
4288                         if (!eraseChar(erasePos, trackChanges)) {
4289                                 ++erasePos;
4290                                 ++pos; // advance
4291                                 ++right; // expand selection
4292                         }
4293                 }
4294                 changes.clear();
4295         }
4296 }
4297
4298
4299 int Paragraph::find(docstring const & str, bool cs, bool mw,
4300                 pos_type start_pos, bool del) const
4301 {
4302         pos_type pos = start_pos;
4303         int const strsize = str.length();
4304         int i = 0;
4305         pos_type const parsize = d->text_.size();
4306         for (i = 0; i < strsize && pos < parsize; ++i, ++pos) {
4307                 // Ignore "invisible" letters such as ligature breaks
4308                 // and hyphenation chars while searching
4309                 while (pos < parsize - 1 && isInset(pos)) {
4310                         odocstringstream os;
4311                         getInset(pos)->toString(os);
4312                         if (!getInset(pos)->isLetter() || !os.str().empty())
4313                                 break;
4314                         pos++;
4315                 }
4316                 if (cs && str[i] != d->text_[pos])
4317                         break;
4318                 if (!cs && uppercase(str[i]) != uppercase(d->text_[pos]))
4319                         break;
4320                 if (!del && isDeleted(pos))
4321                         break;
4322         }
4323
4324         if (i != strsize)
4325                 return 0;
4326
4327         // if necessary, check whether string matches word
4328         if (mw) {
4329                 if (start_pos > 0 && !isWordSeparator(start_pos - 1))
4330                         return 0;
4331                 if (pos < parsize
4332                         && !isWordSeparator(pos))
4333                         return 0;
4334         }
4335
4336         return pos - start_pos;
4337 }
4338
4339
4340 char_type Paragraph::getChar(pos_type pos) const
4341 {
4342         return d->text_[pos];
4343 }
4344
4345
4346 pos_type Paragraph::size() const
4347 {
4348         return d->text_.size();
4349 }
4350
4351
4352 bool Paragraph::empty() const
4353 {
4354         return d->text_.empty();
4355 }
4356
4357
4358 bool Paragraph::isInset(pos_type pos) const
4359 {
4360         return d->text_[pos] == META_INSET;
4361 }
4362
4363
4364 bool Paragraph::isSeparator(pos_type pos) const
4365 {
4366         //FIXME: Are we sure this can be the only separator?
4367         return d->text_[pos] == ' ';
4368 }
4369
4370
4371 void Paragraph::deregisterWords()
4372 {
4373         Private::LangWordsMap::const_iterator itl = d->words_.begin();
4374         Private::LangWordsMap::const_iterator ite = d->words_.end();
4375         for (; itl != ite; ++itl) {
4376                 WordList & wl = theWordList(itl->first);
4377                 Private::Words::const_iterator it = (itl->second).begin();
4378                 Private::Words::const_iterator et = (itl->second).end();
4379                 for (; it != et; ++it)
4380                         wl.remove(*it);
4381         }
4382         d->words_.clear();
4383 }
4384
4385
4386 void Paragraph::locateWord(pos_type & from, pos_type & to,
4387         word_location const loc, bool const ignore_deleted) const
4388 {
4389         switch (loc) {
4390         case WHOLE_WORD_STRICT:
4391                 if (from == 0 || from == size()
4392                     || isWordSeparator(from, ignore_deleted)
4393                     || isWordSeparator(from - 1, ignore_deleted)) {
4394                         to = from;
4395                         return;
4396                 }
4397                 // fall through
4398
4399         case WHOLE_WORD:
4400                 // If we are already at the beginning of a word, do nothing
4401                 if (!from || isWordSeparator(from - 1, ignore_deleted))
4402                         break;
4403                 // fall through
4404
4405         case PREVIOUS_WORD:
4406                 // always move the cursor to the beginning of previous word
4407                 while (from && !isWordSeparator(from - 1, ignore_deleted))
4408                         --from;
4409                 break;
4410         case NEXT_WORD:
4411                 LYXERR0("Paragraph::locateWord: NEXT_WORD not implemented yet");
4412                 break;
4413         case PARTIAL_WORD:
4414                 // no need to move the 'from' cursor
4415                 break;
4416         }
4417         to = from;
4418         while (to < size() && !isWordSeparator(to, ignore_deleted))
4419                 ++to;
4420 }
4421
4422
4423 void Paragraph::collectWords()
4424 {
4425         for (pos_type pos = 0; pos < size(); ++pos) {
4426                 if (isWordSeparator(pos))
4427                         continue;
4428                 pos_type from = pos;
4429                 locateWord(from, pos, WHOLE_WORD);
4430                 // Work around MSVC warning: The statement
4431                 // if (pos < from + lyxrc.completion_minlength)
4432                 // triggers a signed vs. unsigned warning.
4433                 // I don't know why this happens, it could be a MSVC bug, or
4434                 // related to LLP64 (windows) vs. LP64 (unix) programming
4435                 // model, or the C++ standard might be ambigous in the section
4436                 // defining the "usual arithmetic conversions". However, using
4437                 // a temporary variable is safe and works on all compilers.
4438                 pos_type const endpos = from + lyxrc.completion_minlength;
4439                 if (pos < endpos)
4440                         continue;
4441                 FontList::const_iterator cit = d->fontlist_.fontIterator(from);
4442                 if (cit == d->fontlist_.end())
4443                         return;
4444                 Language const * lang = cit->font().language();
4445                 docstring const word = asString(from, pos, AS_STR_NONE);
4446                 d->words_[lang->lang()].insert(word);
4447         }
4448 }
4449
4450
4451 void Paragraph::registerWords()
4452 {
4453         Private::LangWordsMap::const_iterator itl = d->words_.begin();
4454         Private::LangWordsMap::const_iterator ite = d->words_.end();
4455         for (; itl != ite; ++itl) {
4456                 WordList & wl = theWordList(itl->first);
4457                 Private::Words::const_iterator it = (itl->second).begin();
4458                 Private::Words::const_iterator et = (itl->second).end();
4459                 for (; it != et; ++it)
4460                         wl.insert(*it);
4461         }
4462 }
4463
4464
4465 void Paragraph::updateWords()
4466 {
4467         deregisterWords();
4468         collectWords();
4469         registerWords();
4470 }
4471
4472
4473 void Paragraph::Private::appendSkipPosition(SkipPositions & skips, pos_type const pos) const
4474 {
4475         SkipPositionsIterator begin = skips.begin();
4476         SkipPositions::iterator end = skips.end();
4477         if (pos > 0 && begin < end) {
4478                 --end;
4479                 if (end->last == pos - 1) {
4480                         end->last = pos;
4481                         return;
4482                 }
4483         }
4484         skips.insert(end, FontSpan(pos, pos));
4485 }
4486
4487
4488 Language * Paragraph::Private::locateSpellRange(
4489         pos_type & from, pos_type & to,
4490         SkipPositions & skips) const
4491 {
4492         // skip leading white space
4493         while (from < to && owner_->isWordSeparator(from))
4494                 ++from;
4495         // don't check empty range
4496         if (from >= to)
4497                 return nullptr;
4498         // get current language
4499         Language * lang = getSpellLanguage(from);
4500         pos_type last = from;
4501         bool samelang = true;
4502         bool sameinset = true;
4503         while (last < to && samelang && sameinset) {
4504                 // hop to end of word
4505                 while (last < to && !owner_->isWordSeparator(last)) {
4506                         if (owner_->getInset(last)) {
4507                                 appendSkipPosition(skips, last);
4508                         } else if (owner_->isDeleted(last)) {
4509                                 appendSkipPosition(skips, last);
4510                         }
4511                         ++last;
4512                 }
4513                 // hop to next word while checking for insets
4514                 while (sameinset && last < to && owner_->isWordSeparator(last)) {
4515                         if (Inset const * inset = owner_->getInset(last))
4516                                 sameinset = inset->isChar() && inset->isLetter();
4517                         if (sameinset && owner_->isDeleted(last)) {
4518                                 appendSkipPosition(skips, last);
4519                         }
4520                         if (sameinset)
4521                                 last++;
4522                 }
4523                 if (sameinset && last < to) {
4524                         // now check for language change
4525                         samelang = lang == getSpellLanguage(last);
4526                 }
4527         }
4528         // if language change detected backstep is needed
4529         if (!samelang)
4530                 --last;
4531         to = last;
4532         return lang;
4533 }
4534
4535
4536 Language * Paragraph::Private::getSpellLanguage(pos_type const from) const
4537 {
4538         Language * lang =
4539                 const_cast<Language *>(owner_->getFontSettings(
4540                         inset_owner_->buffer().params(), from).language());
4541         if (lang == inset_owner_->buffer().params().language
4542                 && !lyxrc.spellchecker_alt_lang.empty()) {
4543                 string lang_code;
4544                 string const lang_variety =
4545                         split(lyxrc.spellchecker_alt_lang, lang_code, '-');
4546                 lang->setCode(lang_code);
4547                 lang->setVariety(lang_variety);
4548         }
4549         return lang;
4550 }
4551
4552
4553 void Paragraph::requestSpellCheck(pos_type pos)
4554 {
4555         d->requestSpellCheck(pos);
4556 }
4557
4558
4559 bool Paragraph::needsSpellCheck() const
4560 {
4561         SpellChecker::ChangeNumber speller_change_number = 0;
4562         if (theSpellChecker())
4563                 speller_change_number = theSpellChecker()->changeNumber();
4564         if (speller_change_number > d->speller_state_.currentChangeNumber()) {
4565                 d->speller_state_.needsCompleteRefresh(speller_change_number);
4566         }
4567         return d->needsSpellCheck();
4568 }
4569
4570
4571 bool Paragraph::Private::ignoreWord(docstring const & word) const
4572 {
4573         // Ignore words with digits
4574         // FIXME: make this customizable
4575         // (note that some checkers ignore words with digits by default)
4576         docstring::const_iterator cit = word.begin();
4577         docstring::const_iterator const end = word.end();
4578         for (; cit != end; ++cit) {
4579                 if (isNumber((*cit)))
4580                         return true;
4581         }
4582         return false;
4583 }
4584
4585
4586 SpellChecker::Result Paragraph::spellCheck(pos_type & from, pos_type & to,
4587         WordLangTuple & wl, docstring_list & suggestions,
4588         bool do_suggestion, bool check_learned) const
4589 {
4590         SpellChecker::Result result = SpellChecker::WORD_OK;
4591         SpellChecker * speller = theSpellChecker();
4592         if (!speller)
4593                 return result;
4594
4595         if (!d->layout_->spellcheck || !inInset().allowSpellCheck())
4596                 return result;
4597
4598         locateWord(from, to, WHOLE_WORD, true);
4599         if (from == to || from >= size())
4600                 return result;
4601
4602         docstring word = asString(from, to, AS_STR_INSETS | AS_STR_SKIPDELETE);
4603         Language * lang = d->getSpellLanguage(from);
4604
4605         if (getFontSettings(d->inset_owner_->buffer().params(), from).fontInfo().nospellcheck() == FONT_ON)
4606                 return result;
4607
4608         wl = WordLangTuple(word, lang);
4609
4610         if (word.empty())
4611                 return result;
4612
4613         if (needsSpellCheck() || check_learned) {
4614                 pos_type end = to;
4615                 if (!d->ignoreWord(word)) {
4616                         bool const trailing_dot = to < size() && d->text_[to] == '.';
4617                         result = speller->check(wl);
4618                         if (SpellChecker::misspelled(result) && trailing_dot) {
4619                                 wl = WordLangTuple(word.append(from_ascii(".")), lang);
4620                                 result = speller->check(wl);
4621                                 if (!SpellChecker::misspelled(result)) {
4622                                         LYXERR(Debug::GUI, "misspelled word is correct with dot: \"" <<
4623                                            word << "\" [" <<
4624                                            from << ".." << to << "]");
4625                                 } else {
4626                                         // spell check with dot appended failed too
4627                                         // restore original word/lang value
4628                                         word = asString(from, to, AS_STR_INSETS | AS_STR_SKIPDELETE);
4629                                         wl = WordLangTuple(word, lang);
4630                                 }
4631                         }
4632                 }
4633                 if (!SpellChecker::misspelled(result)) {
4634                         // area up to the begin of the next word is not misspelled
4635                         while (end < size() && isWordSeparator(end))
4636                                 ++end;
4637                 }
4638                 d->setMisspelled(from, end, result);
4639         } else {
4640                 result = d->speller_state_.getState(from);
4641         }
4642
4643         if (do_suggestion)
4644                 suggestions.clear();
4645
4646         if (SpellChecker::misspelled(result)) {
4647                 LYXERR(Debug::GUI, "misspelled word: \"" <<
4648                            word << "\" [" <<
4649                            from << ".." << to << "]");
4650                 if (do_suggestion)
4651                         speller->suggest(wl, suggestions);
4652         }
4653         return result;
4654 }
4655
4656
4657 void Paragraph::anonymize()
4658 {
4659         // This is a very crude anonymization for now
4660         for (char_type & c : d->text_)
4661                 if (isLetterChar(c) || isNumber(c))
4662                         c = 'a';
4663 }
4664
4665
4666 void Paragraph::Private::markMisspelledWords(
4667         pos_type const & first, pos_type const & last,
4668         SpellChecker::Result result,
4669         docstring const & word,
4670         SkipPositions const & skips)
4671 {
4672         if (!SpellChecker::misspelled(result)) {
4673                 setMisspelled(first, last, SpellChecker::WORD_OK);
4674                 return;
4675         }
4676         int snext = first;
4677         SpellChecker * speller = theSpellChecker();
4678         // locate and enumerate the error positions
4679         int nerrors = speller->numMisspelledWords();
4680         int numskipped = 0;
4681         SkipPositionsIterator it = skips.begin();
4682         SkipPositionsIterator et = skips.end();
4683         for (int index = 0; index < nerrors; ++index) {
4684                 int wstart;
4685                 int wlen = 0;
4686                 speller->misspelledWord(index, wstart, wlen);
4687                 /// should not happen if speller supports range checks
4688                 if (!wlen) continue;
4689                 docstring const misspelled = word.substr(wstart, wlen);
4690                 wstart += first + numskipped;
4691                 if (snext < wstart) {
4692                         /// mark the range of correct spelling
4693                         numskipped += countSkips(it, et, wstart);
4694                         setMisspelled(snext,
4695                                 wstart - 1, SpellChecker::WORD_OK);
4696                 }
4697                 snext = wstart + wlen;
4698                 numskipped += countSkips(it, et, snext);
4699                 /// mark the range of misspelling
4700                 setMisspelled(wstart, snext, result);
4701                 LYXERR(Debug::GUI, "misspelled word: \"" <<
4702                            misspelled << "\" [" <<
4703                            wstart << ".." << (snext-1) << "]");
4704                 ++snext;
4705         }
4706         if (snext <= last) {
4707                 /// mark the range of correct spelling at end
4708                 setMisspelled(snext, last, SpellChecker::WORD_OK);
4709         }
4710 }
4711
4712
4713 void Paragraph::spellCheck() const
4714 {
4715         SpellChecker * speller = theSpellChecker();
4716         if (!speller || empty() ||!needsSpellCheck())
4717                 return;
4718         pos_type start;
4719         pos_type endpos;
4720         d->rangeOfSpellCheck(start, endpos);
4721         if (speller->canCheckParagraph()) {
4722                 // loop until we leave the range
4723                 for (pos_type first = start; first < endpos; ) {
4724                         pos_type last = endpos;
4725                         Private::SkipPositions skips;
4726                         Language * lang = d->locateSpellRange(first, last, skips);
4727                         if (first >= endpos)
4728                                 break;
4729                         // start the spell checker on the unit of meaning
4730                         docstring word = asString(first, last, AS_STR_INSETS + AS_STR_SKIPDELETE);
4731                         WordLangTuple wl = WordLangTuple(word, lang);
4732                         SpellChecker::Result result = word.size() ?
4733                                 speller->check(wl) : SpellChecker::WORD_OK;
4734                         d->markMisspelledWords(first, last, result, word, skips);
4735                         first = ++last;
4736                 }
4737         } else {
4738                 static docstring_list suggestions;
4739                 pos_type to = endpos;
4740                 while (start < endpos) {
4741                         WordLangTuple wl;
4742                         spellCheck(start, to, wl, suggestions, false);
4743                         start = to + 1;
4744                 }
4745         }
4746         d->readySpellCheck();
4747 }
4748
4749
4750 bool Paragraph::isMisspelled(pos_type pos, bool check_boundary) const
4751 {
4752         bool result = SpellChecker::misspelled(d->speller_state_.getState(pos));
4753         if (result || pos <= 0 || pos > size())
4754                 return result;
4755         if (check_boundary && (pos == size() || isWordSeparator(pos)))
4756                 result = SpellChecker::misspelled(d->speller_state_.getState(pos - 1));
4757         return result;
4758 }
4759
4760
4761 string Paragraph::magicLabel() const
4762 {
4763         stringstream ss;
4764         ss << "magicparlabel-" << id();
4765         return ss.str();
4766 }
4767
4768
4769 } // namespace lyx