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