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