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