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