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