]> git.lyx.org Git - lyx.git/blob - src/Paragraph.cpp
Account for old versions of Pygments
[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 }
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         // With polyglossia, brackets and stuff need not be reversed
1185         // in RTL scripts (see bug #8251)
1186         char_type const c = (runparams.use_polyglossia) ?
1187                 owner_->getUChar(bparams, i) : text_[i];
1188
1189         if (style.pass_thru || runparams.pass_thru
1190             || contains(style.pass_thru_chars, c)
1191             || contains(runparams.pass_thru_chars, c)) {
1192                 if (c != '\0') {
1193                         Encoding const * const enc = runparams.encoding;
1194                         if (enc && !enc->encodable(c))
1195                                 throw EncodingException(c);
1196                         os.put(c);
1197                 }
1198                 return;
1199         }
1200
1201         // TIPA uses its own T3 encoding
1202         if (runparams.inIPA && latexSpecialT3(c, os, i, column))
1203                 return;
1204         // If T1 font encoding is used, use the special
1205         // characters it provides.
1206         // NOTE: Some languages reset the font encoding internally to a
1207         //       non-standard font encoding. If we are using such a language,
1208         //       we do not output special T1 chars.
1209         if (!runparams.inIPA && !running_font.language()->internalFontEncoding()
1210             && !runparams.isFullUnicode() && bparams.main_font_encoding() == "T1"
1211             && latexSpecialT1(c, os, i, column))
1212                 return;
1213         // NOTE: XeTeX and LuaTeX use EU1/2 (pre 2017) or TU (as of 2017) encoding
1214         else if (!runparams.inIPA && !running_font.language()->internalFontEncoding()
1215                  && runparams.isFullUnicode() && latexSpecialTU(c, os, i, column))
1216                      return;
1217
1218         // Otherwise, we use what LaTeX provides us.
1219         switch (c) {
1220         case '\\':
1221                 os << "\\textbackslash" << termcmd;
1222                 column += 15;
1223                 break;
1224         case '<':
1225                 os << "\\textless" << termcmd;
1226                 column += 10;
1227                 break;
1228         case '>':
1229                 os << "\\textgreater" << termcmd;
1230                 column += 13;
1231                 break;
1232         case '|':
1233                 os << "\\textbar" << termcmd;
1234                 column += 9;
1235                 break;
1236         case '-':
1237                 os << '-';
1238                 if (i + 1 < static_cast<pos_type>(text_.size()) &&
1239                     (end_pos == -1 || i + 1 < end_pos) &&
1240                     text_[i+1] == '-') {
1241                         // Prevent "--" becoming an endash and "---" becoming
1242                         // an emdash.
1243                         // Within \ttfamily, "--" is merged to "-" (no endash)
1244                         // so we avoid this rather irritating ligature as well
1245                         os << "{}";
1246                         column += 2;
1247                 }
1248                 break;
1249         case '\"':
1250                 os << "\\char34" << termcmd;
1251                 column += 9;
1252                 break;
1253
1254         case '$': case '&':
1255         case '%': case '#': case '{':
1256         case '}': case '_':
1257                 os << '\\';
1258                 os.put(c);
1259                 column += 1;
1260                 break;
1261
1262         case '~':
1263                 os << "\\textasciitilde" << termcmd;
1264                 column += 16;
1265                 break;
1266
1267         case '^':
1268                 os << "\\textasciicircum" << termcmd;
1269                 column += 17;
1270                 break;
1271
1272         case '*':
1273         case '[':
1274         case ']':
1275                 // avoid being mistaken for optional arguments
1276                 os << '{';
1277                 os.put(c);
1278                 os << '}';
1279                 column += 2;
1280                 break;
1281
1282         case ' ':
1283                 // Blanks are printed before font switching.
1284                 // Sure? I am not! (try nice-latex)
1285                 // I am sure it's correct. LyX might be smarter
1286                 // in the future, but for now, nothing wrong is
1287                 // written. (Asger)
1288                 break;
1289
1290         case 0x2013:
1291         case 0x2014:
1292                 if (bparams.use_dash_ligatures && !bparams.useNonTeXFonts) {
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         default:
1421                 return false;
1422         }
1423 }
1424
1425
1426 void Paragraph::Private::validate(LaTeXFeatures & features) const
1427 {
1428         if (layout_->inpreamble && inset_owner_) {
1429                 bool const is_command = layout_->latextype == LATEX_COMMAND;
1430                 Buffer const & buf = inset_owner_->buffer();
1431                 BufferParams const & bp = features.runparams().is_child
1432                         ? buf.masterParams() : buf.params();
1433                 Font f;
1434                 // Using a string stream here circumvents the encoding
1435                 // switching machinery of odocstream. Therefore the
1436                 // output is wrong if this paragraph contains content
1437                 // that needs to switch encoding.
1438                 otexstringstream os;
1439                 os << layout_->preamble();
1440                 if (is_command) {
1441                         os << '\\' << from_ascii(layout_->latexname());
1442                         // we have to provide all the optional arguments here, even though
1443                         // the last one is the only one we care about.
1444                         // Separate handling of optional argument inset.
1445                         if (!layout_->latexargs().empty()) {
1446                                 OutputParams rp = features.runparams();
1447                                 rp.local_font = &owner_->getFirstFontSettings(bp);
1448                                 latexArgInsets(*owner_, os, rp, layout_->latexargs());
1449                         }
1450                         os << from_ascii(layout_->latexparam());
1451                 }
1452                 size_t const length = os.length();
1453                 // this will output "{" at the beginning, but not at the end
1454                 owner_->latex(bp, f, os, features.runparams(), 0, -1, true);
1455                 if (os.length() > length) {
1456                         if (is_command) {
1457                                 os << '}';
1458                                 if (!layout_->postcommandargs().empty()) {
1459                                         OutputParams rp = features.runparams();
1460                                         rp.local_font = &owner_->getFirstFontSettings(bp);
1461                                         latexArgInsets(*owner_, os, rp, layout_->postcommandargs(), "post:");
1462                                 }
1463                         }
1464                         features.addPreambleSnippet(os.release(), true);
1465                 }
1466         }
1467
1468         if (features.runparams().flavor == OutputParams::HTML
1469             && layout_->htmltitle()) {
1470                 features.setHTMLTitle(owner_->asString(AS_STR_INSETS | AS_STR_SKIPDELETE));
1471         }
1472
1473         // check the params.
1474         if (!params_.spacing().isDefault())
1475                 features.require("setspace");
1476
1477         // then the layouts
1478         features.useLayout(layout_->name());
1479
1480         // then the fonts
1481         fontlist_.validate(features);
1482
1483         // then the indentation
1484         if (!params_.leftIndent().zero())
1485                 features.require("ParagraphLeftIndent");
1486
1487         // then the insets
1488         InsetList::const_iterator icit = insetlist_.begin();
1489         InsetList::const_iterator iend = insetlist_.end();
1490         for (; icit != iend; ++icit) {
1491                 if (icit->inset) {
1492                         features.inDeletedInset(owner_->isDeleted(icit->pos));
1493                         icit->inset->validate(features);
1494                         features.inDeletedInset(false);
1495                         if (layout_->needprotect &&
1496                             icit->inset->lyxCode() == FOOT_CODE)
1497                                 features.require("NeedLyXFootnoteCode");
1498                 }
1499         }
1500
1501         // then the contents
1502         for (pos_type i = 0; i < int(text_.size()) ; ++i) {
1503                 BufferEncodings::validate(text_[i], features);
1504         }
1505 }
1506
1507 /////////////////////////////////////////////////////////////////////
1508 //
1509 // Paragraph
1510 //
1511 /////////////////////////////////////////////////////////////////////
1512
1513 namespace {
1514         Layout const emptyParagraphLayout;
1515 }
1516
1517 Paragraph::Paragraph()
1518         : d(new Paragraph::Private(this, emptyParagraphLayout))
1519 {
1520         itemdepth = 0;
1521         d->params_.clear();
1522 }
1523
1524
1525 Paragraph::Paragraph(Paragraph const & par)
1526         : itemdepth(par.itemdepth),
1527         d(new Paragraph::Private(*par.d, this))
1528 {
1529         registerWords();
1530 }
1531
1532
1533 Paragraph::Paragraph(Paragraph const & par, pos_type beg, pos_type end)
1534         : itemdepth(par.itemdepth),
1535         d(new Paragraph::Private(*par.d, this, beg, end))
1536 {
1537         registerWords();
1538 }
1539
1540
1541 Paragraph & Paragraph::operator=(Paragraph const & par)
1542 {
1543         // needed as we will destroy the private part before copying it
1544         if (&par != this) {
1545                 itemdepth = par.itemdepth;
1546
1547                 deregisterWords();
1548                 delete d;
1549                 d = new Private(*par.d, this);
1550                 registerWords();
1551         }
1552         return *this;
1553 }
1554
1555
1556 Paragraph::~Paragraph()
1557 {
1558         deregisterWords();
1559         delete d;
1560 }
1561
1562
1563 namespace {
1564
1565 // this shall be called just before every "os << ..." action.
1566 void flushString(ostream & os, docstring & s)
1567 {
1568         os << to_utf8(s);
1569         s.erase();
1570 }
1571
1572 }
1573
1574
1575 void Paragraph::write(ostream & os, BufferParams const & bparams,
1576         depth_type & dth) const
1577 {
1578         // The beginning or end of a deeper (i.e. nested) area?
1579         if (dth != d->params_.depth()) {
1580                 if (d->params_.depth() > dth) {
1581                         while (d->params_.depth() > dth) {
1582                                 os << "\n\\begin_deeper";
1583                                 ++dth;
1584                         }
1585                 } else {
1586                         while (d->params_.depth() < dth) {
1587                                 os << "\n\\end_deeper";
1588                                 --dth;
1589                         }
1590                 }
1591         }
1592
1593         // First write the layout
1594         os << "\n\\begin_layout " << to_utf8(d->layout_->name()) << '\n';
1595
1596         d->params_.write(os);
1597
1598         Font font1(inherit_font, bparams.language);
1599
1600         Change running_change = Change(Change::UNCHANGED);
1601
1602         // this string is used as a buffer to avoid repetitive calls
1603         // to to_utf8(), which turn out to be expensive (JMarc)
1604         docstring write_buffer;
1605
1606         int column = 0;
1607         for (pos_type i = 0; i <= size(); ++i) {
1608
1609                 Change const & change = lookupChange(i);
1610                 if (change != running_change)
1611                         flushString(os, write_buffer);
1612                 Changes::lyxMarkChange(os, bparams, column, running_change, change);
1613                 running_change = change;
1614
1615                 if (i == size())
1616                         break;
1617
1618                 // Write font changes
1619                 Font font2 = getFontSettings(bparams, i);
1620                 if (font2 != font1) {
1621                         flushString(os, write_buffer);
1622                         font2.lyxWriteChanges(font1, os);
1623                         column = 0;
1624                         font1 = font2;
1625                 }
1626
1627                 char_type const c = d->text_[i];
1628                 switch (c) {
1629                 case META_INSET:
1630                         if (Inset const * inset = getInset(i)) {
1631                                 flushString(os, write_buffer);
1632                                 if (inset->directWrite()) {
1633                                         // international char, let it write
1634                                         // code directly so it's shorter in
1635                                         // the file
1636                                         inset->write(os);
1637                                 } else {
1638                                         if (i)
1639                                                 os << '\n';
1640                                         os << "\\begin_inset ";
1641                                         inset->write(os);
1642                                         os << "\n\\end_inset\n\n";
1643                                         column = 0;
1644                                 }
1645                                 // FIXME This can be removed again once the mystery
1646                                 // crash has been resolved.
1647                                 os << flush;
1648                         }
1649                         break;
1650                 case '\\':
1651                         flushString(os, write_buffer);
1652                         os << "\n\\backslash\n";
1653                         column = 0;
1654                         break;
1655                 case '.':
1656                         flushString(os, write_buffer);
1657                         if (i + 1 < size() && d->text_[i + 1] == ' ') {
1658                                 os << ".\n";
1659                                 column = 0;
1660                         } else
1661                                 os << '.';
1662                         break;
1663                 default:
1664                         if ((column > 70 && c == ' ')
1665                             || column > 79) {
1666                                 flushString(os, write_buffer);
1667                                 os << '\n';
1668                                 column = 0;
1669                         }
1670                         // this check is to amend a bug. LyX sometimes
1671                         // inserts '\0' this could cause problems.
1672                         if (c != '\0')
1673                                 write_buffer.push_back(c);
1674                         else
1675                                 LYXERR0("NUL char in structure.");
1676                         ++column;
1677                         break;
1678                 }
1679         }
1680
1681         flushString(os, write_buffer);
1682         os << "\n\\end_layout\n";
1683         // FIXME This can be removed again once the mystery
1684         // crash has been resolved.
1685         os << flush;
1686 }
1687
1688
1689 void Paragraph::validate(LaTeXFeatures & features) const
1690 {
1691         d->validate(features);
1692 }
1693
1694
1695 void Paragraph::insert(pos_type start, docstring const & str,
1696                        Font const & font, Change const & change)
1697 {
1698         for (size_t i = 0, n = str.size(); i != n ; ++i)
1699                 insertChar(start + i, str[i], font, change);
1700 }
1701
1702
1703 void Paragraph::appendChar(char_type c, Font const & font,
1704                 Change const & change)
1705 {
1706         // track change
1707         d->changes_.insert(change, d->text_.size());
1708         // when appending characters, no need to update tables
1709         d->text_.push_back(c);
1710         setFont(d->text_.size() - 1, font);
1711         d->requestSpellCheck(d->text_.size() - 1);
1712 }
1713
1714
1715 void Paragraph::appendString(docstring const & s, Font const & font,
1716                 Change const & change)
1717 {
1718         pos_type end = s.size();
1719         size_t oldsize = d->text_.size();
1720         size_t newsize = oldsize + end;
1721         size_t capacity = d->text_.capacity();
1722         if (newsize >= capacity)
1723                 d->text_.reserve(max(capacity + 100, newsize));
1724
1725         // when appending characters, no need to update tables
1726         d->text_.append(s);
1727
1728         // FIXME: Optimize this!
1729         for (size_t i = oldsize; i != newsize; ++i) {
1730                 // track change
1731                 d->changes_.insert(change, i);
1732                 d->requestSpellCheck(i);
1733         }
1734         d->fontlist_.set(oldsize, font);
1735         d->fontlist_.set(newsize - 1, font);
1736 }
1737
1738
1739 void Paragraph::insertChar(pos_type pos, char_type c,
1740                            bool trackChanges)
1741 {
1742         d->insertChar(pos, c, Change(trackChanges ?
1743                            Change::INSERTED : Change::UNCHANGED));
1744 }
1745
1746
1747 void Paragraph::insertChar(pos_type pos, char_type c,
1748                            Font const & font, bool trackChanges)
1749 {
1750         d->insertChar(pos, c, Change(trackChanges ?
1751                            Change::INSERTED : Change::UNCHANGED));
1752         setFont(pos, font);
1753 }
1754
1755
1756 void Paragraph::insertChar(pos_type pos, char_type c,
1757                            Font const & font, Change const & change)
1758 {
1759         d->insertChar(pos, c, change);
1760         setFont(pos, font);
1761 }
1762
1763
1764 void Paragraph::resetFonts(Font const & font)
1765 {
1766         d->fontlist_.clear();
1767         d->fontlist_.set(0, font);
1768         d->fontlist_.set(d->text_.size() - 1, font);
1769 }
1770
1771 // Gets uninstantiated font setting at position.
1772 Font const & Paragraph::getFontSettings(BufferParams const & bparams,
1773                                          pos_type pos) const
1774 {
1775         if (pos > size()) {
1776                 LYXERR0("pos: " << pos << " size: " << size());
1777                 LBUFERR(false);
1778         }
1779
1780         FontList::const_iterator cit = d->fontlist_.fontIterator(pos);
1781         if (cit != d->fontlist_.end())
1782                 return cit->font();
1783
1784         if (pos == size() && !empty())
1785                 return getFontSettings(bparams, pos - 1);
1786
1787         // Optimisation: avoid a full font instantiation if there is no
1788         // language change from previous call.
1789         static Font previous_font;
1790         static Language const * previous_lang = 0;
1791         Language const * lang = getParLanguage(bparams);
1792         if (lang != previous_lang) {
1793                 previous_lang = lang;
1794                 previous_font = Font(inherit_font, lang);
1795         }
1796         return previous_font;
1797 }
1798
1799
1800 FontSpan Paragraph::fontSpan(pos_type pos) const
1801 {
1802         LBUFERR(pos <= size());
1803
1804         if (pos == size())
1805                 return FontSpan(pos, pos);
1806
1807         pos_type start = 0;
1808         FontList::const_iterator cit = d->fontlist_.begin();
1809         FontList::const_iterator end = d->fontlist_.end();
1810         for (; cit != end; ++cit) {
1811                 if (cit->pos() >= pos) {
1812                         if (pos >= beginOfBody())
1813                                 return FontSpan(max(start, beginOfBody()),
1814                                                 cit->pos());
1815                         else
1816                                 return FontSpan(start,
1817                                                 min(beginOfBody() - 1,
1818                                                          cit->pos()));
1819                 }
1820                 start = cit->pos() + 1;
1821         }
1822
1823         // This should not happen, but if so, we take no chances.
1824         LYXERR0("Paragraph::fontSpan: position not found in fontinfo table!");
1825         LASSERT(false, return FontSpan(pos, pos));
1826 }
1827
1828
1829 // Gets uninstantiated font setting at position 0
1830 Font const & Paragraph::getFirstFontSettings(BufferParams const & bparams) const
1831 {
1832         if (!empty() && !d->fontlist_.empty())
1833                 return d->fontlist_.begin()->font();
1834
1835         // Optimisation: avoid a full font instantiation if there is no
1836         // language change from previous call.
1837         static Font previous_font;
1838         static Language const * previous_lang = 0;
1839         if (bparams.language != previous_lang) {
1840                 previous_lang = bparams.language;
1841                 previous_font = Font(inherit_font, bparams.language);
1842         }
1843
1844         return previous_font;
1845 }
1846
1847
1848 // Gets the fully instantiated font at a given position in a paragraph
1849 // This is basically the same function as Text::GetFont() in text2.cpp.
1850 // The difference is that this one is used for generating the LaTeX file,
1851 // and thus cosmetic "improvements" are disallowed: This has to deliver
1852 // the true picture of the buffer. (Asger)
1853 Font const Paragraph::getFont(BufferParams const & bparams, pos_type pos,
1854                                  Font const & outerfont) const
1855 {
1856         LBUFERR(pos >= 0);
1857
1858         Font font = getFontSettings(bparams, pos);
1859
1860         pos_type const body_pos = beginOfBody();
1861         FontInfo & fi = font.fontInfo();
1862         if (pos < body_pos)
1863                 fi.realize(d->layout_->labelfont);
1864         else
1865                 fi.realize(d->layout_->font);
1866
1867         fi.realize(outerfont.fontInfo());
1868         fi.realize(bparams.getFont().fontInfo());
1869
1870         return font;
1871 }
1872
1873
1874 Font const Paragraph::getLabelFont
1875         (BufferParams const & bparams, Font const & outerfont) const
1876 {
1877         FontInfo tmpfont = d->layout_->labelfont;
1878         tmpfont.realize(outerfont.fontInfo());
1879         tmpfont.realize(bparams.getFont().fontInfo());
1880         return Font(tmpfont, getParLanguage(bparams));
1881 }
1882
1883
1884 Font const Paragraph::getLayoutFont
1885         (BufferParams const & bparams, Font const & outerfont) const
1886 {
1887         FontInfo tmpfont = d->layout_->font;
1888         tmpfont.realize(outerfont.fontInfo());
1889         tmpfont.realize(bparams.getFont().fontInfo());
1890         return Font(tmpfont, getParLanguage(bparams));
1891 }
1892
1893
1894 char_type Paragraph::getUChar(BufferParams const & bparams, pos_type pos) const
1895 {
1896         char_type c = d->text_[pos];
1897         if (!getFontSettings(bparams, pos).isRightToLeft())
1898                 return c;
1899
1900         // FIXME: The arabic special casing is due to the difference of arabic
1901         // round brackets input introduced in r18599. Check if this should be
1902         // unified with Hebrew or at least if all bracket types should be
1903         // handled the same (file format change in either case).
1904         string const & lang = getFontSettings(bparams, pos).language()->lang();
1905         bool const arabic = lang == "arabic_arabtex" || lang == "arabic_arabi"
1906                 || lang == "farsi";
1907         char_type uc = c;
1908         switch (c) {
1909         case '(':
1910                 uc = arabic ? c : ')';
1911                 break;
1912         case ')':
1913                 uc = arabic ? c : '(';
1914                 break;
1915         case '[':
1916                 uc = ']';
1917                 break;
1918         case ']':
1919                 uc = '[';
1920                 break;
1921         case '{':
1922                 uc = '}';
1923                 break;
1924         case '}':
1925                 uc = '{';
1926                 break;
1927         case '<':
1928                 uc = '>';
1929                 break;
1930         case '>':
1931                 uc = '<';
1932                 break;
1933         }
1934
1935         return uc;
1936 }
1937
1938
1939 void Paragraph::setFont(pos_type pos, Font const & font)
1940 {
1941         LASSERT(pos <= size(), return);
1942
1943         // First, reduce font against layout/label font
1944         // Update: The setCharFont() routine in text2.cpp already
1945         // reduces font, so we don't need to do that here. (Asger)
1946
1947         d->fontlist_.set(pos, font);
1948 }
1949
1950
1951 void Paragraph::makeSameLayout(Paragraph const & par)
1952 {
1953         d->layout_ = par.d->layout_;
1954         d->params_ = par.d->params_;
1955 }
1956
1957
1958 bool Paragraph::stripLeadingSpaces(bool trackChanges)
1959 {
1960         if (isFreeSpacing())
1961                 return false;
1962
1963         int pos = 0;
1964         int count = 0;
1965
1966         while (pos < size() && (isNewline(pos) || isLineSeparator(pos))) {
1967                 if (eraseChar(pos, trackChanges))
1968                         ++count;
1969                 else
1970                         ++pos;
1971         }
1972
1973         return count > 0 || pos > 0;
1974 }
1975
1976
1977 bool Paragraph::hasSameLayout(Paragraph const & par) const
1978 {
1979         return par.d->layout_ == d->layout_
1980                 && d->params_.sameLayout(par.d->params_);
1981 }
1982
1983
1984 depth_type Paragraph::getDepth() const
1985 {
1986         return d->params_.depth();
1987 }
1988
1989
1990 depth_type Paragraph::getMaxDepthAfter() const
1991 {
1992         if (d->layout_->isEnvironment())
1993                 return d->params_.depth() + 1;
1994         else
1995                 return d->params_.depth();
1996 }
1997
1998
1999 LyXAlignment Paragraph::getAlign() const
2000 {
2001         if (d->params_.align() == LYX_ALIGN_LAYOUT)
2002                 return d->layout_->align;
2003         else
2004                 return d->params_.align();
2005 }
2006
2007
2008 docstring const & Paragraph::labelString() const
2009 {
2010         return d->params_.labelString();
2011 }
2012
2013
2014 // the next two functions are for the manual labels
2015 docstring const Paragraph::getLabelWidthString() const
2016 {
2017         if (d->layout_->margintype == MARGIN_MANUAL
2018             || d->layout_->latextype == LATEX_BIB_ENVIRONMENT)
2019                 return d->params_.labelWidthString();
2020         else
2021                 return _("Senseless with this layout!");
2022 }
2023
2024
2025 void Paragraph::setLabelWidthString(docstring const & s)
2026 {
2027         d->params_.labelWidthString(s);
2028 }
2029
2030
2031 docstring Paragraph::expandLabel(Layout const & layout,
2032                 BufferParams const & bparams) const
2033 {
2034         return expandParagraphLabel(layout, bparams, true);
2035 }
2036
2037
2038 docstring Paragraph::expandDocBookLabel(Layout const & layout,
2039                 BufferParams const & bparams) const
2040 {
2041         return expandParagraphLabel(layout, bparams, false);
2042 }
2043
2044
2045 docstring Paragraph::expandParagraphLabel(Layout const & layout,
2046                 BufferParams const & bparams, bool process_appendix) const
2047 {
2048         DocumentClass const & tclass = bparams.documentClass();
2049         string const & lang = getParLanguage(bparams)->code();
2050         bool const in_appendix = process_appendix && d->params_.appendix();
2051         docstring fmt = translateIfPossible(layout.labelstring(in_appendix), lang);
2052
2053         if (fmt.empty() && !layout.counter.empty())
2054                 return tclass.counters().theCounter(layout.counter, lang);
2055
2056         // handle 'inherited level parts' in 'fmt',
2057         // i.e. the stuff between '@' in   '@Section@.\arabic{subsection}'
2058         size_t const i = fmt.find('@', 0);
2059         if (i != docstring::npos) {
2060                 size_t const j = fmt.find('@', i + 1);
2061                 if (j != docstring::npos) {
2062                         docstring parent(fmt, i + 1, j - i - 1);
2063                         docstring label = from_ascii("??");
2064                         if (tclass.hasLayout(parent))
2065                                 label = expandParagraphLabel(tclass[parent], bparams,
2066                                                       process_appendix);
2067                         fmt = docstring(fmt, 0, i) + label
2068                                 + docstring(fmt, j + 1, docstring::npos);
2069                 }
2070         }
2071
2072         return tclass.counters().counterLabel(fmt, lang);
2073 }
2074
2075
2076 void Paragraph::applyLayout(Layout const & new_layout)
2077 {
2078         d->layout_ = &new_layout;
2079         LyXAlignment const oldAlign = d->params_.align();
2080
2081         if (!(oldAlign & d->layout_->alignpossible)) {
2082                 frontend::Alert::warning(_("Alignment not permitted"),
2083                         _("The new layout does not permit the alignment previously used.\nSetting to default."));
2084                 d->params_.align(LYX_ALIGN_LAYOUT);
2085         }
2086 }
2087
2088
2089 pos_type Paragraph::beginOfBody() const
2090 {
2091         return d->begin_of_body_;
2092 }
2093
2094
2095 void Paragraph::setBeginOfBody()
2096 {
2097         if (d->layout_->labeltype != LABEL_MANUAL) {
2098                 d->begin_of_body_ = 0;
2099                 return;
2100         }
2101
2102         // Unroll the first two cycles of the loop
2103         // and remember the previous character to
2104         // remove unnecessary getChar() calls
2105         pos_type i = 0;
2106         pos_type end = size();
2107         if (i < end && !(isNewline(i) || isEnvSeparator(i))) {
2108                 ++i;
2109                 if (i < end) {
2110                         char_type previous_char = d->text_[i];
2111                         if (!(isNewline(i) || isEnvSeparator(i))) {
2112                                 ++i;
2113                                 while (i < end && previous_char != ' ') {
2114                                         char_type temp = d->text_[i];
2115                                         if (isNewline(i) || isEnvSeparator(i))
2116                                                 break;
2117                                         ++i;
2118                                         previous_char = temp;
2119                                 }
2120                         }
2121                 }
2122         }
2123
2124         d->begin_of_body_ = i;
2125 }
2126
2127
2128 bool Paragraph::allowParagraphCustomization() const
2129 {
2130         return inInset().allowParagraphCustomization();
2131 }
2132
2133
2134 bool Paragraph::usePlainLayout() const
2135 {
2136         return inInset().usePlainLayout();
2137 }
2138
2139
2140 bool Paragraph::isPassThru() const
2141 {
2142         return inInset().isPassThru() || d->layout_->pass_thru;
2143 }
2144
2145 namespace {
2146
2147 // paragraphs inside floats need different alignment tags to avoid
2148 // unwanted space
2149
2150 bool noTrivlistCentering(InsetCode code)
2151 {
2152         return code == FLOAT_CODE
2153                || code == WRAP_CODE
2154                || code == CELL_CODE;
2155 }
2156
2157
2158 string correction(string const & orig)
2159 {
2160         if (orig == "flushleft")
2161                 return "raggedright";
2162         if (orig == "flushright")
2163                 return "raggedleft";
2164         if (orig == "center")
2165                 return "centering";
2166         return orig;
2167 }
2168
2169
2170 bool corrected_env(otexstream & os, string const & suffix, string const & env,
2171         InsetCode code, bool const lastpar, int & col)
2172 {
2173         string macro = suffix + "{";
2174         if (noTrivlistCentering(code)) {
2175                 if (lastpar) {
2176                         // the last paragraph in non-trivlist-aligned
2177                         // context is special (to avoid unwanted whitespace)
2178                         if (suffix == "\\begin") {
2179                                 macro = "\\" + correction(env) + "{}";
2180                                 os << from_ascii(macro);
2181                                 col += macro.size();
2182                                 return true;
2183                         }
2184                         return false;
2185                 }
2186                 macro += correction(env);
2187         } else
2188                 macro += env;
2189         macro += "}";
2190         if (suffix == "\\par\\end") {
2191                 os << breakln;
2192                 col = 0;
2193         }
2194         os << from_ascii(macro);
2195         col += macro.size();
2196         if (suffix == "\\begin") {
2197                 os << breakln;
2198                 col = 0;
2199         }
2200         return true;
2201 }
2202
2203 } // namespace anon
2204
2205
2206 int Paragraph::Private::startTeXParParams(BufferParams const & bparams,
2207                         otexstream & os, OutputParams const & runparams) const
2208 {
2209         int column = 0;
2210
2211         bool canindent =
2212                 (bparams.paragraph_separation == BufferParams::ParagraphIndentSeparation) ?
2213                         (layout_->toggle_indent != ITOGGLE_NEVER) :
2214                         (layout_->toggle_indent == ITOGGLE_ALWAYS);
2215
2216         if (canindent && params_.noindent() && !layout_->pass_thru) {
2217                 os << "\\noindent ";
2218                 column += 10;
2219         }
2220
2221         LyXAlignment const curAlign = params_.align();
2222
2223         if (curAlign == layout_->align)
2224                 return column;
2225
2226         switch (curAlign) {
2227         case LYX_ALIGN_NONE:
2228         case LYX_ALIGN_BLOCK:
2229         case LYX_ALIGN_LAYOUT:
2230         case LYX_ALIGN_SPECIAL:
2231         case LYX_ALIGN_DECIMAL:
2232                 break;
2233         case LYX_ALIGN_LEFT:
2234         case LYX_ALIGN_RIGHT:
2235         case LYX_ALIGN_CENTER:
2236                 if (runparams.moving_arg) {
2237                         os << "\\protect";
2238                         column += 8;
2239                 }
2240                 break;
2241         }
2242
2243         string const begin_tag = "\\begin";
2244         InsetCode code = ownerCode();
2245         bool const lastpar = runparams.isLastPar;
2246
2247         switch (curAlign) {
2248         case LYX_ALIGN_NONE:
2249         case LYX_ALIGN_BLOCK:
2250         case LYX_ALIGN_LAYOUT:
2251         case LYX_ALIGN_SPECIAL:
2252         case LYX_ALIGN_DECIMAL:
2253                 break;
2254         case LYX_ALIGN_LEFT: {
2255                 if (owner_->getParLanguage(bparams)->babel() != "hebrew")
2256                         corrected_env(os, begin_tag, "flushleft", code, lastpar, column);
2257                 else
2258                         corrected_env(os, begin_tag, "flushright", code, lastpar, column);
2259                 break;
2260         } case LYX_ALIGN_RIGHT: {
2261                 if (owner_->getParLanguage(bparams)->babel() != "hebrew")
2262                         corrected_env(os, begin_tag, "flushright", code, lastpar, column);
2263                 else
2264                         corrected_env(os, begin_tag, "flushleft", code, lastpar, column);
2265                 break;
2266         } case LYX_ALIGN_CENTER: {
2267                 corrected_env(os, begin_tag, "center", code, lastpar, column);
2268                 break;
2269         }
2270         }
2271
2272         return column;
2273 }
2274
2275
2276 bool Paragraph::Private::endTeXParParams(BufferParams const & bparams,
2277                         otexstream & os, OutputParams const & runparams) const
2278 {
2279         LyXAlignment const curAlign = params_.align();
2280
2281         if (curAlign == layout_->align)
2282                 return false;
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         case LYX_ALIGN_RIGHT:
2293         case LYX_ALIGN_CENTER:
2294                 if (runparams.moving_arg)
2295                         os << "\\protect";
2296                 break;
2297         }
2298
2299         bool output = false;
2300         int col = 0;
2301         string const end_tag = "\\par\\end";
2302         InsetCode code = ownerCode();
2303         bool const lastpar = runparams.isLastPar;
2304
2305         switch (curAlign) {
2306         case LYX_ALIGN_NONE:
2307         case LYX_ALIGN_BLOCK:
2308         case LYX_ALIGN_LAYOUT:
2309         case LYX_ALIGN_SPECIAL:
2310         case LYX_ALIGN_DECIMAL:
2311                 break;
2312         case LYX_ALIGN_LEFT: {
2313                 if (owner_->getParLanguage(bparams)->babel() != "hebrew")
2314                         output = corrected_env(os, end_tag, "flushleft", code, lastpar, col);
2315                 else
2316                         output = corrected_env(os, end_tag, "flushright", code, lastpar, col);
2317                 break;
2318         } case LYX_ALIGN_RIGHT: {
2319                 if (owner_->getParLanguage(bparams)->babel() != "hebrew")
2320                         output = corrected_env(os, end_tag, "flushright", code, lastpar, col);
2321                 else
2322                         output = corrected_env(os, end_tag, "flushleft", code, lastpar, col);
2323                 break;
2324         } case LYX_ALIGN_CENTER: {
2325                 corrected_env(os, end_tag, "center", code, lastpar, col);
2326                 break;
2327         }
2328         }
2329
2330         return output || lastpar;
2331 }
2332
2333
2334 // This one spits out the text of the paragraph
2335 void Paragraph::latex(BufferParams const & bparams,
2336         Font const & outerfont,
2337         otexstream & os,
2338         OutputParams const & runparams,
2339         int start_pos, int end_pos, bool force) const
2340 {
2341         LYXERR(Debug::LATEX, "Paragraph::latex...     " << this);
2342
2343         // FIXME This check should not be needed. Perhaps issue an
2344         // error if it triggers.
2345         Layout const & style = inInset().forcePlainLayout() ?
2346                 bparams.documentClass().plainLayout() : *d->layout_;
2347
2348         if (!force && style.inpreamble)
2349                 return;
2350
2351         bool const allowcust = allowParagraphCustomization();
2352
2353         // Current base font for all inherited font changes, without any
2354         // change caused by an individual character, except for the language:
2355         // It is set to the language of the first character.
2356         // As long as we are in the label, this font is the base font of the
2357         // label. Before the first body character it is set to the base font
2358         // of the body.
2359         Font basefont;
2360
2361         // Maybe we have to create a optional argument.
2362         pos_type body_pos = beginOfBody();
2363         unsigned int column = 0;
2364
2365         if (body_pos > 0) {
2366                 // the optional argument is kept in curly brackets in
2367                 // case it contains a ']'
2368                 // This is not strictly needed, but if this is changed it
2369                 // would be a file format change, and tex2lyx would need
2370                 // to be adjusted, since it unconditionally removes the
2371                 // braces when it parses \item.
2372                 os << "[{";
2373                 column += 2;
2374                 basefont = getLabelFont(bparams, outerfont);
2375         } else {
2376                 basefont = getLayoutFont(bparams, outerfont);
2377         }
2378
2379         // Which font is currently active?
2380         Font running_font(basefont);
2381         // Do we have an open font change?
2382         bool open_font = false;
2383
2384         Change runningChange = Change(Change::UNCHANGED);
2385
2386         Encoding const * const prev_encoding = runparams.encoding;
2387
2388         os.texrow().start(id(), 0);
2389
2390         // if the paragraph is empty, the loop will not be entered at all
2391         if (empty()) {
2392                 if (style.isCommand()) {
2393                         os << '{';
2394                         ++column;
2395                 }
2396                 if (!style.leftdelim().empty()) {
2397                         os << style.leftdelim();
2398                         column += style.leftdelim().size();
2399                 }
2400                 if (allowcust)
2401                         column += d->startTeXParParams(bparams, os, runparams);
2402         }
2403
2404         // Whether a \par can be issued for insets typeset inline with text.
2405         // Yes if greater than 0. This has to be static.
2406         THREAD_LOCAL_STATIC int parInline = 0;
2407
2408         for (pos_type i = 0; i < size(); ++i) {
2409                 // First char in paragraph or after label?
2410                 if (i == body_pos) {
2411                         if (body_pos > 0) {
2412                                 if (open_font) {
2413                                         bool needPar = false;
2414                                         column += running_font.latexWriteEndChanges(
2415                                                 os, bparams, runparams,
2416                                                 basefont, basefont, needPar);
2417                                         open_font = false;
2418                                 }
2419                                 basefont = getLayoutFont(bparams, outerfont);
2420                                 running_font = basefont;
2421
2422                                 column += Changes::latexMarkChange(os, bparams,
2423                                                 runningChange, Change(Change::UNCHANGED),
2424                                                 runparams);
2425                                 runningChange = Change(Change::UNCHANGED);
2426
2427                                 os << "}] ";
2428                                 column +=3;
2429                         }
2430                         if (style.isCommand()) {
2431                                 os << '{';
2432                                 ++column;
2433                         }
2434
2435                         if (!style.leftdelim().empty()) {
2436                                 os << style.leftdelim();
2437                                 column += style.leftdelim().size();
2438                         }
2439
2440                         if (allowcust)
2441                                 column += d->startTeXParParams(bparams, os,
2442                                                             runparams);
2443                 }
2444
2445                 runparams.wasDisplayMath = runparams.inDisplayMath;
2446                 runparams.inDisplayMath = false;
2447                 bool deleted_display_math = false;
2448
2449                 // Check whether a display math inset follows
2450                 if (d->text_[i] == META_INSET
2451                     && i >= start_pos && (end_pos == -1 || i < end_pos)) {
2452                         InsetMath const * im = getInset(i)->asInsetMath();
2453                         if (im && im->asHullInset()
2454                             && im->asHullInset()->outerDisplay()) {
2455                                 runparams.inDisplayMath = true;
2456                                 // runparams.inDeletedInset will be set by
2457                                 // latexInset later, but we need this info
2458                                 // before it is called. On the other hand, we
2459                                 // cannot set it here because it is a counter.
2460                                 deleted_display_math = isDeleted(i);
2461                         }
2462                 }
2463
2464                 Change const & change = runparams.inDeletedInset
2465                         ? runparams.changeOfDeletedInset : lookupChange(i);
2466
2467                 if (bparams.output_changes && runningChange != change) {
2468                         if (open_font) {
2469                                 bool needPar = false;
2470                                 column += running_font.latexWriteEndChanges(
2471                                                 os, bparams, runparams,
2472                                                 basefont, basefont, needPar);
2473                                 open_font = false;
2474                         }
2475                         basefont = getLayoutFont(bparams, outerfont);
2476                         running_font = basefont;
2477                         column += Changes::latexMarkChange(os, bparams, runningChange,
2478                                                            change, runparams);
2479                         runningChange = change;
2480                 }
2481
2482                 // do not output text which is marked deleted
2483                 // if change tracking output is disabled
2484                 if (!bparams.output_changes && change.deleted()) {
2485                         continue;
2486                 }
2487
2488                 ++column;
2489
2490                 // Fully instantiated font
2491                 Font const current_font = getFont(bparams, i, outerfont);
2492
2493                 Font const last_font = running_font;
2494
2495                 // Do we need to close the previous font?
2496                 if (open_font &&
2497                     (current_font != running_font ||
2498                      current_font.language() != running_font.language()))
2499                 {
2500                         bool needPar = false;
2501                         column += running_font.latexWriteEndChanges(
2502                                     os, bparams, runparams, basefont,
2503                                     (i == body_pos-1) ? basefont : current_font,
2504                                     needPar);
2505                         running_font = basefont;
2506                         open_font = false;
2507                 }
2508
2509                 string const running_lang = runparams.use_polyglossia ?
2510                         running_font.language()->polyglossia() : running_font.language()->babel();
2511                 // close babel's font environment before opening CJK.
2512                 string const lang_end_command = runparams.use_polyglossia ?
2513                         "\\end{$$lang}" : lyxrc.language_command_end;
2514                 bool const using_begin_end = runparams.use_polyglossia ||
2515                                                 !lang_end_command.empty();
2516                 if (!running_lang.empty() &&
2517                     current_font.language()->encoding()->package() == Encoding::CJK) {
2518                                 string end_tag = subst(lang_end_command,
2519                                                         "$$lang",
2520                                                         running_lang);
2521                                 os << from_ascii(end_tag);
2522                                 column += end_tag.length();
2523                                 if (using_begin_end)
2524                                         popLanguageName();
2525                 }
2526
2527                 // Switch file encoding if necessary (and allowed)
2528                 if (!runparams.pass_thru && !style.pass_thru &&
2529                     runparams.encoding->package() != Encoding::none &&
2530                     current_font.language()->encoding()->package() != Encoding::none) {
2531                         pair<bool, int> const enc_switch =
2532                                 switchEncoding(os.os(), bparams, runparams,
2533                                         *(current_font.language()->encoding()));
2534                         if (enc_switch.first) {
2535                                 column += enc_switch.second;
2536                                 runparams.encoding = current_font.language()->encoding();
2537                         }
2538                 }
2539
2540                 char_type const c = d->text_[i];
2541
2542                 // A display math inset inside an ulem command will be output
2543                 // as a box of width \columnwidth, so we have to either disable
2544                 // indentation if the inset starts a paragraph, or start a new
2545                 // line to accommodate such box. This has to be done before
2546                 // writing any font changing commands.
2547                 if (runparams.inDisplayMath && !deleted_display_math
2548                     && runparams.inulemcmd) {
2549                         if (os.afterParbreak())
2550                                 os << "\\noindent";
2551                         else
2552                                 os << "\\\\\n";
2553                 }
2554
2555                 // Do we need to change font?
2556                 if ((current_font != running_font ||
2557                      current_font.language() != running_font.language()) &&
2558                         i != body_pos - 1)
2559                 {
2560                         odocstringstream ods;
2561                         column += current_font.latexWriteStartChanges(ods, bparams,
2562                                                               runparams, basefont,
2563                                                               last_font);
2564                         // Check again for display math in ulem commands as a
2565                         // font change may also occur just before a math inset.
2566                         if (runparams.inDisplayMath && !deleted_display_math
2567                             && runparams.inulemcmd) {
2568                                 if (os.afterParbreak())
2569                                         os << "\\noindent";
2570                                 else
2571                                         os << "\\\\\n";
2572                         }
2573                         running_font = current_font;
2574                         open_font = true;
2575                         docstring fontchange = ods.str();
2576                         // check whether the fontchange ends with a \\textcolor
2577                         // modifier and the text starts with a space (bug 4473)
2578                         docstring const last_modifier = rsplit(fontchange, '\\');
2579                         if (prefixIs(last_modifier, from_ascii("textcolor")) && c == ' ')
2580                                 os << fontchange << from_ascii("{}");
2581                         // check if the fontchange ends with a trailing blank
2582                         // (like "\small " (see bug 3382)
2583                         else if (suffixIs(fontchange, ' ') && c == ' ')
2584                                 os << fontchange.substr(0, fontchange.size() - 1)
2585                                    << from_ascii("{}");
2586                         else
2587                                 os << fontchange;
2588                 }
2589
2590                 // FIXME: think about end_pos implementation...
2591                 if (c == ' ' && i >= start_pos && (end_pos == -1 || i < end_pos)) {
2592                         // FIXME: integrate this case in latexSpecialChar
2593                         // Do not print the separation of the optional argument
2594                         // if style.pass_thru is false. This works because
2595                         // latexSpecialChar ignores spaces if
2596                         // style.pass_thru is false.
2597                         if (i != body_pos - 1) {
2598                                 if (d->simpleTeXBlanks(runparams, os,
2599                                                 i, column, current_font, style)) {
2600                                         // A surrogate pair was output. We
2601                                         // must not call latexSpecialChar
2602                                         // in this iteration, since it would output
2603                                         // the combining character again.
2604                                         ++i;
2605                                         continue;
2606                                 }
2607                         }
2608                 }
2609
2610                 OutputParams rp = runparams;
2611                 rp.free_spacing = style.free_spacing;
2612                 rp.local_font = &current_font;
2613                 rp.intitle = style.intitle;
2614
2615                 // Two major modes:  LaTeX or plain
2616                 // Handle here those cases common to both modes
2617                 // and then split to handle the two modes separately.
2618                 if (c == META_INSET) {
2619                         if (i >= start_pos && (end_pos == -1 || i < end_pos)) {
2620                                 // Greyedout notes and, in general, all insets
2621                                 // with InsetLayout::isDisplay() == false,
2622                                 // are typeset inline with the text. So, we
2623                                 // can add a \par to the last paragraph of
2624                                 // such insets only if nothing else follows.
2625                                 bool incremented = false;
2626                                 Inset const * inset = getInset(i);
2627                                 InsetText const * textinset = inset
2628                                                         ? inset->asInsetText()
2629                                                         : 0;
2630                                 if (i + 1 == size() && textinset
2631                                     && !inset->getLayout().isDisplay()) {
2632                                         ParagraphList const & pars =
2633                                                 textinset->text().paragraphs();
2634                                         pit_type const pit = pars.size() - 1;
2635                                         Font const last_font =
2636                                                 pit < 0 || pars[pit].empty()
2637                                                 ? pars[pit].getLayoutFont(
2638                                                                 bparams,
2639                                                                 outerfont)
2640                                                 : pars[pit].getFont(bparams,
2641                                                         pars[pit].size() - 1,
2642                                                         outerfont);
2643                                         if (last_font.fontInfo().size() !=
2644                                             basefont.fontInfo().size()) {
2645                                                 ++parInline;
2646                                                 incremented = true;
2647                                         }
2648                                 }
2649                                 d->latexInset(bparams, os, rp, running_font,
2650                                                 basefont, outerfont, open_font,
2651                                                 runningChange, style, i, column);
2652                                 if (incremented)
2653                                         --parInline;
2654                         }
2655                 } else if (i >= start_pos && (end_pos == -1 || i < end_pos)) {
2656                         try {
2657                                 d->latexSpecialChar(os, bparams, rp,
2658                                                     running_font, runningChange,
2659                                                     style, i, end_pos, column);
2660                         } catch (EncodingException & e) {
2661                                 if (runparams.dryrun) {
2662                                         os << "<" << _("LyX Warning: ")
2663                                            << _("uncodable character") << " '";
2664                                         os.put(c);
2665                                         os << "'>";
2666                                 } else {
2667                                         // add location information and throw again.
2668                                         e.par_id = id();
2669                                         e.pos = i;
2670                                         throw(e);
2671                                 }
2672                         }
2673                 }
2674
2675                 // Set the encoding to that returned from latexSpecialChar (see
2676                 // comment for encoding member in OutputParams.h)
2677                 runparams.encoding = rp.encoding;
2678
2679                 // Also carry on the info on a closed ulem command for insets
2680                 // such as Note that do not produce any output, so that no
2681                 // command is ever executed but its opening was recorded.
2682                 runparams.inulemcmd = rp.inulemcmd;
2683         }
2684
2685         // If we have an open font definition, we have to close it
2686         if (open_font) {
2687                 // Make sure that \\par is done with the font of the last
2688                 // character if this has another size as the default.
2689                 // This is necessary because LaTeX (and LyX on the screen)
2690                 // calculates the space between the baselines according
2691                 // to this font. (Matthias)
2692                 //
2693                 // We must not change the font for the last paragraph
2694                 // of non-multipar insets, tabular cells or commands,
2695                 // since this produces unwanted whitespace.
2696
2697                 Font const font = empty()
2698                         ? getLayoutFont(bparams, outerfont)
2699                         : getFont(bparams, size() - 1, outerfont);
2700
2701                 InsetText const * textinset = inInset().asInsetText();
2702
2703                 bool const maintext = textinset
2704                         ? textinset->text().isMainText()
2705                         : false;
2706
2707                 size_t const numpars = textinset
2708                         ? textinset->text().paragraphs().size()
2709                         : 0;
2710
2711                 bool needPar = false;
2712
2713                 if (style.resfont.size() != font.fontInfo().size()
2714                     && (!runparams.isLastPar || maintext
2715                         || (numpars > 1 && d->ownerCode() != CELL_CODE
2716                             && (inInset().getLayout().isDisplay()
2717                                 || parInline)))
2718                     && !style.isCommand()) {
2719                         needPar = true;
2720                 }
2721 #ifdef FIXED_LANGUAGE_END_DETECTION
2722                 if (next_) {
2723                         running_font.latexWriteEndChanges(os, bparams,
2724                                         runparams, basefont,
2725                                         next_->getFont(bparams, 0, outerfont),
2726                                                        needPar);
2727                 } else {
2728                         running_font.latexWriteEndChanges(os, bparams,
2729                                         runparams, basefont, basefont, needPar);
2730                 }
2731 #else
2732 //FIXME: For now we ALWAYS have to close the foreign font settings if they are
2733 //FIXME: there as we start another \selectlanguage with the next paragraph if
2734 //FIXME: we are in need of this. This should be fixed sometime (Jug)
2735                 running_font.latexWriteEndChanges(os, bparams, runparams,
2736                                 basefont, basefont, needPar);
2737 #endif
2738                 if (needPar) {
2739                         // The \par could not be inserted at the same nesting
2740                         // level of the font size change, so do it now.
2741                         os << "{\\" << font.latexSize() << "\\par}";
2742                 }
2743         }
2744
2745         column += Changes::latexMarkChange(os, bparams, runningChange,
2746                                            Change(Change::UNCHANGED), runparams);
2747
2748         // Needed if there is an optional argument but no contents.
2749         if (body_pos > 0 && body_pos == size()) {
2750                 os << "}]~";
2751         }
2752
2753         if (!style.rightdelim().empty()) {
2754                 os << style.rightdelim();
2755                 column += style.rightdelim().size();
2756         }
2757
2758         if (allowcust && d->endTeXParParams(bparams, os, runparams)
2759             && runparams.encoding != prev_encoding) {
2760                 runparams.encoding = prev_encoding;
2761                 os << setEncoding(prev_encoding->iconvName());
2762         }
2763
2764         LYXERR(Debug::LATEX, "Paragraph::latex... done " << this);
2765 }
2766
2767
2768 bool Paragraph::emptyTag() const
2769 {
2770         for (pos_type i = 0; i < size(); ++i) {
2771                 if (Inset const * inset = getInset(i)) {
2772                         InsetCode lyx_code = inset->lyxCode();
2773                         // FIXME testing like that is wrong. What is
2774                         // the intent?
2775                         if (lyx_code != TOC_CODE &&
2776                             lyx_code != INCLUDE_CODE &&
2777                             lyx_code != GRAPHICS_CODE &&
2778                             lyx_code != ERT_CODE &&
2779                             lyx_code != LISTINGS_CODE &&
2780                             lyx_code != FLOAT_CODE &&
2781                             lyx_code != TABULAR_CODE) {
2782                                 return false;
2783                         }
2784                 } else {
2785                         char_type c = d->text_[i];
2786                         if (c != ' ' && c != '\t')
2787                                 return false;
2788                 }
2789         }
2790         return true;
2791 }
2792
2793
2794 string Paragraph::getID(Buffer const & buf, OutputParams const & runparams)
2795         const
2796 {
2797         for (pos_type i = 0; i < size(); ++i) {
2798                 if (Inset const * inset = getInset(i)) {
2799                         InsetCode lyx_code = inset->lyxCode();
2800                         if (lyx_code == LABEL_CODE) {
2801                                 InsetLabel const * const il = static_cast<InsetLabel const *>(inset);
2802                                 docstring const & id = il->getParam("name");
2803                                 return "id='" + to_utf8(sgml::cleanID(buf, runparams, id)) + "'";
2804                         }
2805                 }
2806         }
2807         return string();
2808 }
2809
2810
2811 pos_type Paragraph::firstWordDocBook(odocstream & os, OutputParams const & runparams)
2812         const
2813 {
2814         pos_type i;
2815         for (i = 0; i < size(); ++i) {
2816                 if (Inset const * inset = getInset(i)) {
2817                         inset->docbook(os, runparams);
2818                 } else {
2819                         char_type c = d->text_[i];
2820                         if (c == ' ')
2821                                 break;
2822                         os << sgml::escapeChar(c);
2823                 }
2824         }
2825         return i;
2826 }
2827
2828
2829 pos_type Paragraph::firstWordLyXHTML(XHTMLStream & xs, OutputParams const & runparams)
2830         const
2831 {
2832         pos_type i;
2833         for (i = 0; i < size(); ++i) {
2834                 if (Inset const * inset = getInset(i)) {
2835                         inset->xhtml(xs, runparams);
2836                 } else {
2837                         char_type c = d->text_[i];
2838                         if (c == ' ')
2839                                 break;
2840                         xs << c;
2841                 }
2842         }
2843         return i;
2844 }
2845
2846
2847 bool Paragraph::Private::onlyText(Buffer const & buf, Font const & outerfont, pos_type initial) const
2848 {
2849         Font font_old;
2850         pos_type size = text_.size();
2851         for (pos_type i = initial; i < size; ++i) {
2852                 Font font = owner_->getFont(buf.params(), i, outerfont);
2853                 if (text_[i] == META_INSET)
2854                         return false;
2855                 if (i != initial && font != font_old)
2856                         return false;
2857                 font_old = font;
2858         }
2859
2860         return true;
2861 }
2862
2863
2864 void Paragraph::simpleDocBookOnePar(Buffer const & buf,
2865                                     odocstream & os,
2866                                     OutputParams const & runparams,
2867                                     Font const & outerfont,
2868                                     pos_type initial) const
2869 {
2870         bool emph_flag = false;
2871
2872         Layout const & style = *d->layout_;
2873         FontInfo font_old =
2874                 style.labeltype == LABEL_MANUAL ? style.labelfont : style.font;
2875
2876         if (style.pass_thru && !d->onlyText(buf, outerfont, initial))
2877                 os << "]]>";
2878
2879         // parsing main loop
2880         for (pos_type i = initial; i < size(); ++i) {
2881                 Font font = getFont(buf.params(), i, outerfont);
2882
2883                 // handle <emphasis> tag
2884                 if (font_old.emph() != font.fontInfo().emph()) {
2885                         if (font.fontInfo().emph() == FONT_ON) {
2886                                 os << "<emphasis>";
2887                                 emph_flag = true;
2888                         } else if (i != initial) {
2889                                 os << "</emphasis>";
2890                                 emph_flag = false;
2891                         }
2892                 }
2893
2894                 if (Inset const * inset = getInset(i)) {
2895                         inset->docbook(os, runparams);
2896                 } else {
2897                         char_type c = d->text_[i];
2898
2899                         if (style.pass_thru)
2900                                 os.put(c);
2901                         else
2902                                 os << sgml::escapeChar(c);
2903                 }
2904                 font_old = font.fontInfo();
2905         }
2906
2907         if (emph_flag) {
2908                 os << "</emphasis>";
2909         }
2910
2911         if (style.free_spacing)
2912                 os << '\n';
2913         if (style.pass_thru && !d->onlyText(buf, outerfont, initial))
2914                 os << "<![CDATA[";
2915 }
2916
2917
2918 namespace {
2919 void doFontSwitch(vector<html::FontTag> & tagsToOpen,
2920                   vector<html::EndFontTag> & tagsToClose,
2921                   bool & flag, FontState curstate, html::FontTypes type)
2922 {
2923         if (curstate == FONT_ON) {
2924                 tagsToOpen.push_back(html::FontTag(type));
2925                 flag = true;
2926         } else if (flag) {
2927                 tagsToClose.push_back(html::EndFontTag(type));
2928                 flag = false;
2929         }
2930 }
2931 }
2932
2933
2934 docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
2935                                     XHTMLStream & xs,
2936                                     OutputParams const & runparams,
2937                                     Font const & outerfont,
2938                                     bool start_paragraph, bool close_paragraph,
2939                                     pos_type initial) const
2940 {
2941         docstring retval;
2942
2943         // track whether we have opened these tags
2944         bool emph_flag = false;
2945         bool bold_flag = false;
2946         bool noun_flag = false;
2947         bool ubar_flag = false;
2948         bool dbar_flag = false;
2949         bool sout_flag = false;
2950         bool xout_flag = false;
2951         bool wave_flag = false;
2952         // shape tags
2953         bool shap_flag = false;
2954         // family tags
2955         bool faml_flag = false;
2956         // size tags
2957         bool size_flag = false;
2958
2959         Layout const & style = *d->layout_;
2960
2961         if (start_paragraph)
2962                 xs.startDivision(allowEmpty());
2963
2964         FontInfo font_old =
2965                 style.labeltype == LABEL_MANUAL ? style.labelfont : style.font;
2966
2967         FontShape  curr_fs   = INHERIT_SHAPE;
2968         FontFamily curr_fam  = INHERIT_FAMILY;
2969         FontSize   curr_size = FONT_SIZE_INHERIT;
2970         
2971         string const default_family = 
2972                 buf.masterBuffer()->params().fonts_default_family;              
2973
2974         vector<html::FontTag> tagsToOpen;
2975         vector<html::EndFontTag> tagsToClose;
2976         
2977         // parsing main loop
2978         for (pos_type i = initial; i < size(); ++i) {
2979                 // let's not show deleted material in the output
2980                 if (isDeleted(i))
2981                         continue;
2982
2983                 Font const font = getFont(buf.masterBuffer()->params(), i, outerfont);
2984
2985                 // emphasis
2986                 FontState curstate = font.fontInfo().emph();
2987                 if (font_old.emph() != curstate)
2988                         doFontSwitch(tagsToOpen, tagsToClose, emph_flag, curstate, html::FT_EMPH);
2989
2990                 // noun
2991                 curstate = font.fontInfo().noun();
2992                 if (font_old.noun() != curstate)
2993                         doFontSwitch(tagsToOpen, tagsToClose, noun_flag, curstate, html::FT_NOUN);
2994
2995                 // underbar
2996                 curstate = font.fontInfo().underbar();
2997                 if (font_old.underbar() != curstate)
2998                         doFontSwitch(tagsToOpen, tagsToClose, ubar_flag, curstate, html::FT_UBAR);
2999         
3000                 // strikeout
3001                 curstate = font.fontInfo().strikeout();
3002                 if (font_old.strikeout() != curstate)
3003                         doFontSwitch(tagsToOpen, tagsToClose, sout_flag, curstate, html::FT_SOUT);
3004
3005                 // xout
3006                 curstate = font.fontInfo().xout();
3007                 if (font_old.xout() != curstate)
3008                         doFontSwitch(tagsToOpen, tagsToClose, xout_flag, curstate, html::FT_XOUT);
3009
3010                 // double underbar
3011                 curstate = font.fontInfo().uuline();
3012                 if (font_old.uuline() != curstate)
3013                         doFontSwitch(tagsToOpen, tagsToClose, dbar_flag, curstate, html::FT_DBAR);
3014
3015                 // wavy line
3016                 curstate = font.fontInfo().uwave();
3017                 if (font_old.uwave() != curstate)
3018                         doFontSwitch(tagsToOpen, tagsToClose, wave_flag, curstate, html::FT_WAVE);
3019
3020                 // bold
3021                 // a little hackish, but allows us to reuse what we have.
3022                 curstate = (font.fontInfo().series() == BOLD_SERIES ? FONT_ON : FONT_OFF);
3023                 if (font_old.series() != font.fontInfo().series())
3024                         doFontSwitch(tagsToOpen, tagsToClose, bold_flag, curstate, html::FT_BOLD);
3025
3026                 // Font shape
3027                 curr_fs = font.fontInfo().shape();
3028                 FontShape old_fs = font_old.shape();
3029                 if (old_fs != curr_fs) {
3030                         if (shap_flag) {
3031                                 switch (old_fs) {
3032                                 case ITALIC_SHAPE:
3033                                         tagsToClose.push_back(html::EndFontTag(html::FT_ITALIC));
3034                                         break;
3035                                 case SLANTED_SHAPE:
3036                                         tagsToClose.push_back(html::EndFontTag(html::FT_SLANTED));
3037                                         break;
3038                                 case SMALLCAPS_SHAPE:
3039                                         tagsToClose.push_back(html::EndFontTag(html::FT_SMALLCAPS));
3040                                         break;
3041                                 case UP_SHAPE:
3042                                 case INHERIT_SHAPE:
3043                                         break;
3044                                 default:
3045                                         // the other tags are for internal use
3046                                         LATTEST(false);
3047                                         break;
3048                                 }
3049                                 shap_flag = false;
3050                         }
3051                         switch (curr_fs) {
3052                         case ITALIC_SHAPE:
3053                                 tagsToOpen.push_back(html::FontTag(html::FT_ITALIC));
3054                                 shap_flag = true;
3055                                 break;
3056                         case SLANTED_SHAPE:
3057                                 tagsToOpen.push_back(html::FontTag(html::FT_SLANTED));
3058                                 shap_flag = true;
3059                                 break;
3060                         case SMALLCAPS_SHAPE:
3061                                 tagsToOpen.push_back(html::FontTag(html::FT_SMALLCAPS));
3062                                 shap_flag = true;
3063                                 break;
3064                         case UP_SHAPE:
3065                         case INHERIT_SHAPE:
3066                                 break;
3067                         default:
3068                                 // the other tags are for internal use
3069                                 LATTEST(false);
3070                                 break;
3071                         }
3072                 }
3073
3074                 // Font family
3075                 curr_fam = font.fontInfo().family();
3076                 FontFamily old_fam = font_old.family();
3077                 if (old_fam != curr_fam) {
3078                         if (faml_flag) {
3079                                 switch (old_fam) {
3080                                 case ROMAN_FAMILY:
3081                                         tagsToClose.push_back(html::EndFontTag(html::FT_ROMAN));
3082                                         break;
3083                                 case SANS_FAMILY:
3084                                         tagsToClose.push_back(html::EndFontTag(html::FT_SANS));
3085                                         break;
3086                                 case TYPEWRITER_FAMILY:
3087                                         tagsToClose.push_back(html::EndFontTag(html::FT_TYPE));
3088                                         break;
3089                                 case INHERIT_FAMILY:
3090                                         break;
3091                                 default:
3092                                         // the other tags are for internal use
3093                                         LATTEST(false);
3094                                         break;
3095                                 }
3096                                 faml_flag = false;
3097                         }
3098                         switch (curr_fam) {
3099                         case ROMAN_FAMILY:
3100                                 // we will treat a "default" font family as roman, since we have
3101                                 // no other idea what to do.
3102                                 if (default_family != "rmdefault" && default_family != "default") {
3103                                         tagsToOpen.push_back(html::FontTag(html::FT_ROMAN));
3104                                         faml_flag = true;
3105                                 }
3106                                 break;
3107                         case SANS_FAMILY:
3108                                 if (default_family != "sfdefault") {
3109                                         tagsToOpen.push_back(html::FontTag(html::FT_SANS));
3110                                         faml_flag = true;
3111                                 }
3112                                 break;
3113                         case TYPEWRITER_FAMILY:
3114                                 if (default_family != "ttdefault") {
3115                                         tagsToOpen.push_back(html::FontTag(html::FT_TYPE));
3116                                         faml_flag = true;
3117                                 }
3118                                 break;
3119                         case INHERIT_FAMILY:
3120                                 break;
3121                         default:
3122                                 // the other tags are for internal use
3123                                 LATTEST(false);
3124                                 break;
3125                         }
3126                 }
3127
3128                 // Font size
3129                 curr_size = font.fontInfo().size();
3130                 FontSize old_size = font_old.size();
3131                 if (old_size != curr_size) {
3132                         if (size_flag) {
3133                                 switch (old_size) {
3134                                 case FONT_SIZE_TINY:
3135                                         tagsToClose.push_back(html::EndFontTag(html::FT_SIZE_TINY));
3136                                         break;
3137                                 case FONT_SIZE_SCRIPT:
3138                                         tagsToClose.push_back(html::EndFontTag(html::FT_SIZE_SCRIPT));
3139                                         break;
3140                                 case FONT_SIZE_FOOTNOTE:
3141                                         tagsToClose.push_back(html::EndFontTag(html::FT_SIZE_FOOTNOTE));
3142                                         break;
3143                                 case FONT_SIZE_SMALL:
3144                                         tagsToClose.push_back(html::EndFontTag(html::FT_SIZE_SMALL));
3145                                         break;
3146                                 case FONT_SIZE_LARGE:
3147                                         tagsToClose.push_back(html::EndFontTag(html::FT_SIZE_LARGE));
3148                                         break;
3149                                 case FONT_SIZE_LARGER:
3150                                         tagsToClose.push_back(html::EndFontTag(html::FT_SIZE_LARGER));
3151                                         break;
3152                                 case FONT_SIZE_LARGEST:
3153                                         tagsToClose.push_back(html::EndFontTag(html::FT_SIZE_LARGEST));
3154                                         break;
3155                                 case FONT_SIZE_HUGE:
3156                                         tagsToClose.push_back(html::EndFontTag(html::FT_SIZE_HUGE));
3157                                         break;
3158                                 case FONT_SIZE_HUGER:
3159                                         tagsToClose.push_back(html::EndFontTag(html::FT_SIZE_HUGER));
3160                                         break;
3161                                 case FONT_SIZE_INCREASE:
3162                                         tagsToClose.push_back(html::EndFontTag(html::FT_SIZE_INCREASE));
3163                                         break;
3164                                 case FONT_SIZE_DECREASE:
3165                                         tagsToClose.push_back(html::EndFontTag(html::FT_SIZE_DECREASE));
3166                                         break;
3167                                 case FONT_SIZE_INHERIT:
3168                                 case FONT_SIZE_NORMAL:
3169                                         break;
3170                                 default:
3171                                         // the other tags are for internal use
3172                                         LATTEST(false);
3173                                         break;
3174                                 }
3175                                 size_flag = false;
3176                         }
3177                         switch (curr_size) {
3178                         case FONT_SIZE_TINY:
3179                                 tagsToOpen.push_back(html::FontTag(html::FT_SIZE_TINY));
3180                                 size_flag = true;
3181                                 break;
3182                         case FONT_SIZE_SCRIPT:
3183                                 tagsToOpen.push_back(html::FontTag(html::FT_SIZE_SCRIPT));
3184                                 size_flag = true;
3185                                 break;
3186                         case FONT_SIZE_FOOTNOTE:
3187                                 tagsToOpen.push_back(html::FontTag(html::FT_SIZE_FOOTNOTE));
3188                                 size_flag = true;
3189                                 break;
3190                         case FONT_SIZE_SMALL:
3191                                 tagsToOpen.push_back(html::FontTag(html::FT_SIZE_SMALL));
3192                                 size_flag = true;
3193                                 break;
3194                         case FONT_SIZE_LARGE:
3195                                 tagsToOpen.push_back(html::FontTag(html::FT_SIZE_LARGE));
3196                                 size_flag = true;
3197                                 break;
3198                         case FONT_SIZE_LARGER:
3199                                 tagsToOpen.push_back(html::FontTag(html::FT_SIZE_LARGER));
3200                                 size_flag = true;
3201                                 break;
3202                         case FONT_SIZE_LARGEST:
3203                                 tagsToOpen.push_back(html::FontTag(html::FT_SIZE_LARGEST));
3204                                 size_flag = true;
3205                                 break;
3206                         case FONT_SIZE_HUGE:
3207                                 tagsToOpen.push_back(html::FontTag(html::FT_SIZE_HUGE));
3208                                 size_flag = true;
3209                                 break;
3210                         case FONT_SIZE_HUGER:
3211                                 tagsToOpen.push_back(html::FontTag(html::FT_SIZE_HUGER));
3212                                 size_flag = true;
3213                                 break;
3214                         case FONT_SIZE_INCREASE:
3215                                 tagsToOpen.push_back(html::FontTag(html::FT_SIZE_INCREASE));
3216                                 size_flag = true;
3217                                 break;
3218                         case FONT_SIZE_DECREASE:
3219                                 tagsToOpen.push_back(html::FontTag(html::FT_SIZE_DECREASE));
3220                                 size_flag = true;
3221                                 break;
3222                         case FONT_SIZE_NORMAL:
3223                         case FONT_SIZE_INHERIT:
3224                                 break;
3225                         default:
3226                                 // the other tags are for internal use
3227                                 LATTEST(false);
3228                                 break;
3229                         }
3230                 }
3231
3232                 // FIXME XHTML
3233                 // Other such tags? What about the other text ranges?
3234
3235                 vector<html::EndFontTag>::const_iterator cit = tagsToClose.begin();
3236                 vector<html::EndFontTag>::const_iterator cen = tagsToClose.end();
3237                 for (; cit != cen; ++cit)
3238                         xs << *cit;
3239
3240                 vector<html::FontTag>::const_iterator sit = tagsToOpen.begin();
3241                 vector<html::FontTag>::const_iterator sen = tagsToOpen.end();
3242                 for (; sit != sen; ++sit)
3243                         xs << *sit;
3244
3245                 tagsToClose.clear();
3246                 tagsToOpen.clear();
3247
3248                 Inset const * inset = getInset(i);
3249                 if (inset) {
3250                         if (!runparams.for_toc || inset->isInToc()) {
3251                                 OutputParams np = runparams;
3252                                 np.local_font = &font;
3253                                 // If the paragraph has size 1, then we are in the "special
3254                                 // case" where we do not output the containing paragraph info
3255                                 if (!inset->getLayout().htmlisblock() && size() != 1)
3256                                         np.html_in_par = true;
3257                                 retval += inset->xhtml(xs, np);
3258                         }
3259                 } else {
3260                         char_type c = getUChar(buf.masterBuffer()->params(), i);
3261                         xs << c;
3262                 }
3263                 font_old = font.fontInfo();
3264         }
3265
3266         // FIXME XHTML
3267         // I'm worried about what happens if a branch, say, is itself
3268         // wrapped in some font stuff. I think that will not work.
3269         xs.closeFontTags();
3270         if (close_paragraph)
3271                 xs.endDivision();
3272
3273         return retval;
3274 }
3275
3276
3277 bool Paragraph::isHfill(pos_type pos) const
3278 {
3279         Inset const * inset = getInset(pos);
3280         return inset && inset->isHfill();
3281 }
3282
3283
3284 bool Paragraph::isNewline(pos_type pos) const
3285 {
3286         // U+2028 LINE SEPARATOR
3287         // U+2029 PARAGRAPH SEPARATOR
3288         char_type const c = d->text_[pos];
3289         if (c == 0x2028 || c == 0x2029)
3290                 return true;
3291         Inset const * inset = getInset(pos);
3292         return inset && inset->lyxCode() == NEWLINE_CODE;
3293 }
3294
3295
3296 bool Paragraph::isEnvSeparator(pos_type pos) const
3297 {
3298         Inset const * inset = getInset(pos);
3299         return inset && inset->lyxCode() == SEPARATOR_CODE;
3300 }
3301
3302
3303 bool Paragraph::isLineSeparator(pos_type pos) const
3304 {
3305         char_type const c = d->text_[pos];
3306         if (isLineSeparatorChar(c))
3307                 return true;
3308         Inset const * inset = getInset(pos);
3309         return inset && inset->isLineSeparator();
3310 }
3311
3312
3313 bool Paragraph::isWordSeparator(pos_type pos) const
3314 {
3315         if (pos == size())
3316                 return true;
3317         if (Inset const * inset = getInset(pos))
3318                 return !inset->isLetter();
3319         // if we have a hard hyphen (no en- or emdash) or apostrophe
3320         // we pass this to the spell checker
3321         // FIXME: this method is subject to change, visit
3322         // https://bugzilla.mozilla.org/show_bug.cgi?id=355178
3323         // to get an impression how complex this is.
3324         if (isHardHyphenOrApostrophe(pos))
3325                 return false;
3326         char_type const c = d->text_[pos];
3327         // We want to pass the escape chars to the spellchecker
3328         docstring const escape_chars = from_utf8(lyxrc.spellchecker_esc_chars);
3329         return !isLetterChar(c) && !isDigitASCII(c) && !contains(escape_chars, c);
3330 }
3331
3332
3333 bool Paragraph::isHardHyphenOrApostrophe(pos_type pos) const
3334 {
3335         pos_type const psize = size();
3336         if (pos >= psize)
3337                 return false;
3338         char_type const c = d->text_[pos];
3339         if (c != '-' && c != '\'')
3340                 return false;
3341         int nextpos = pos + 1;
3342         int prevpos = pos > 0 ? pos - 1 : 0;
3343         if ((nextpos == psize || isSpace(nextpos))
3344                 && (pos == 0 || isSpace(prevpos)))
3345                 return false;
3346         return true;
3347 }
3348
3349
3350 FontSpan const & Paragraph::getSpellRange(pos_type pos) const
3351 {
3352         return d->speller_state_.getRange(pos);
3353 }
3354
3355
3356 bool Paragraph::isChar(pos_type pos) const
3357 {
3358         if (Inset const * inset = getInset(pos))
3359                 return inset->isChar();
3360         char_type const c = d->text_[pos];
3361         return !isLetterChar(c) && !isDigitASCII(c) && !lyx::isSpace(c);
3362 }
3363
3364
3365 bool Paragraph::isSpace(pos_type pos) const
3366 {
3367         if (Inset const * inset = getInset(pos))
3368                 return inset->isSpace();
3369         char_type const c = d->text_[pos];
3370         return lyx::isSpace(c);
3371 }
3372
3373
3374 Language const *
3375 Paragraph::getParLanguage(BufferParams const & bparams) const
3376 {
3377         if (!empty())
3378                 return getFirstFontSettings(bparams).language();
3379         // FIXME: we should check the prev par as well (Lgb)
3380         return bparams.language;
3381 }
3382
3383
3384 bool Paragraph::isRTL(BufferParams const & bparams) const
3385 {
3386         return getParLanguage(bparams)->rightToLeft()
3387                 && !inInset().getLayout().forceLTR();
3388 }
3389
3390
3391 void Paragraph::changeLanguage(BufferParams const & bparams,
3392                                Language const * from, Language const * to)
3393 {
3394         // change language including dummy font change at the end
3395         for (pos_type i = 0; i <= size(); ++i) {
3396                 Font font = getFontSettings(bparams, i);
3397                 if (font.language() == from) {
3398                         font.setLanguage(to);
3399                         setFont(i, font);
3400                         d->requestSpellCheck(i);
3401                 }
3402         }
3403 }
3404
3405
3406 bool Paragraph::isMultiLingual(BufferParams const & bparams) const
3407 {
3408         Language const * doc_language = bparams.language;
3409         FontList::const_iterator cit = d->fontlist_.begin();
3410         FontList::const_iterator end = d->fontlist_.end();
3411
3412         for (; cit != end; ++cit)
3413                 if (cit->font().language() != ignore_language &&
3414                     cit->font().language() != latex_language &&
3415                     cit->font().language() != doc_language)
3416                         return true;
3417         return false;
3418 }
3419
3420
3421 void Paragraph::getLanguages(std::set<Language const *> & languages) const
3422 {
3423         FontList::const_iterator cit = d->fontlist_.begin();
3424         FontList::const_iterator end = d->fontlist_.end();
3425
3426         for (; cit != end; ++cit) {
3427                 Language const * lang = cit->font().language();
3428                 if (lang != ignore_language &&
3429                     lang != latex_language)
3430                         languages.insert(lang);
3431         }
3432 }
3433
3434
3435 docstring Paragraph::asString(int options) const
3436 {
3437         return asString(0, size(), options);
3438 }
3439
3440
3441 docstring Paragraph::asString(pos_type beg, pos_type end, int options, const OutputParams *runparams) const
3442 {
3443         odocstringstream os;
3444
3445         if (beg == 0
3446             && options & AS_STR_LABEL
3447             && !d->params_.labelString().empty())
3448                 os << d->params_.labelString() << ' ';
3449
3450         for (pos_type i = beg; i < end; ++i) {
3451                 if ((options & AS_STR_SKIPDELETE) && isDeleted(i))
3452                         continue;
3453                 char_type const c = d->text_[i];
3454                 if (isPrintable(c) || c == '\t'
3455                     || (c == '\n' && (options & AS_STR_NEWLINES)))
3456                         os.put(c);
3457                 else if (c == META_INSET && (options & AS_STR_INSETS)) {
3458                         if (c == META_INSET && (options & AS_STR_PLAINTEXT)) {
3459                                 LASSERT(runparams != 0, return docstring());
3460                                 getInset(i)->plaintext(os, *runparams);
3461                         } else {
3462                                 getInset(i)->toString(os);
3463                         }
3464                 }
3465         }
3466
3467         return os.str();
3468 }
3469
3470
3471 void Paragraph::forOutliner(docstring & os, size_t const maxlen,
3472                             bool const shorten, bool const label) const
3473 {
3474         size_t tmplen = shorten ? maxlen + 1 : maxlen;
3475         if (label && !labelString().empty())
3476                 os += labelString() + ' ';
3477         for (pos_type i = 0; i < size() && os.length() < tmplen; ++i) {
3478                 if (isDeleted(i))
3479                         continue;
3480                 char_type const c = d->text_[i];
3481                 if (isPrintable(c))
3482                         os += c;
3483                 else if (c == META_INSET)
3484                         getInset(i)->forOutliner(os, tmplen, false);
3485         }
3486         if (shorten)
3487                 Text::shortenForOutliner(os, maxlen);
3488 }
3489
3490
3491 void Paragraph::setInsetOwner(Inset const * inset)
3492 {
3493         d->inset_owner_ = inset;
3494 }
3495
3496
3497 int Paragraph::id() const
3498 {
3499         return d->id_;
3500 }
3501
3502
3503 void Paragraph::setId(int id)
3504 {
3505         d->id_ = id;
3506 }
3507
3508
3509 Layout const & Paragraph::layout() const
3510 {
3511         return *d->layout_;
3512 }
3513
3514
3515 void Paragraph::setLayout(Layout const & layout)
3516 {
3517         d->layout_ = &layout;
3518 }
3519
3520
3521 void Paragraph::setDefaultLayout(DocumentClass const & tc)
3522 {
3523         setLayout(tc.defaultLayout());
3524 }
3525
3526
3527 void Paragraph::setPlainLayout(DocumentClass const & tc)
3528 {
3529         setLayout(tc.plainLayout());
3530 }
3531
3532
3533 void Paragraph::setPlainOrDefaultLayout(DocumentClass const & tclass)
3534 {
3535         if (usePlainLayout())
3536                 setPlainLayout(tclass);
3537         else
3538                 setDefaultLayout(tclass);
3539 }
3540
3541
3542 Inset const & Paragraph::inInset() const
3543 {
3544         LBUFERR(d->inset_owner_);
3545         return *d->inset_owner_;
3546 }
3547
3548
3549 ParagraphParameters & Paragraph::params()
3550 {
3551         return d->params_;
3552 }
3553
3554
3555 ParagraphParameters const & Paragraph::params() const
3556 {
3557         return d->params_;
3558 }
3559
3560
3561 bool Paragraph::isFreeSpacing() const
3562 {
3563         if (d->layout_->free_spacing)
3564                 return true;
3565         return d->inset_owner_ && d->inset_owner_->isFreeSpacing();
3566 }
3567
3568
3569 bool Paragraph::allowEmpty() const
3570 {
3571         if (d->layout_->keepempty)
3572                 return true;
3573         return d->inset_owner_ && d->inset_owner_->allowEmpty();
3574 }
3575
3576
3577 bool Paragraph::brokenBiblio() const
3578 {
3579         // there is a problem if there is no bibitem at position 0 or
3580         // if there is another bibitem in the paragraph.
3581         return d->layout_->labeltype == LABEL_BIBLIO
3582                 && (d->insetlist_.find(BIBITEM_CODE) != 0
3583                     || d->insetlist_.find(BIBITEM_CODE, 1) > 0);
3584 }
3585
3586
3587 int Paragraph::fixBiblio(Buffer const & buffer)
3588 {
3589         // FIXME: What about the case where paragraph is not BIBLIO
3590         // but there is an InsetBibitem?
3591         // FIXME: when there was already an inset at 0, the return value is 1,
3592         // which does not tell whether another inset has been remove; the
3593         // cursor cannot be correctly updated.
3594
3595         if (d->layout_->labeltype != LABEL_BIBLIO)
3596                 return 0;
3597
3598         bool const track_changes = buffer.params().track_changes;
3599         int bibitem_pos = d->insetlist_.find(BIBITEM_CODE);
3600         bool const hasbibitem0 = bibitem_pos == 0;
3601
3602         if (hasbibitem0) {
3603                 bibitem_pos = d->insetlist_.find(BIBITEM_CODE, 1);
3604                 // There was an InsetBibitem at pos 0, and no other one => OK
3605                 if (bibitem_pos == -1)
3606                         return 0;
3607                 // there is a bibitem at the 0 position, but since
3608                 // there is a second one, we copy the second on the
3609                 // first. We're assuming there are at most two of
3610                 // these, which there should be.
3611                 // FIXME: why does it make sense to do that rather
3612                 // than keep the first? (JMarc)
3613                 Inset * inset = releaseInset(bibitem_pos);
3614                 d->insetlist_.begin()->inset = inset;
3615                 return -bibitem_pos;
3616         }
3617
3618         // We need to create an inset at the beginning
3619         Inset * inset = 0;
3620         if (bibitem_pos > 0) {
3621                 // there was one somewhere in the paragraph, let's move it
3622                 inset = d->insetlist_.release(bibitem_pos);
3623                 eraseChar(bibitem_pos, track_changes);
3624         } else
3625                 // make a fresh one
3626                 inset = new InsetBibitem(const_cast<Buffer *>(&buffer),
3627                                          InsetCommandParams(BIBITEM_CODE));
3628
3629         Font font(inherit_font, buffer.params().language);
3630         insertInset(0, inset, font, Change(track_changes ? Change::INSERTED 
3631                                                    : Change::UNCHANGED));
3632
3633         return 1;
3634 }
3635
3636
3637 void Paragraph::checkAuthors(AuthorList const & authorList)
3638 {
3639         d->changes_.checkAuthors(authorList);
3640 }
3641
3642
3643 bool Paragraph::isChanged(pos_type pos) const
3644 {
3645         return lookupChange(pos).changed();
3646 }
3647
3648
3649 bool Paragraph::isInserted(pos_type pos) const
3650 {
3651         return lookupChange(pos).inserted();
3652 }
3653
3654
3655 bool Paragraph::isDeleted(pos_type pos) const
3656 {
3657         return lookupChange(pos).deleted();
3658 }
3659
3660
3661 InsetList const & Paragraph::insetList() const
3662 {
3663         return d->insetlist_;
3664 }
3665
3666
3667 void Paragraph::setBuffer(Buffer & b)
3668 {
3669         d->insetlist_.setBuffer(b);
3670 }
3671
3672
3673 void Paragraph::resetBuffer()
3674 {
3675         d->insetlist_.resetBuffer();
3676 }
3677
3678
3679 Inset * Paragraph::releaseInset(pos_type pos)
3680 {
3681         Inset * inset = d->insetlist_.release(pos);
3682         /// does not honour change tracking!
3683         eraseChar(pos, false);
3684         return inset;
3685 }
3686
3687
3688 Inset * Paragraph::getInset(pos_type pos)
3689 {
3690         return (pos < pos_type(d->text_.size()) && d->text_[pos] == META_INSET)
3691                  ? d->insetlist_.get(pos) : 0;
3692 }
3693
3694
3695 Inset const * Paragraph::getInset(pos_type pos) const
3696 {
3697         return (pos < pos_type(d->text_.size()) && d->text_[pos] == META_INSET)
3698                  ? d->insetlist_.get(pos) : 0;
3699 }
3700
3701
3702 void Paragraph::changeCase(BufferParams const & bparams, pos_type pos,
3703                 pos_type & right, TextCase action)
3704 {
3705         // process sequences of modified characters; in change
3706         // tracking mode, this approach results in much better
3707         // usability than changing case on a char-by-char basis
3708         // We also need to track the current font, since font
3709         // changes within sequences can occur.
3710         vector<pair<char_type, Font> > changes;
3711
3712         bool const trackChanges = bparams.track_changes;
3713
3714         bool capitalize = true;
3715
3716         for (; pos < right; ++pos) {
3717                 char_type oldChar = d->text_[pos];
3718                 char_type newChar = oldChar;
3719
3720                 // ignore insets and don't play with deleted text!
3721                 if (oldChar != META_INSET && !isDeleted(pos)) {
3722                         switch (action) {
3723                                 case text_lowercase:
3724                                         newChar = lowercase(oldChar);
3725                                         break;
3726                                 case text_capitalization:
3727                                         if (capitalize) {
3728                                                 newChar = uppercase(oldChar);
3729                                                 capitalize = false;
3730                                         }
3731                                         break;
3732                                 case text_uppercase:
3733                                         newChar = uppercase(oldChar);
3734                                         break;
3735                         }
3736                 }
3737
3738                 if (isWordSeparator(pos) || isDeleted(pos)) {
3739                         // permit capitalization again
3740                         capitalize = true;
3741                 }
3742
3743                 if (oldChar != newChar) {
3744                         changes.push_back(make_pair(newChar, getFontSettings(bparams, pos)));
3745                         if (pos != right - 1)
3746                                 continue;
3747                         // step behind the changing area
3748                         pos++;
3749                 }
3750
3751                 int erasePos = pos - changes.size();
3752                 for (size_t i = 0; i < changes.size(); i++) {
3753                         insertChar(pos, changes[i].first,
3754                                    changes[i].second,
3755                                    trackChanges);
3756                         if (!eraseChar(erasePos, trackChanges)) {
3757                                 ++erasePos;
3758                                 ++pos; // advance
3759                                 ++right; // expand selection
3760                         }
3761                 }
3762                 changes.clear();
3763         }
3764 }
3765
3766
3767 int Paragraph::find(docstring const & str, bool cs, bool mw,
3768                 pos_type start_pos, bool del) const
3769 {
3770         pos_type pos = start_pos;
3771         int const strsize = str.length();
3772         int i = 0;
3773         pos_type const parsize = d->text_.size();
3774         for (i = 0; i < strsize && pos < parsize; ++i, ++pos) {
3775                 // Ignore "invisible" letters such as ligature breaks
3776                 // and hyphenation chars while searching
3777                 while (pos < parsize - 1 && isInset(pos)) {
3778                         odocstringstream os;
3779                         getInset(pos)->toString(os);
3780                         if (!getInset(pos)->isLetter() || !os.str().empty())
3781                                 break;
3782                         pos++;
3783                 }
3784                 if (cs && str[i] != d->text_[pos])
3785                         break;
3786                 if (!cs && uppercase(str[i]) != uppercase(d->text_[pos]))
3787                         break;
3788                 if (!del && isDeleted(pos))
3789                         break;
3790         }
3791
3792         if (i != strsize)
3793                 return 0;
3794
3795         // if necessary, check whether string matches word
3796         if (mw) {
3797                 if (start_pos > 0 && !isWordSeparator(start_pos - 1))
3798                         return 0;
3799                 if (pos < parsize
3800                         && !isWordSeparator(pos))
3801                         return 0;
3802         }
3803
3804         return pos - start_pos;
3805 }
3806
3807
3808 char_type Paragraph::getChar(pos_type pos) const
3809 {
3810         return d->text_[pos];
3811 }
3812
3813
3814 pos_type Paragraph::size() const
3815 {
3816         return d->text_.size();
3817 }
3818
3819
3820 bool Paragraph::empty() const
3821 {
3822         return d->text_.empty();
3823 }
3824
3825
3826 bool Paragraph::isInset(pos_type pos) const
3827 {
3828         return d->text_[pos] == META_INSET;
3829 }
3830
3831
3832 bool Paragraph::isSeparator(pos_type pos) const
3833 {
3834         //FIXME: Are we sure this can be the only separator?
3835         return d->text_[pos] == ' ';
3836 }
3837
3838
3839 void Paragraph::deregisterWords()
3840 {
3841         Private::LangWordsMap::const_iterator itl = d->words_.begin();
3842         Private::LangWordsMap::const_iterator ite = d->words_.end();
3843         for (; itl != ite; ++itl) {
3844                 WordList & wl = theWordList(itl->first);
3845                 Private::Words::const_iterator it = (itl->second).begin();
3846                 Private::Words::const_iterator et = (itl->second).end();
3847                 for (; it != et; ++it)
3848                         wl.remove(*it);
3849         }
3850         d->words_.clear();
3851 }
3852
3853
3854 void Paragraph::locateWord(pos_type & from, pos_type & to,
3855         word_location const loc) const
3856 {
3857         switch (loc) {
3858         case WHOLE_WORD_STRICT:
3859                 if (from == 0 || from == size()
3860                     || isWordSeparator(from)
3861                     || isWordSeparator(from - 1)) {
3862                         to = from;
3863                         return;
3864                 }
3865                 // no break here, we go to the next
3866
3867         case WHOLE_WORD:
3868                 // If we are already at the beginning of a word, do nothing
3869                 if (!from || isWordSeparator(from - 1))
3870                         break;
3871                 // no break here, we go to the next
3872
3873         case PREVIOUS_WORD:
3874                 // always move the cursor to the beginning of previous word
3875                 while (from && !isWordSeparator(from - 1))
3876                         --from;
3877                 break;
3878         case NEXT_WORD:
3879                 LYXERR0("Paragraph::locateWord: NEXT_WORD not implemented yet");
3880                 break;
3881         case PARTIAL_WORD:
3882                 // no need to move the 'from' cursor
3883                 break;
3884         }
3885         to = from;
3886         while (to < size() && !isWordSeparator(to))
3887                 ++to;
3888 }
3889
3890
3891 void Paragraph::collectWords()
3892 {
3893         for (pos_type pos = 0; pos < size(); ++pos) {
3894                 if (isWordSeparator(pos))
3895                         continue;
3896                 pos_type from = pos;
3897                 locateWord(from, pos, WHOLE_WORD);
3898                 // Work around MSVC warning: The statement
3899                 // if (pos < from + lyxrc.completion_minlength)
3900                 // triggers a signed vs. unsigned warning.
3901                 // I don't know why this happens, it could be a MSVC bug, or
3902                 // related to LLP64 (windows) vs. LP64 (unix) programming
3903                 // model, or the C++ standard might be ambigous in the section
3904                 // defining the "usual arithmetic conversions". However, using
3905                 // a temporary variable is safe and works on all compilers.
3906                 pos_type const endpos = from + lyxrc.completion_minlength;
3907                 if (pos < endpos)
3908                         continue;
3909                 FontList::const_iterator cit = d->fontlist_.fontIterator(from);
3910                 if (cit == d->fontlist_.end())
3911                         return;
3912                 Language const * lang = cit->font().language();
3913                 docstring const word = asString(from, pos, AS_STR_NONE);
3914                 d->words_[lang->lang()].insert(word);
3915         }
3916 }
3917
3918
3919 void Paragraph::registerWords()
3920 {
3921         Private::LangWordsMap::const_iterator itl = d->words_.begin();
3922         Private::LangWordsMap::const_iterator ite = d->words_.end();
3923         for (; itl != ite; ++itl) {
3924                 WordList & wl = theWordList(itl->first);
3925                 Private::Words::const_iterator it = (itl->second).begin();
3926                 Private::Words::const_iterator et = (itl->second).end();
3927                 for (; it != et; ++it)
3928                         wl.insert(*it);
3929         }
3930 }
3931
3932
3933 void Paragraph::updateWords()
3934 {
3935         deregisterWords();
3936         collectWords();
3937         registerWords();
3938 }
3939
3940
3941 void Paragraph::Private::appendSkipPosition(SkipPositions & skips, pos_type const pos) const
3942 {
3943         SkipPositionsIterator begin = skips.begin();
3944         SkipPositions::iterator end = skips.end();
3945         if (pos > 0 && begin < end) {
3946                 --end;
3947                 if (end->last == pos - 1) {
3948                         end->last = pos;
3949                         return;
3950                 }
3951         }
3952         skips.insert(end, FontSpan(pos, pos));
3953 }
3954
3955
3956 Language * Paragraph::Private::locateSpellRange(
3957         pos_type & from, pos_type & to,
3958         SkipPositions & skips) const
3959 {
3960         // skip leading white space
3961         while (from < to && owner_->isWordSeparator(from))
3962                 ++from;
3963         // don't check empty range
3964         if (from >= to)
3965                 return 0;
3966         // get current language
3967         Language * lang = getSpellLanguage(from);
3968         pos_type last = from;
3969         bool samelang = true;
3970         bool sameinset = true;
3971         while (last < to && samelang && sameinset) {
3972                 // hop to end of word
3973                 while (last < to && !owner_->isWordSeparator(last)) {
3974                         if (owner_->getInset(last)) {
3975                                 appendSkipPosition(skips, last);
3976                         } else if (owner_->isDeleted(last)) {
3977                                 appendSkipPosition(skips, last);
3978                         }
3979                         ++last;
3980                 }
3981                 // hop to next word while checking for insets
3982                 while (sameinset && last < to && owner_->isWordSeparator(last)) {
3983                         if (Inset const * inset = owner_->getInset(last))
3984                                 sameinset = inset->isChar() && inset->isLetter();
3985                         if (sameinset && owner_->isDeleted(last)) {
3986                                 appendSkipPosition(skips, last);
3987                         }
3988                         if (sameinset)
3989                                 last++;
3990                 }
3991                 if (sameinset && last < to) {
3992                         // now check for language change
3993                         samelang = lang == getSpellLanguage(last);
3994                 }
3995         }
3996         // if language change detected backstep is needed
3997         if (!samelang)
3998                 --last;
3999         to = last;
4000         return lang;
4001 }
4002
4003
4004 Language * Paragraph::Private::getSpellLanguage(pos_type const from) const
4005 {
4006         Language * lang =
4007                 const_cast<Language *>(owner_->getFontSettings(
4008                         inset_owner_->buffer().params(), from).language());
4009         if (lang == inset_owner_->buffer().params().language
4010                 && !lyxrc.spellchecker_alt_lang.empty()) {
4011                 string lang_code;
4012                 string const lang_variety =
4013                         split(lyxrc.spellchecker_alt_lang, lang_code, '-');
4014                 lang->setCode(lang_code);
4015                 lang->setVariety(lang_variety);
4016         }
4017         return lang;
4018 }
4019
4020
4021 void Paragraph::requestSpellCheck(pos_type pos)
4022 {
4023         d->requestSpellCheck(pos);
4024 }
4025
4026
4027 bool Paragraph::needsSpellCheck() const
4028 {
4029         SpellChecker::ChangeNumber speller_change_number = 0;
4030         if (theSpellChecker())
4031                 speller_change_number = theSpellChecker()->changeNumber();
4032         if (speller_change_number > d->speller_state_.currentChangeNumber()) {
4033                 d->speller_state_.needsCompleteRefresh(speller_change_number);
4034         }
4035         return d->needsSpellCheck();
4036 }
4037
4038
4039 bool Paragraph::Private::ignoreWord(docstring const & word) const
4040 {
4041         // Ignore words with digits
4042         // FIXME: make this customizable
4043         // (note that some checkers ignore words with digits by default)
4044         docstring::const_iterator cit = word.begin();
4045         docstring::const_iterator const end = word.end();
4046         for (; cit != end; ++cit) {
4047                 if (isNumber((*cit)))
4048                         return true;
4049         }
4050         return false;
4051 }
4052
4053
4054 SpellChecker::Result Paragraph::spellCheck(pos_type & from, pos_type & to,
4055         WordLangTuple & wl, docstring_list & suggestions,
4056         bool do_suggestion, bool check_learned) const
4057 {
4058         SpellChecker::Result result = SpellChecker::WORD_OK;
4059         SpellChecker * speller = theSpellChecker();
4060         if (!speller)
4061                 return result;
4062
4063         if (!d->layout_->spellcheck || !inInset().allowSpellCheck())
4064                 return result;
4065
4066         locateWord(from, to, WHOLE_WORD);
4067         if (from == to || from >= size())
4068                 return result;
4069
4070         docstring word = asString(from, to, AS_STR_INSETS | AS_STR_SKIPDELETE);
4071         Language * lang = d->getSpellLanguage(from);
4072
4073         wl = WordLangTuple(word, lang);
4074
4075         if (word.empty())
4076                 return result;
4077
4078         if (needsSpellCheck() || check_learned) {
4079                 pos_type end = to;
4080                 if (!d->ignoreWord(word)) {
4081                         bool const trailing_dot = to < size() && d->text_[to] == '.';
4082                         result = speller->check(wl);
4083                         if (SpellChecker::misspelled(result) && trailing_dot) {
4084                                 wl = WordLangTuple(word.append(from_ascii(".")), lang);
4085                                 result = speller->check(wl);
4086                                 if (!SpellChecker::misspelled(result)) {
4087                                         LYXERR(Debug::GUI, "misspelled word is correct with dot: \"" <<
4088                                            word << "\" [" <<
4089                                            from << ".." << to << "]");
4090                                 } else {
4091                                         // spell check with dot appended failed too
4092                                         // restore original word/lang value
4093                                         word = asString(from, to, AS_STR_INSETS | AS_STR_SKIPDELETE);
4094                                         wl = WordLangTuple(word, lang);
4095                                 }
4096                         }
4097                 }
4098                 if (!SpellChecker::misspelled(result)) {
4099                         // area up to the begin of the next word is not misspelled
4100                         while (end < size() && isWordSeparator(end))
4101                                 ++end;
4102                 }
4103                 d->setMisspelled(from, end, result);
4104         } else {
4105                 result = d->speller_state_.getState(from);
4106         }
4107
4108         if (do_suggestion)
4109                 suggestions.clear();
4110
4111         if (SpellChecker::misspelled(result)) {
4112                 LYXERR(Debug::GUI, "misspelled word: \"" <<
4113                            word << "\" [" <<
4114                            from << ".." << to << "]");
4115                 if (do_suggestion)
4116                         speller->suggest(wl, suggestions);
4117         }
4118         return result;
4119 }
4120
4121
4122 void Paragraph::Private::markMisspelledWords(
4123         pos_type const & first, pos_type const & last,
4124         SpellChecker::Result result,
4125         docstring const & word,
4126         SkipPositions const & skips)
4127 {
4128         if (!SpellChecker::misspelled(result)) {
4129                 setMisspelled(first, last, SpellChecker::WORD_OK);
4130                 return;
4131         }
4132         int snext = first;
4133         SpellChecker * speller = theSpellChecker();
4134         // locate and enumerate the error positions
4135         int nerrors = speller->numMisspelledWords();
4136         int numskipped = 0;
4137         SkipPositionsIterator it = skips.begin();
4138         SkipPositionsIterator et = skips.end();
4139         for (int index = 0; index < nerrors; ++index) {
4140                 int wstart;
4141                 int wlen = 0;
4142                 speller->misspelledWord(index, wstart, wlen);
4143                 /// should not happen if speller supports range checks
4144                 if (!wlen) continue;
4145                 docstring const misspelled = word.substr(wstart, wlen);
4146                 wstart += first + numskipped;
4147                 if (snext < wstart) {
4148                         /// mark the range of correct spelling
4149                         numskipped += countSkips(it, et, wstart);
4150                         setMisspelled(snext,
4151                                 wstart - 1, SpellChecker::WORD_OK);
4152                 }
4153                 snext = wstart + wlen;
4154                 numskipped += countSkips(it, et, snext);
4155                 /// mark the range of misspelling
4156                 setMisspelled(wstart, snext, result);
4157                 LYXERR(Debug::GUI, "misspelled word: \"" <<
4158                            misspelled << "\" [" <<
4159                            wstart << ".." << (snext-1) << "]");
4160                 ++snext;
4161         }
4162         if (snext <= last) {
4163                 /// mark the range of correct spelling at end
4164                 setMisspelled(snext, last, SpellChecker::WORD_OK);
4165         }
4166 }
4167
4168
4169 void Paragraph::spellCheck() const
4170 {
4171         SpellChecker * speller = theSpellChecker();
4172         if (!speller || empty() ||!needsSpellCheck())
4173                 return;
4174         pos_type start;
4175         pos_type endpos;
4176         d->rangeOfSpellCheck(start, endpos);
4177         if (speller->canCheckParagraph()) {
4178                 // loop until we leave the range
4179                 for (pos_type first = start; first < endpos; ) {
4180                         pos_type last = endpos;
4181                         Private::SkipPositions skips;
4182                         Language * lang = d->locateSpellRange(first, last, skips);
4183                         if (first >= endpos)
4184                                 break;
4185                         // start the spell checker on the unit of meaning
4186                         docstring word = asString(first, last, AS_STR_INSETS + AS_STR_SKIPDELETE);
4187                         WordLangTuple wl = WordLangTuple(word, lang);
4188                         SpellChecker::Result result = word.size() ?
4189                                 speller->check(wl) : SpellChecker::WORD_OK;
4190                         d->markMisspelledWords(first, last, result, word, skips);
4191                         first = ++last;
4192                 }
4193         } else {
4194                 static docstring_list suggestions;
4195                 pos_type to = endpos;
4196                 while (start < endpos) {
4197                         WordLangTuple wl;
4198                         spellCheck(start, to, wl, suggestions, false);
4199                         start = to + 1;
4200                 }
4201         }
4202         d->readySpellCheck();
4203 }
4204
4205
4206 bool Paragraph::isMisspelled(pos_type pos, bool check_boundary) const
4207 {
4208         bool result = SpellChecker::misspelled(d->speller_state_.getState(pos));
4209         if (result || pos <= 0 || pos > size())
4210                 return result;
4211         if (check_boundary && (pos == size() || isWordSeparator(pos)))
4212                 result = SpellChecker::misspelled(d->speller_state_.getState(pos - 1));
4213         return result;
4214 }
4215
4216
4217 string Paragraph::magicLabel() const
4218 {
4219         stringstream ss;
4220         ss << "magicparlabel-" << id();
4221         return ss.str();
4222 }
4223
4224
4225 } // namespace lyx