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