]> git.lyx.org Git - lyx.git/blob - src/Paragraph.cpp
Remove half a comment?
[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 "VSpace.h"
47 #include "WordLangTuple.h"
48 #include "WordList.h"
49
50 #include "frontends/alert.h"
51
52 #include "insets/InsetBibitem.h"
53 #include "insets/InsetLabel.h"
54
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 // Paragraph::Private
79 //
80 /////////////////////////////////////////////////////////////////////
81
82 class Paragraph::Private
83 {
84 public:
85         ///
86         Private(Paragraph * owner, Layout const & layout);
87         /// "Copy constructor"
88         Private(Private const &, Paragraph * owner);
89         /// Copy constructor from \p beg  to \p end
90         Private(Private const &, Paragraph * owner, pos_type beg, pos_type end);
91
92         ///
93         void insertChar(pos_type pos, char_type c, Change const & change);
94
95         /// Output the surrogate pair formed by \p c and \p next to \p os.
96         /// \return the number of characters written.
97         int latexSurrogatePair(odocstream & os, char_type c, char_type next,
98                                OutputParams const &);
99
100         /// Output a space in appropriate formatting (or a surrogate pair
101         /// if the next character is a combining character).
102         /// \return whether a surrogate pair was output.
103         bool simpleTeXBlanks(OutputParams const &,
104                              odocstream &, TexRow & texrow,
105                              pos_type i,
106                              unsigned int & column,
107                              Font const & font,
108                              Layout const & style);
109
110         /// Output consecutive unicode chars, belonging to the same script as
111         /// specified by the latex macro \p ltx, to \p os starting from \p i.
112         /// \return the number of characters written.
113         int writeScriptChars(odocstream & os, docstring const & ltx,
114                            Change const &, Encoding const &, pos_type & i);
115
116         /// This could go to ParagraphParameters if we want to.
117         int startTeXParParams(BufferParams const &, odocstream &, TexRow &,
118                               OutputParams const &) const;
119
120         /// This could go to ParagraphParameters if we want to.
121         int endTeXParParams(BufferParams const &, odocstream &, TexRow &,
122                             OutputParams const &) const;
123
124         ///
125         void latexInset(BufferParams const &,
126                                    odocstream &,
127                                    TexRow & texrow, OutputParams &,
128                                    Font & running_font,
129                                    Font & basefont,
130                                    Font const & outerfont,
131                                    bool & open_font,
132                                    Change & running_change,
133                                    Layout const & style,
134                                    pos_type & i,
135                                    unsigned int & column);
136
137         ///
138         void latexSpecialChar(
139                                    odocstream & os,
140                                    OutputParams const & runparams,
141                                    Font const & running_font,
142                                    Change const & running_change,
143                                    Layout const & style,
144                                    pos_type & i,
145                                    unsigned int & column);
146
147         ///
148         bool latexSpecialT1(
149                 char_type const c,
150                 odocstream & os,
151                 pos_type i,
152                 unsigned int & column);
153         ///
154         bool latexSpecialTypewriter(
155                 char_type const c,
156                 odocstream & os,
157                 pos_type i,
158                 unsigned int & column);
159         ///
160         bool latexSpecialPhrase(
161                 odocstream & os,
162                 pos_type & i,
163                 unsigned int & column,
164                 OutputParams const & runparams);
165
166         ///
167         void validate(LaTeXFeatures & features) const;
168
169         /// Checks if the paragraph contains only text and no inset or font change.
170         bool onlyText(Buffer const & buf, Font const & outerfont,
171                       pos_type initial) const;
172
173         /// match a string against a particular point in the paragraph
174         bool isTextAt(string const & str, pos_type pos) const;
175
176
177         InsetCode ownerCode() const
178         {
179                 return inset_owner_ ? inset_owner_->lyxCode() : NO_CODE;
180         }
181         
182         /// Which Paragraph owns us?
183         Paragraph * owner_;
184
185         /// In which Inset?
186         Inset const * inset_owner_;
187
188         ///
189         FontList fontlist_;
190
191         ///
192         int id_;
193
194         ///
195         ParagraphParameters params_;
196
197         /// for recording and looking up changes
198         Changes changes_;
199
200         ///
201         InsetList insetlist_;
202
203         /// end of label
204         pos_type begin_of_body_;
205
206         typedef docstring TextContainer;
207         ///
208         TextContainer text_;
209         
210         typedef set<docstring> Words;
211         ///
212         map<Language, Words> words_;
213         ///
214         Layout const * layout_;
215 };
216
217
218 namespace {
219
220 struct special_phrase {
221         string phrase;
222         docstring macro;
223         bool builtin;
224 };
225
226 special_phrase const special_phrases[] = {
227         { "LyX", from_ascii("\\LyX{}"), false },
228         { "TeX", from_ascii("\\TeX{}"), true },
229         { "LaTeX2e", from_ascii("\\LaTeXe{}"), true },
230         { "LaTeX", from_ascii("\\LaTeX{}"), true },
231 };
232
233 size_t const phrases_nr = sizeof(special_phrases)/sizeof(special_phrase);
234
235 } // namespace anon
236
237
238 Paragraph::Private::Private(Paragraph * owner, Layout const & layout)
239         : owner_(owner), inset_owner_(0), id_(-1), begin_of_body_(0), layout_(&layout)
240 {
241         text_.reserve(100);
242 }
243
244
245 // Initialization of the counter for the paragraph id's,
246 //
247 // FIXME: There should be a more intelligent way to generate and use the
248 // paragraph ids per buffer instead a global static counter for all InsetText
249 // in the running program.
250 static int paragraph_id = -1;
251
252 Paragraph::Private::Private(Private const & p, Paragraph * owner)
253         : owner_(owner), inset_owner_(p.inset_owner_), fontlist_(p.fontlist_), 
254           params_(p.params_), changes_(p.changes_), insetlist_(p.insetlist_),
255           begin_of_body_(p.begin_of_body_), text_(p.text_), words_(p.words_),
256           layout_(p.layout_)
257 {
258         id_ = ++paragraph_id;
259 }
260
261
262 Paragraph::Private::Private(Private const & p, Paragraph * owner,
263         pos_type beg, pos_type end)
264         : owner_(owner), inset_owner_(p.inset_owner_),
265           params_(p.params_), changes_(p.changes_),
266           insetlist_(p.insetlist_, beg, end),
267           begin_of_body_(p.begin_of_body_), words_(p.words_),
268           layout_(p.layout_)
269 {
270         id_ = ++paragraph_id;
271         if (beg >= pos_type(p.text_.size()))
272                 return;
273         text_ = p.text_.substr(beg, end - beg);
274
275         FontList::const_iterator fcit = fontlist_.begin();
276         FontList::const_iterator fend = fontlist_.end();
277         for (; fcit != fend; ++fcit) {
278                 if (fcit->pos() < beg)
279                         continue;
280                 if (fcit->pos() >= end) {
281                         // Add last entry in the fontlist_.
282                         fontlist_.set(text_.size() - 1, fcit->font());
283                         break;
284                 }
285                 // Add a new entry in the fontlist_.
286                 fontlist_.set(fcit->pos() - beg, fcit->font());
287         }
288 }
289
290
291 void Paragraph::addChangesToToc(DocIterator const & cdit,
292         Buffer const & buf) const
293 {
294         d->changes_.addToToc(cdit, buf);
295 }
296
297
298 bool Paragraph::isDeleted(pos_type start, pos_type end) const
299 {
300         LASSERT(start >= 0 && start <= size(), /**/);
301         LASSERT(end > start && end <= size() + 1, /**/);
302
303         return d->changes_.isDeleted(start, end);
304 }
305
306
307 bool Paragraph::isChanged(pos_type start, pos_type end) const
308 {
309         LASSERT(start >= 0 && start <= size(), /**/);
310         LASSERT(end > start && end <= size() + 1, /**/);
311
312         return d->changes_.isChanged(start, end);
313 }
314
315
316 bool Paragraph::isMergedOnEndOfParDeletion(bool trackChanges) const
317 {
318         // keep the logic here in sync with the logic of eraseChars()
319         if (!trackChanges)
320                 return true;
321
322         Change const change = d->changes_.lookup(size());
323         return change.inserted() && change.currentAuthor();
324 }
325
326
327 void Paragraph::setChange(Change const & change)
328 {
329         // beware of the imaginary end-of-par character!
330         d->changes_.set(change, 0, size() + 1);
331
332         /*
333          * Propagate the change recursively - but not in case of DELETED!
334          *
335          * Imagine that your co-author makes changes in an existing inset. He
336          * sends your document to you and you come to the conclusion that the
337          * inset should go completely. If you erase it, LyX must not delete all
338          * text within the inset. Otherwise, the change tracked insertions of
339          * your co-author get lost and there is no way to restore them later.
340          *
341          * Conclusion: An inset's content should remain untouched if you delete it
342          */
343
344         if (!change.deleted()) {
345                 for (pos_type pos = 0; pos < size(); ++pos) {
346                         if (Inset * inset = getInset(pos))
347                                 inset->setChange(change);
348                 }
349         }
350 }
351
352
353 void Paragraph::setChange(pos_type pos, Change const & change)
354 {
355         LASSERT(pos >= 0 && pos <= size(), /**/);
356         d->changes_.set(change, pos);
357
358         // see comment in setChange(Change const &) above
359         if (!change.deleted() && pos < size())
360                         if (Inset * inset = getInset(pos))
361                                 inset->setChange(change);
362 }
363
364
365 Change const & Paragraph::lookupChange(pos_type pos) const
366 {
367         LASSERT(pos >= 0 && pos <= size(), /**/);
368         return d->changes_.lookup(pos);
369 }
370
371
372 void Paragraph::acceptChanges(pos_type start, pos_type end)
373 {
374         LASSERT(start >= 0 && start <= size(), /**/);
375         LASSERT(end > start && end <= size() + 1, /**/);
376
377         for (pos_type pos = start; pos < end; ++pos) {
378                 switch (lookupChange(pos).type) {
379                         case Change::UNCHANGED:
380                                 // accept changes in nested inset
381                                 if (Inset * inset = getInset(pos))
382                                         inset->acceptChanges();
383                                 break;
384
385                         case Change::INSERTED:
386                                 d->changes_.set(Change(Change::UNCHANGED), pos);
387                                 // also accept changes in nested inset
388                                 if (Inset * inset = getInset(pos))
389                                         inset->acceptChanges();
390                                 break;
391
392                         case Change::DELETED:
393                                 // Suppress access to non-existent
394                                 // "end-of-paragraph char"
395                                 if (pos < size()) {
396                                         eraseChar(pos, false);
397                                         --end;
398                                         --pos;
399                                 }
400                                 break;
401                 }
402
403         }
404 }
405
406
407 void Paragraph::rejectChanges(pos_type start, pos_type end)
408 {
409         LASSERT(start >= 0 && start <= size(), /**/);
410         LASSERT(end > start && end <= size() + 1, /**/);
411
412         for (pos_type pos = start; pos < end; ++pos) {
413                 switch (lookupChange(pos).type) {
414                         case Change::UNCHANGED:
415                                 // reject changes in nested inset
416                                 if (Inset * inset = getInset(pos))
417                                                 inset->rejectChanges();
418                                 break;
419
420                         case Change::INSERTED:
421                                 // Suppress access to non-existent
422                                 // "end-of-paragraph char"
423                                 if (pos < size()) {
424                                         eraseChar(pos, false);
425                                         --end;
426                                         --pos;
427                                 }
428                                 break;
429
430                         case Change::DELETED:
431                                 d->changes_.set(Change(Change::UNCHANGED), pos);
432
433                                 // Do NOT reject changes within a deleted inset!
434                                 // There may be insertions of a co-author inside of it!
435
436                                 break;
437                 }
438         }
439 }
440
441
442 void Paragraph::Private::insertChar(pos_type pos, char_type c,
443                 Change const & change)
444 {
445         LASSERT(pos >= 0 && pos <= int(text_.size()), /**/);
446
447         // track change
448         changes_.insert(change, pos);
449
450         // This is actually very common when parsing buffers (and
451         // maybe inserting ascii text)
452         if (pos == pos_type(text_.size())) {
453                 // when appending characters, no need to update tables
454                 text_.push_back(c);
455                 return;
456         }
457
458         text_.insert(text_.begin() + pos, c);
459
460         // Update the font table.
461         fontlist_.increasePosAfterPos(pos);
462
463         // Update the insets
464         insetlist_.increasePosAfterPos(pos);
465 }
466
467
468 bool Paragraph::insertInset(pos_type pos, Inset * inset,
469                                    Change const & change)
470 {
471         LASSERT(inset, /**/);
472         LASSERT(pos >= 0 && pos <= size(), /**/);
473
474         // Paragraph::insertInset() can be used in cut/copy/paste operation where
475         // d->inset_owner_ is not set yet.
476         if (d->inset_owner_ && !d->inset_owner_->insetAllowed(inset->lyxCode()))
477                 return false;
478
479         d->insertChar(pos, META_INSET, change);
480         LASSERT(d->text_[pos] == META_INSET, /**/);
481
482         // Add a new entry in the insetlist_.
483         d->insetlist_.insert(inset, pos);
484         return true;
485 }
486
487
488 bool Paragraph::eraseChar(pos_type pos, bool trackChanges)
489 {
490         LASSERT(pos >= 0 && pos <= size(), return false);
491
492         // keep the logic here in sync with the logic of isMergedOnEndOfParDeletion()
493
494         if (trackChanges) {
495                 Change change = d->changes_.lookup(pos);
496
497                 // set the character to DELETED if
498                 //  a) it was previously unchanged or
499                 //  b) it was inserted by a co-author
500
501                 if (!change.changed() ||
502                       (change.inserted() && !change.currentAuthor())) {
503                         setChange(pos, Change(Change::DELETED));
504                         return false;
505                 }
506
507                 if (change.deleted())
508                         return false;
509         }
510
511         // Don't physically access the imaginary end-of-paragraph character.
512         // eraseChar() can only mark it as DELETED. A physical deletion of
513         // end-of-par must be handled externally.
514         if (pos == size()) {
515                 return false;
516         }
517
518         // track change
519         d->changes_.erase(pos);
520
521         // if it is an inset, delete the inset entry
522         if (d->text_[pos] == META_INSET)
523                 d->insetlist_.erase(pos);
524
525         d->text_.erase(d->text_.begin() + pos);
526
527         // Update the fontlist_
528         d->fontlist_.erase(pos);
529
530         // Update the insetlist_
531         d->insetlist_.decreasePosAfterPos(pos);
532
533         return true;
534 }
535
536
537 int Paragraph::eraseChars(pos_type start, pos_type end, bool trackChanges)
538 {
539         LASSERT(start >= 0 && start <= size(), /**/);
540         LASSERT(end >= start && end <= size() + 1, /**/);
541
542         pos_type i = start;
543         for (pos_type count = end - start; count; --count) {
544                 if (!eraseChar(i, trackChanges))
545                         ++i;
546         }
547         return end - i;
548 }
549
550
551 int Paragraph::Private::latexSurrogatePair(odocstream & os, char_type c,
552                 char_type next, OutputParams const & runparams)
553 {
554         // Writing next here may circumvent a possible font change between
555         // c and next. Since next is only output if it forms a surrogate pair
556         // with c we can ignore this:
557         // A font change inside a surrogate pair does not make sense and is
558         // hopefully impossible to input.
559         // FIXME: change tracking
560         // Is this correct WRT change tracking?
561         Encoding const & encoding = *(runparams.encoding);
562         docstring const latex1 = encoding.latexChar(next);
563         docstring const latex2 = encoding.latexChar(c);
564         if (docstring(1, next) == latex1) {
565                 // the encoding supports the combination
566                 os << latex2 << latex1;
567                 return latex1.length() + latex2.length();
568         } else if (runparams.local_font &&
569                    runparams.local_font->language()->lang() == "polutonikogreek") {
570                 // polutonikogreek only works without the brackets
571                 os << latex1 << latex2;
572                 return latex1.length() + latex2.length();
573         } else
574                 os << latex1 << '{' << latex2 << '}';
575         return latex1.length() + latex2.length() + 2;
576 }
577
578
579 bool Paragraph::Private::simpleTeXBlanks(OutputParams const & runparams,
580                                        odocstream & os, TexRow & texrow,
581                                        pos_type i,
582                                        unsigned int & column,
583                                        Font const & font,
584                                        Layout const & style)
585 {
586         if (style.pass_thru || runparams.verbatim)
587                 return false;
588
589         if (i + 1 < int(text_.size())) {
590                 char_type next = text_[i + 1];
591                 if (Encodings::isCombiningChar(next)) {
592                         // This space has an accent, so we must always output it.
593                         column += latexSurrogatePair(os, ' ', next, runparams) - 1;
594                         return true;
595                 }
596         }
597
598         if (runparams.linelen > 0
599             && column > runparams.linelen
600             && i
601             && text_[i - 1] != ' '
602             && (i + 1 < int(text_.size()))
603             // same in FreeSpacing mode
604             && !owner_->isFreeSpacing()
605             // In typewriter mode, we want to avoid
606             // ! . ? : at the end of a line
607             && !(font.fontInfo().family() == TYPEWRITER_FAMILY
608                  && (text_[i - 1] == '.'
609                      || text_[i - 1] == '?'
610                      || text_[i - 1] == ':'
611                      || text_[i - 1] == '!'))) {
612                 os << '\n';
613                 texrow.newline();
614                 texrow.start(owner_->id(), i + 1);
615                 column = 0;
616         } else if (style.free_spacing) {
617                 os << '~';
618         } else {
619                 os << ' ';
620         }
621         return false;
622 }
623
624
625 int Paragraph::Private::writeScriptChars(odocstream & os,
626                                          docstring const & ltx,
627                                          Change const & runningChange,
628                                          Encoding const & encoding,
629                                          pos_type & i)
630 {
631         // FIXME: modifying i here is not very nice...
632
633         // We only arrive here when a proper language for character text_[i] has
634         // not been specified (i.e., it could not be translated in the current
635         // latex encoding) or its latex translation has been forced, and it
636         // belongs to a known script.
637         // Parameter ltx contains the latex translation of text_[i] as specified
638         // in the unicodesymbols file and is something like "\textXXX{<spec>}".
639         // The latex macro name "textXXX" specifies the script to which text_[i]
640         // belongs and we use it in order to check whether characters from the
641         // same script immediately follow, such that we can collect them in a
642         // single "\textXXX" macro. So, we have to retain "\textXXX{<spec>"
643         // for the first char but only "<spec>" for all subsequent chars.
644         docstring::size_type const brace1 = ltx.find_first_of(from_ascii("{"));
645         docstring::size_type const brace2 = ltx.find_last_of(from_ascii("}"));
646         string script = to_ascii(ltx.substr(1, brace1 - 1));
647         int pos = 0;
648         int length = brace2;
649         bool closing_brace = true;
650         if (script == "textgreek" && encoding.latexName() == "iso-8859-7") {
651                 // Correct encoding is being used, so we can avoid \textgreek.
652                 pos = brace1 + 1;
653                 length -= pos;
654                 closing_brace = false;
655         }
656         os << ltx.substr(pos, length);
657         int size = text_.size();
658         while (i + 1 < size) {
659                 char_type const next = text_[i + 1];
660                 // Stop here if next character belongs to another script
661                 // or there is a change in change tracking status.
662                 if (!Encodings::isKnownScriptChar(next, script) ||
663                     runningChange != owner_->lookupChange(i + 1))
664                         break;
665                 Font prev_font;
666                 bool found = false;
667                 FontList::const_iterator cit = fontlist_.begin();
668                 FontList::const_iterator end = fontlist_.end();
669                 for (; cit != end; ++cit) {
670                         if (cit->pos() >= i && !found) {
671                                 prev_font = cit->font();
672                                 found = true;
673                         }
674                         if (cit->pos() >= i + 1)
675                                 break;
676                 }
677                 // Stop here if there is a font attribute or encoding change.
678                 if (found && cit != end && prev_font != cit->font())
679                         break;
680                 docstring const latex = encoding.latexChar(next);
681                 docstring::size_type const b1 =
682                                         latex.find_first_of(from_ascii("{"));
683                 docstring::size_type const b2 =
684                                         latex.find_last_of(from_ascii("}"));
685                 int const len = b2 - b1 - 1;
686                 os << latex.substr(b1 + 1, len);
687                 length += len;
688                 ++i;
689         }
690         if (closing_brace) {
691                 os << '}';
692                 ++length;
693         }
694         return length;
695 }
696
697
698 bool Paragraph::Private::isTextAt(string const & str, pos_type pos) const
699 {
700         pos_type const len = str.length();
701
702         // is the paragraph large enough?
703         if (pos + len > int(text_.size()))
704                 return false;
705
706         // does the wanted text start at point?
707         for (string::size_type i = 0; i < str.length(); ++i) {
708                 // Caution: direct comparison of characters works only
709                 // because str is pure ASCII.
710                 if (str[i] != text_[pos + i])
711                         return false;
712         }
713
714         return fontlist_.hasChangeInRange(pos, len);
715 }
716
717
718 void Paragraph::Private::latexInset(
719                                              BufferParams const & bparams,
720                                              odocstream & os,
721                                              TexRow & texrow,
722                                              OutputParams & runparams,
723                                              Font & running_font,
724                                              Font & basefont,
725                                              Font const & outerfont,
726                                              bool & open_font,
727                                              Change & running_change,
728                                              Layout const & style,
729                                              pos_type & i,
730                                              unsigned int & column)
731 {
732         Inset * inset = owner_->getInset(i);
733         LASSERT(inset, /**/);
734
735         if (style.pass_thru) {
736                 inset->plaintext(os, runparams);
737                 return;
738         }
739
740         // FIXME: move this to InsetNewline::latex
741         if (inset->lyxCode() == NEWLINE_CODE) {
742                 // newlines are handled differently here than
743                 // the default in simpleTeXSpecialChars().
744                 if (!style.newline_allowed) {
745                         os << '\n';
746                 } else {
747                         if (open_font) {
748                                 column += running_font.latexWriteEndChanges(
749                                         os, bparams, runparams,
750                                         basefont, basefont);
751                                 open_font = false;
752                         }
753
754                         if (running_font.fontInfo().family() == TYPEWRITER_FAMILY)
755                                 os << '~';
756
757                         basefont = owner_->getLayoutFont(bparams, outerfont);
758                         running_font = basefont;
759
760                         if (runparams.moving_arg)
761                                 os << "\\protect ";
762
763                 }
764                 texrow.newline();
765                 texrow.start(owner_->id(), i + 1);
766                 column = 0;
767         }
768
769         if (owner_->isDeleted(i)) {
770                 if( ++runparams.inDeletedInset == 1)
771                         runparams.changeOfDeletedInset = owner_->lookupChange(i);
772         }
773
774         if (inset->canTrackChanges()) {
775                 column += Changes::latexMarkChange(os, bparams, running_change,
776                         Change(Change::UNCHANGED), runparams);
777                 running_change = Change(Change::UNCHANGED);
778         }
779
780         bool close = false;
781         odocstream::pos_type const len = os.tellp();
782
783         if (inset->forceLTR()
784             && running_font.isRightToLeft()
785             // ERT is an exception, it should be output with no
786             // decorations at all
787             && inset->lyxCode() != ERT_CODE) {
788                 if (running_font.language()->lang() == "farsi")
789                         os << "\\beginL{}";
790                 else
791                         os << "\\L{";
792                 close = true;
793         }
794
795         // FIXME: Bug: we can have an empty font change here!
796         // if there has just been a font change, we are going to close it
797         // right now, which means stupid latex code like \textsf{}. AFAIK,
798         // this does not harm dvi output. A minor bug, thus (JMarc)
799
800         // Some insets cannot be inside a font change command.
801         // However, even such insets *can* be placed in \L or \R
802         // or their equivalents (for RTL language switches), so we don't
803         // close the language in those cases.
804         // ArabTeX, though, cannot handle this special behavior, it seems.
805         bool arabtex = basefont.language()->lang() == "arabic_arabtex"
806                 || running_font.language()->lang() == "arabic_arabtex";
807         if (open_font && inset->noFontChange()) {
808                 bool closeLanguage = arabtex
809                         || basefont.isRightToLeft() == running_font.isRightToLeft();
810                 unsigned int count = running_font.latexWriteEndChanges(os,
811                         bparams, runparams, basefont, basefont, closeLanguage);
812                 column += count;
813                 // if any font properties were closed, update the running_font, 
814                 // making sure, however, to leave the language as it was
815                 if (count > 0) {
816                         // FIXME: probably a better way to keep track of the old 
817                         // language, than copying the entire font?
818                         Font const copy_font(running_font);
819                         basefont = owner_->getLayoutFont(bparams, outerfont);
820                         running_font = basefont;
821                         if (!closeLanguage)
822                                 running_font.setLanguage(copy_font.language());
823                         // leave font open if language is still open
824                         open_font = (running_font.language() == basefont.language());
825                         if (closeLanguage)
826                                 runparams.local_font = &basefont;
827                 }
828         }
829
830         int tmp;
831
832         try {
833                 tmp = inset->latex(os, runparams);
834         } catch (EncodingException & e) {
835                 // add location information and throw again.
836                 e.par_id = id_;
837                 e.pos = i;
838                 throw(e);
839         }
840
841         if (close) {
842                 if (running_font.language()->lang() == "farsi")
843                                 os << "\\endL{}";
844                         else
845                                 os << '}';
846         }
847
848         if (tmp) {
849                 for (int j = 0; j < tmp; ++j)
850                         texrow.newline();
851
852                 texrow.start(owner_->id(), i + 1);
853                 column = 0;
854         } else {
855                 column += os.tellp() - len;
856         }
857
858         if (owner_->isDeleted(i))
859                 --runparams.inDeletedInset;
860 }
861
862
863 void Paragraph::Private::latexSpecialChar(
864                                              odocstream & os,
865                                              OutputParams const & runparams,
866                                              Font const & running_font,
867                                              Change const & running_change,
868                                              Layout const & style,
869                                              pos_type & i,
870                                              unsigned int & column)
871 {
872         char_type const c = text_[i];
873
874         if (style.pass_thru) {
875                 if (c != '\0')
876                         // FIXME UNICODE: This can fail if c cannot
877                         // be encoded in the current encoding.
878                         os.put(c);
879                 return;
880         }
881
882         if (runparams.verbatim) {
883                 // FIXME UNICODE: This can fail if c cannot
884                 // be encoded in the current encoding.
885                 os.put(c);
886                 return;
887         }
888
889         // If T1 font encoding is used, use the special
890         // characters it provides.
891         // NOTE: some languages reset the font encoding
892         // internally
893         if (!running_font.language()->internalFontEncoding()
894             && lyxrc.fontenc == "T1" && latexSpecialT1(c, os, i, column))
895                 return;
896
897         // \tt font needs special treatment
898         if (running_font.fontInfo().family() == TYPEWRITER_FAMILY
899                 && latexSpecialTypewriter(c, os, i, column))
900                 return;
901
902         // Otherwise, we use what LaTeX provides us.
903         switch (c) {
904         case '\\':
905                 os << "\\textbackslash{}";
906                 column += 15;
907                 break;
908         case '<':
909                 os << "\\textless{}";
910                 column += 10;
911                 break;
912         case '>':
913                 os << "\\textgreater{}";
914                 column += 13;
915                 break;
916         case '|':
917                 os << "\\textbar{}";
918                 column += 9;
919                 break;
920         case '-':
921                 os << '-';
922                 break;
923         case '\"':
924                 os << "\\char`\\\"{}";
925                 column += 9;
926                 break;
927
928         case '$': case '&':
929         case '%': case '#': case '{':
930         case '}': case '_':
931                 os << '\\';
932                 os.put(c);
933                 column += 1;
934                 break;
935
936         case '~':
937                 os << "\\textasciitilde{}";
938                 column += 16;
939                 break;
940
941         case '^':
942                 os << "\\textasciicircum{}";
943                 column += 17;
944                 break;
945
946         case '*':
947         case '[':
948         case ']':
949                 // avoid being mistaken for optional arguments
950                 os << '{';
951                 os.put(c);
952                 os << '}';
953                 column += 2;
954                 break;
955
956         case ' ':
957                 // Blanks are printed before font switching.
958                 // Sure? I am not! (try nice-latex)
959                 // I am sure it's correct. LyX might be smarter
960                 // in the future, but for now, nothing wrong is
961                 // written. (Asger)
962                 break;
963
964         default:
965                 // LyX, LaTeX etc.
966                 if (latexSpecialPhrase(os, i, column, runparams))
967                         return;
968
969                 if (c == '\0')
970                         return;
971
972                 Encoding const & encoding = *(runparams.encoding);
973                 if (i + 1 < int(text_.size())) {
974                         char_type next = text_[i + 1];
975                         if (Encodings::isCombiningChar(next)) {
976                                 column += latexSurrogatePair(os, c, next, runparams) - 1;
977                                 ++i;
978                                 break;
979                         }
980                 }
981                 string script;
982                 docstring const latex = encoding.latexChar(c);
983                 if (Encodings::isKnownScriptChar(c, script)
984                     && prefixIs(latex, from_ascii("\\" + script)))
985                         column += writeScriptChars(os, latex,
986                                         running_change, encoding, i) - 1;
987                 else if (latex.length() > 1 && latex[latex.length() - 1] != '}') {
988                         // Prevent eating of a following
989                         // space or command corruption by
990                         // following characters
991                         column += latex.length() + 1;
992                         os << latex << "{}";
993                 } else {
994                         column += latex.length() - 1;
995                         os << latex;
996                 }
997                 break;
998         }
999 }
1000
1001
1002 bool Paragraph::Private::latexSpecialT1(char_type const c, odocstream & os,
1003         pos_type i, unsigned int & column)
1004 {
1005         switch (c) {
1006         case '>':
1007         case '<':
1008                 os.put(c);
1009                 // In T1 encoding, these characters exist
1010                 // but we should avoid ligatures
1011                 if (i + 1 >= int(text_.size()) || text_[i + 1] != c)
1012                         return true;
1013                 os << "\\textcompwordmark{}";
1014                 column += 19;
1015                 return true;
1016         case '|':
1017                 os.put(c);
1018                 return true;
1019         case '\"':
1020                 // soul.sty breaks with \char`\"
1021                 os << "\\textquotedbl{}";
1022                 column += 14;
1023                 return true;
1024         default:
1025                 return false;
1026         }
1027 }
1028
1029
1030 bool Paragraph::Private::latexSpecialTypewriter(char_type const c, odocstream & os,
1031         pos_type i, unsigned int & column)
1032 {
1033         switch (c) {
1034         case '-':
1035                 // within \ttfamily, "--" is merged to "-" (no endash)
1036                 // so we avoid this rather irritating ligature
1037                 if (i + 1 < int(text_.size()) && text_[i + 1] == '-') {
1038                         os << "-{}";
1039                         column += 2;
1040                 } else
1041                         os << '-';
1042                 return true;
1043
1044         // everything else has to be checked separately
1045         // (depending on the encoding)
1046         default:
1047                 return false;
1048         }
1049 }
1050
1051
1052 bool Paragraph::Private::latexSpecialPhrase(odocstream & os, pos_type & i,
1053         unsigned int & column, OutputParams const & runparams)
1054 {
1055         // FIXME: if we have "LaTeX" with a font
1056         // change in the middle (before the 'T', then
1057         // the "TeX" part is still special cased.
1058         // Really we should only operate this on
1059         // "words" for some definition of word
1060
1061         for (size_t pnr = 0; pnr < phrases_nr; ++pnr) {
1062                 if (!isTextAt(special_phrases[pnr].phrase, i))
1063                         continue;
1064                 if (runparams.moving_arg)
1065                         os << "\\protect";
1066                 os << special_phrases[pnr].macro;
1067                 i += special_phrases[pnr].phrase.length() - 1;
1068                 column += special_phrases[pnr].macro.length() - 1;
1069                 return true;
1070         }
1071         return false;
1072 }
1073
1074
1075 void Paragraph::Private::validate(LaTeXFeatures & features) const
1076 {
1077         if (layout_->inpreamble && inset_owner_) {
1078                 Buffer const & buf = inset_owner_->buffer();
1079                 BufferParams const & bp = buf.params();
1080                 Font f;
1081                 TexRow tr;
1082                 odocstringstream ods;
1083                 owner_->latex(bp, f, ods, tr, features.runparams());
1084                 docstring d = ods.str();
1085                 if (!d.empty())
1086                         features.addPreambleSnippet(to_utf8(d));
1087         }
1088         
1089         if (features.runparams().flavor == OutputParams::HTML 
1090             && layout_->htmltitle()) {
1091                 features.setHTMLTitle(owner_->asString(AS_STR_INSETS));
1092         }
1093         
1094         // check the params.
1095         if (!params_.spacing().isDefault())
1096                 features.require("setspace");
1097
1098         // then the layouts
1099         features.useLayout(layout_->name());
1100
1101         // then the fonts
1102         fontlist_.validate(features);
1103
1104         // then the indentation
1105         if (!params_.leftIndent().zero())
1106                 features.require("ParagraphLeftIndent");
1107
1108         // then the insets
1109         InsetList::const_iterator icit = insetlist_.begin();
1110         InsetList::const_iterator iend = insetlist_.end();
1111         for (; icit != iend; ++icit) {
1112                 if (icit->inset) {
1113                         icit->inset->validate(features);
1114                         if (layout_->needprotect &&
1115                             icit->inset->lyxCode() == FOOT_CODE)
1116                                 features.require("NeedLyXFootnoteCode");
1117                 }
1118         }
1119
1120         // then the contents
1121         for (pos_type i = 0; i < int(text_.size()) ; ++i) {
1122                 for (size_t pnr = 0; pnr < phrases_nr; ++pnr) {
1123                         if (!special_phrases[pnr].builtin
1124                             && isTextAt(special_phrases[pnr].phrase, i)) {
1125                                 features.require(special_phrases[pnr].phrase);
1126                                 break;
1127                         }
1128                 }
1129                 Encodings::validate(text_[i], features);
1130         }
1131 }
1132
1133 /////////////////////////////////////////////////////////////////////
1134 //
1135 // Paragraph
1136 //
1137 /////////////////////////////////////////////////////////////////////
1138
1139 namespace {
1140         Layout const emptyParagraphLayout;
1141 }
1142
1143 Paragraph::Paragraph() 
1144         : d(new Paragraph::Private(this, emptyParagraphLayout))
1145 {
1146         itemdepth = 0;
1147         d->params_.clear();
1148 }
1149
1150
1151 Paragraph::Paragraph(Paragraph const & par)
1152         : itemdepth(par.itemdepth),
1153         d(new Paragraph::Private(*par.d, this))
1154 {
1155         registerWords();
1156 }
1157
1158
1159 Paragraph::Paragraph(Paragraph const & par, pos_type beg, pos_type end)
1160         : itemdepth(par.itemdepth),
1161         d(new Paragraph::Private(*par.d, this, beg, end))
1162 {
1163         registerWords();
1164 }
1165
1166
1167 Paragraph & Paragraph::operator=(Paragraph const & par)
1168 {
1169         // needed as we will destroy the private part before copying it
1170         if (&par != this) {
1171                 itemdepth = par.itemdepth;
1172
1173                 deregisterWords();
1174                 delete d;
1175                 d = new Private(*par.d, this);
1176                 registerWords();
1177         }
1178         return *this;
1179 }
1180
1181
1182 Paragraph::~Paragraph()
1183 {
1184         deregisterWords();
1185         delete d;
1186 }
1187
1188
1189 namespace {
1190
1191 // this shall be called just before every "os << ..." action.
1192 void flushString(ostream & os, docstring & s)
1193 {
1194         os << to_utf8(s);
1195         s.erase();
1196 }
1197
1198 }
1199
1200
1201 void Paragraph::write(ostream & os, BufferParams const & bparams,
1202         depth_type & dth) const
1203 {
1204         // The beginning or end of a deeper (i.e. nested) area?
1205         if (dth != d->params_.depth()) {
1206                 if (d->params_.depth() > dth) {
1207                         while (d->params_.depth() > dth) {
1208                                 os << "\n\\begin_deeper";
1209                                 ++dth;
1210                         }
1211                 } else {
1212                         while (d->params_.depth() < dth) {
1213                                 os << "\n\\end_deeper";
1214                                 --dth;
1215                         }
1216                 }
1217         }
1218
1219         // First write the layout
1220         os << "\n\\begin_layout " << to_utf8(d->layout_->name()) << '\n';
1221
1222         d->params_.write(os);
1223
1224         Font font1(inherit_font, bparams.language);
1225
1226         Change running_change = Change(Change::UNCHANGED);
1227
1228         // this string is used as a buffer to avoid repetitive calls
1229         // to to_utf8(), which turn out to be expensive (JMarc)
1230         docstring write_buffer;
1231
1232         int column = 0;
1233         for (pos_type i = 0; i <= size(); ++i) {
1234
1235                 Change const change = lookupChange(i);
1236                 if (change != running_change)
1237                         flushString(os, write_buffer);
1238                 Changes::lyxMarkChange(os, bparams, column, running_change, change);
1239                 running_change = change;
1240
1241                 if (i == size())
1242                         break;
1243
1244                 // Write font changes (ignore spelling markers)
1245                 Font font2 = getFontSettings(bparams, i);
1246                 font2.setMisspelled(false);
1247                 if (font2 != font1) {
1248                         flushString(os, write_buffer);
1249                         font2.lyxWriteChanges(font1, os);
1250                         column = 0;
1251                         font1 = font2;
1252                 }
1253
1254                 char_type const c = d->text_[i];
1255                 switch (c) {
1256                 case META_INSET:
1257                         if (Inset const * inset = getInset(i)) {
1258                                 flushString(os, write_buffer);
1259                                 if (inset->directWrite()) {
1260                                         // international char, let it write
1261                                         // code directly so it's shorter in
1262                                         // the file
1263                                         inset->write(os);
1264                                 } else {
1265                                         if (i)
1266                                                 os << '\n';
1267                                         os << "\\begin_inset ";
1268                                         inset->write(os);
1269                                         os << "\n\\end_inset\n\n";
1270                                         column = 0;
1271                                 }
1272                         }
1273                         break;
1274                 case '\\':
1275                         flushString(os, write_buffer);
1276                         os << "\n\\backslash\n";
1277                         column = 0;
1278                         break;
1279                 case '.':
1280                         flushString(os, write_buffer);
1281                         if (i + 1 < size() && d->text_[i + 1] == ' ') {
1282                                 os << ".\n";
1283                                 column = 0;
1284                         } else
1285                                 os << '.';
1286                         break;
1287                 default:
1288                         if ((column > 70 && c == ' ')
1289                             || column > 79) {
1290                                 flushString(os, write_buffer);
1291                                 os << '\n';
1292                                 column = 0;
1293                         }
1294                         // this check is to amend a bug. LyX sometimes
1295                         // inserts '\0' this could cause problems.
1296                         if (c != '\0')
1297                                 write_buffer.push_back(c);
1298                         else
1299                                 LYXERR0("NUL char in structure.");
1300                         ++column;
1301                         break;
1302                 }
1303         }
1304
1305         flushString(os, write_buffer);
1306         os << "\n\\end_layout\n";
1307 }
1308
1309
1310 void Paragraph::validate(LaTeXFeatures & features) const
1311 {
1312         d->validate(features);
1313 }
1314
1315
1316 void Paragraph::insert(pos_type start, docstring const & str,
1317                        Font const & font, Change const & change)
1318 {
1319         for (size_t i = 0, n = str.size(); i != n ; ++i)
1320                 insertChar(start + i, str[i], font, change);
1321 }
1322
1323
1324 void Paragraph::appendChar(char_type c, Font const & font,
1325                 Change const & change)
1326 {
1327         // track change
1328         d->changes_.insert(change, d->text_.size());
1329         // when appending characters, no need to update tables
1330         d->text_.push_back(c);
1331         setFont(d->text_.size() - 1, font);
1332 }
1333
1334
1335 void Paragraph::appendString(docstring const & s, Font const & font,
1336                 Change const & change)
1337 {
1338         pos_type end = s.size();
1339         size_t oldsize = d->text_.size();
1340         size_t newsize = oldsize + end;
1341         size_t capacity = d->text_.capacity();
1342         if (newsize >= capacity)
1343                 d->text_.reserve(max(capacity + 100, newsize));
1344
1345         // when appending characters, no need to update tables
1346         d->text_.append(s);
1347
1348         // FIXME: Optimize this!
1349         for (size_t i = oldsize; i != newsize; ++i) {
1350                 // track change
1351                 d->changes_.insert(change, i);
1352         }
1353         d->fontlist_.set(oldsize, font);
1354         d->fontlist_.set(newsize - 1, font);
1355 }
1356
1357
1358 void Paragraph::insertChar(pos_type pos, char_type c,
1359                            bool trackChanges)
1360 {
1361         d->insertChar(pos, c, Change(trackChanges ?
1362                            Change::INSERTED : Change::UNCHANGED));
1363 }
1364
1365
1366 void Paragraph::insertChar(pos_type pos, char_type c,
1367                            Font const & font, bool trackChanges)
1368 {
1369         d->insertChar(pos, c, Change(trackChanges ?
1370                            Change::INSERTED : Change::UNCHANGED));
1371         setFont(pos, font);
1372 }
1373
1374
1375 void Paragraph::insertChar(pos_type pos, char_type c,
1376                            Font const & font, Change const & change)
1377 {
1378         d->insertChar(pos, c, change);
1379         setFont(pos, font);
1380 }
1381
1382
1383 bool Paragraph::insertInset(pos_type pos, Inset * inset,
1384                             Font const & font, Change const & change)
1385 {
1386         bool const success = insertInset(pos, inset, change);
1387         // Set the font/language of the inset...
1388         setFont(pos, font);
1389         return success;
1390 }
1391
1392
1393 void Paragraph::resetFonts(Font const & font)
1394 {
1395         d->fontlist_.clear();
1396         d->fontlist_.set(0, font);
1397         d->fontlist_.set(d->text_.size() - 1, font);
1398 }
1399
1400 // Gets uninstantiated font setting at position.
1401 Font const & Paragraph::getFontSettings(BufferParams const & bparams,
1402                                          pos_type pos) const
1403 {
1404         if (pos > size()) {
1405                 LYXERR0("pos: " << pos << " size: " << size());
1406                 LASSERT(pos <= size(), /**/);
1407         }
1408
1409         FontList::const_iterator cit = d->fontlist_.fontIterator(pos);
1410         if (cit != d->fontlist_.end())
1411                 return cit->font();
1412
1413         if (pos == size() && !empty())
1414                 return getFontSettings(bparams, pos - 1);
1415
1416         // Optimisation: avoid a full font instantiation if there is no
1417         // language change from previous call.
1418         static Font previous_font;
1419         static Language const * previous_lang = 0;
1420         Language const * lang = getParLanguage(bparams);
1421         if (lang != previous_lang) {
1422                 previous_lang = lang;
1423                 previous_font = Font(inherit_font, lang);
1424         }
1425         return previous_font;
1426 }
1427
1428
1429 FontSpan Paragraph::fontSpan(pos_type pos) const
1430 {
1431         LASSERT(pos <= size(), /**/);
1432         pos_type start = 0;
1433
1434         FontList::const_iterator cit = d->fontlist_.begin();
1435         FontList::const_iterator end = d->fontlist_.end();
1436         for (; cit != end; ++cit) {
1437                 if (cit->pos() >= pos) {
1438                         if (pos >= beginOfBody())
1439                                 return FontSpan(max(start, beginOfBody()),
1440                                                 cit->pos());
1441                         else
1442                                 return FontSpan(start,
1443                                                 min(beginOfBody() - 1,
1444                                                          cit->pos()));
1445                 }
1446                 start = cit->pos() + 1;
1447         }
1448
1449         // This should not happen, but if so, we take no chances.
1450         // LYXERR0("Paragraph::getEndPosOfFontSpan: This should not happen!");
1451         return FontSpan(pos, pos);
1452 }
1453
1454
1455 // Gets uninstantiated font setting at position 0
1456 Font const & Paragraph::getFirstFontSettings(BufferParams const & bparams) const
1457 {
1458         if (!empty() && !d->fontlist_.empty())
1459                 return d->fontlist_.begin()->font();
1460
1461         // Optimisation: avoid a full font instantiation if there is no
1462         // language change from previous call.
1463         static Font previous_font;
1464         static Language const * previous_lang = 0;
1465         if (bparams.language != previous_lang) {
1466                 previous_lang = bparams.language;
1467                 previous_font = Font(inherit_font, bparams.language);
1468         }
1469
1470         return previous_font;
1471 }
1472
1473
1474 // Gets the fully instantiated font at a given position in a paragraph
1475 // This is basically the same function as Text::GetFont() in text2.cpp.
1476 // The difference is that this one is used for generating the LaTeX file,
1477 // and thus cosmetic "improvements" are disallowed: This has to deliver
1478 // the true picture of the buffer. (Asger)
1479 Font const Paragraph::getFont(BufferParams const & bparams, pos_type pos,
1480                                  Font const & outerfont) const
1481 {
1482         LASSERT(pos >= 0, /**/);
1483
1484         Font font = getFontSettings(bparams, pos);
1485
1486         pos_type const body_pos = beginOfBody();
1487         FontInfo & fi = font.fontInfo();
1488         if (pos < body_pos)
1489                 fi.realize(d->layout_->labelfont);
1490         else
1491                 fi.realize(d->layout_->font);
1492
1493         fi.realize(outerfont.fontInfo());
1494         fi.realize(bparams.getFont().fontInfo());
1495
1496         return font;
1497 }
1498
1499
1500 Font const Paragraph::getLabelFont
1501         (BufferParams const & bparams, Font const & outerfont) const
1502 {
1503         FontInfo tmpfont = d->layout_->labelfont;
1504         tmpfont.realize(outerfont.fontInfo());
1505         tmpfont.realize(bparams.getFont().fontInfo());
1506         return Font(tmpfont, getParLanguage(bparams));
1507 }
1508
1509
1510 Font const Paragraph::getLayoutFont
1511         (BufferParams const & bparams, Font const & outerfont) const
1512 {
1513         FontInfo tmpfont = d->layout_->font;
1514         tmpfont.realize(outerfont.fontInfo());
1515         tmpfont.realize(bparams.getFont().fontInfo());
1516         return Font(tmpfont, getParLanguage(bparams));
1517 }
1518
1519
1520 /// Returns the height of the highest font in range
1521 FontSize Paragraph::highestFontInRange
1522         (pos_type startpos, pos_type endpos, FontSize def_size) const
1523 {
1524         return d->fontlist_.highestInRange(startpos, endpos, def_size);
1525 }
1526
1527
1528 char_type Paragraph::getUChar(BufferParams const & bparams, pos_type pos) const
1529 {
1530         char_type c = d->text_[pos];
1531         if (!lyxrc.rtl_support)
1532                 return c;
1533
1534         char_type uc = c;
1535         switch (c) {
1536         case '(':
1537                 uc = ')';
1538                 break;
1539         case ')':
1540                 uc = '(';
1541                 break;
1542         case '[':
1543                 uc = ']';
1544                 break;
1545         case ']':
1546                 uc = '[';
1547                 break;
1548         case '{':
1549                 uc = '}';
1550                 break;
1551         case '}':
1552                 uc = '{';
1553                 break;
1554         case '<':
1555                 uc = '>';
1556                 break;
1557         case '>':
1558                 uc = '<';
1559                 break;
1560         }
1561         if (uc != c && getFontSettings(bparams, pos).isRightToLeft())
1562                 return uc;
1563         return c;
1564 }
1565
1566
1567 void Paragraph::setFont(pos_type pos, Font const & font)
1568 {
1569         LASSERT(pos <= size(), /**/);
1570
1571         // First, reduce font against layout/label font
1572         // Update: The setCharFont() routine in text2.cpp already
1573         // reduces font, so we don't need to do that here. (Asger)
1574         
1575         d->fontlist_.set(pos, font);
1576 }
1577
1578
1579 void Paragraph::makeSameLayout(Paragraph const & par)
1580 {
1581         d->layout_ = par.d->layout_;
1582         d->params_ = par.d->params_;
1583 }
1584
1585
1586 bool Paragraph::stripLeadingSpaces(bool trackChanges)
1587 {
1588         if (isFreeSpacing())
1589                 return false;
1590
1591         int pos = 0;
1592         int count = 0;
1593
1594         while (pos < size() && (isNewline(pos) || isLineSeparator(pos))) {
1595                 if (eraseChar(pos, trackChanges))
1596                         ++count;
1597                 else
1598                         ++pos;
1599         }
1600
1601         return count > 0 || pos > 0;
1602 }
1603
1604
1605 bool Paragraph::hasSameLayout(Paragraph const & par) const
1606 {
1607         return par.d->layout_ == d->layout_
1608                 && d->params_.sameLayout(par.d->params_);
1609 }
1610
1611
1612 depth_type Paragraph::getDepth() const
1613 {
1614         return d->params_.depth();
1615 }
1616
1617
1618 depth_type Paragraph::getMaxDepthAfter() const
1619 {
1620         if (d->layout_->isEnvironment())
1621                 return d->params_.depth() + 1;
1622         else
1623                 return d->params_.depth();
1624 }
1625
1626
1627 char Paragraph::getAlign() const
1628 {
1629         if (d->params_.align() == LYX_ALIGN_LAYOUT)
1630                 return d->layout_->align;
1631         else
1632                 return d->params_.align();
1633 }
1634
1635
1636 docstring const & Paragraph::labelString() const
1637 {
1638         return d->params_.labelString();
1639 }
1640
1641
1642 // the next two functions are for the manual labels
1643 docstring const Paragraph::getLabelWidthString() const
1644 {
1645         if (d->layout_->margintype == MARGIN_MANUAL
1646             || d->layout_->latextype == LATEX_BIB_ENVIRONMENT)
1647                 return d->params_.labelWidthString();
1648         else
1649                 return _("Senseless with this layout!");
1650 }
1651
1652
1653 void Paragraph::setLabelWidthString(docstring const & s)
1654 {
1655         d->params_.labelWidthString(s);
1656 }
1657
1658
1659 docstring Paragraph::expandLabel(Layout const & layout,
1660                 BufferParams const & bparams, bool process_appendix) const
1661 {
1662         DocumentClass const & tclass = bparams.documentClass();
1663         string const & lang = getParLanguage(bparams)->code();
1664         bool const in_appendix = process_appendix && d->params_.appendix();
1665         docstring fmt = translateIfPossible(layout.labelstring(in_appendix), lang);
1666
1667         if (fmt.empty() && layout.labeltype == LABEL_COUNTER 
1668             && !layout.counter.empty())
1669                 return tclass.counters().theCounter(layout.counter, lang);
1670
1671         // handle 'inherited level parts' in 'fmt',
1672         // i.e. the stuff between '@' in   '@Section@.\arabic{subsection}'
1673         size_t const i = fmt.find('@', 0);
1674         if (i != docstring::npos) {
1675                 size_t const j = fmt.find('@', i + 1);
1676                 if (j != docstring::npos) {
1677                         docstring parent(fmt, i + 1, j - i - 1);
1678                         docstring label = from_ascii("??");
1679                         if (tclass.hasLayout(parent))
1680                                 docstring label = expandLabel(tclass[parent], bparams,
1681                                                       process_appendix);
1682                         fmt = docstring(fmt, 0, i) + label 
1683                                 + docstring(fmt, j + 1, docstring::npos);
1684                 }
1685         }
1686
1687         return tclass.counters().counterLabel(fmt, lang);
1688 }
1689
1690
1691 void Paragraph::applyLayout(Layout const & new_layout)
1692 {
1693         d->layout_ = &new_layout;
1694         LyXAlignment const oldAlign = d->params_.align();
1695         
1696         if (!(oldAlign & d->layout_->alignpossible)) {
1697                 frontend::Alert::warning(_("Alignment not permitted"), 
1698                         _("The new layout does not permit the alignment previously used.\nSetting to default."));
1699                 d->params_.align(LYX_ALIGN_LAYOUT);
1700         }
1701 }
1702
1703
1704 pos_type Paragraph::beginOfBody() const
1705 {
1706         return d->begin_of_body_;
1707 }
1708
1709
1710 void Paragraph::setBeginOfBody()
1711 {
1712         if (d->layout_->labeltype != LABEL_MANUAL) {
1713                 d->begin_of_body_ = 0;
1714                 return;
1715         }
1716
1717         // Unroll the first two cycles of the loop
1718         // and remember the previous character to
1719         // remove unnecessary getChar() calls
1720         pos_type i = 0;
1721         pos_type end = size();
1722         if (i < end && !isNewline(i)) {
1723                 ++i;
1724                 char_type previous_char = 0;
1725                 char_type temp = 0;
1726                 if (i < end) {
1727                         previous_char = d->text_[i];
1728                         if (!isNewline(i)) {
1729                                 ++i;
1730                                 while (i < end && previous_char != ' ') {
1731                                         temp = d->text_[i];
1732                                         if (isNewline(i))
1733                                                 break;
1734                                         ++i;
1735                                         previous_char = temp;
1736                                 }
1737                         }
1738                 }
1739         }
1740
1741         d->begin_of_body_ = i;
1742 }
1743
1744
1745 bool Paragraph::allowParagraphCustomization() const
1746 {
1747         return inInset().allowParagraphCustomization();
1748 }
1749
1750
1751 bool Paragraph::usePlainLayout() const
1752 {
1753         return inInset().usePlainLayout();
1754 }
1755
1756
1757 namespace {
1758
1759 // paragraphs inside floats need different alignment tags to avoid
1760 // unwanted space
1761
1762 bool noTrivlistCentering(InsetCode code)
1763 {
1764         return code == FLOAT_CODE
1765                || code == WRAP_CODE
1766                || code == CELL_CODE;
1767 }
1768
1769
1770 string correction(string const & orig)
1771 {
1772         if (orig == "flushleft")
1773                 return "raggedright";
1774         if (orig == "flushright")
1775                 return "raggedleft";
1776         if (orig == "center")
1777                 return "centering";
1778         return orig;
1779 }
1780
1781
1782 string const corrected_env(string const & suffix, string const & env,
1783         InsetCode code, bool const lastpar)
1784 {
1785         string output = suffix + "{";
1786         if (noTrivlistCentering(code)) {
1787                 if (lastpar) {
1788                         // the last paragraph in non-trivlist-aligned
1789                         // context is special (to avoid unwanted whitespace)
1790                         if (suffix == "\\begin")
1791                                 return "\\" + correction(env) + "{}";
1792                         return string();
1793                 }
1794                 output += correction(env);
1795         } else
1796                 output += env;
1797         output += "}";
1798         if (suffix == "\\begin")
1799                 output += "\n";
1800         return output;
1801 }
1802
1803
1804 void adjust_row_column(string const & str, TexRow & texrow, int & column)
1805 {
1806         if (!contains(str, "\n"))
1807                 column += str.size();
1808         else {
1809                 string tmp;
1810                 texrow.newline();
1811                 column = rsplit(str, tmp, '\n').size();
1812         }
1813 }
1814
1815 } // namespace anon
1816
1817
1818 int Paragraph::Private::startTeXParParams(BufferParams const & bparams,
1819                                  odocstream & os, TexRow & texrow,
1820                                  OutputParams const & runparams) const
1821 {
1822         int column = 0;
1823
1824         if (params_.noindent()) {
1825                 os << "\\noindent ";
1826                 column += 10;
1827         }
1828         
1829         LyXAlignment const curAlign = params_.align();
1830
1831         if (curAlign == layout_->align)
1832                 return column;
1833
1834         switch (curAlign) {
1835         case LYX_ALIGN_NONE:
1836         case LYX_ALIGN_BLOCK:
1837         case LYX_ALIGN_LAYOUT:
1838         case LYX_ALIGN_SPECIAL:
1839                 break;
1840         case LYX_ALIGN_LEFT:
1841         case LYX_ALIGN_RIGHT:
1842         case LYX_ALIGN_CENTER:
1843                 if (runparams.moving_arg) {
1844                         os << "\\protect";
1845                         column += 8;
1846                 }
1847                 break;
1848         }
1849
1850         string const begin_tag = "\\begin";
1851         InsetCode code = ownerCode();
1852         bool const lastpar = runparams.isLastPar;
1853
1854         switch (curAlign) {
1855         case LYX_ALIGN_NONE:
1856         case LYX_ALIGN_BLOCK:
1857         case LYX_ALIGN_LAYOUT:
1858         case LYX_ALIGN_SPECIAL:
1859                 break;
1860         case LYX_ALIGN_LEFT: {
1861                 string output;
1862                 if (owner_->getParLanguage(bparams)->babel() != "hebrew")
1863                         output = corrected_env(begin_tag, "flushleft", code, lastpar);
1864                 else
1865                         output = corrected_env(begin_tag, "flushright", code, lastpar);
1866                 os << from_ascii(output);
1867                 adjust_row_column(output, texrow, column);
1868                 break;
1869         } case LYX_ALIGN_RIGHT: {
1870                 string output;
1871                 if (owner_->getParLanguage(bparams)->babel() != "hebrew")
1872                         output = corrected_env(begin_tag, "flushright", code, lastpar);
1873                 else
1874                         output = corrected_env(begin_tag, "flushleft", code, lastpar);
1875                 os << from_ascii(output);
1876                 adjust_row_column(output, texrow, column);
1877                 break;
1878         } case LYX_ALIGN_CENTER: {
1879                 string output;
1880                 output = corrected_env(begin_tag, "center", code, lastpar);
1881                 os << from_ascii(output);
1882                 adjust_row_column(output, texrow, column);
1883                 break;
1884         }
1885         }
1886
1887         return column;
1888 }
1889
1890
1891 int Paragraph::Private::endTeXParParams(BufferParams const & bparams,
1892                                odocstream & os, TexRow & texrow,
1893                                OutputParams const & runparams) const
1894 {
1895         int column = 0;
1896
1897         LyXAlignment const curAlign = params_.align();
1898
1899         if (curAlign == layout_->align)
1900                 return column;
1901
1902         switch (curAlign) {
1903         case LYX_ALIGN_NONE:
1904         case LYX_ALIGN_BLOCK:
1905         case LYX_ALIGN_LAYOUT:
1906         case LYX_ALIGN_SPECIAL:
1907                 break;
1908         case LYX_ALIGN_LEFT:
1909         case LYX_ALIGN_RIGHT:
1910         case LYX_ALIGN_CENTER:
1911                 if (runparams.moving_arg) {
1912                         os << "\\protect";
1913                         column = 8;
1914                 }
1915                 break;
1916         }
1917
1918         string const end_tag = "\n\\par\\end";
1919         InsetCode code = ownerCode();
1920         bool const lastpar = runparams.isLastPar;
1921
1922         switch (curAlign) {
1923         case LYX_ALIGN_NONE:
1924         case LYX_ALIGN_BLOCK:
1925         case LYX_ALIGN_LAYOUT:
1926         case LYX_ALIGN_SPECIAL:
1927                 break;
1928         case LYX_ALIGN_LEFT: {
1929                 string output;
1930                 if (owner_->getParLanguage(bparams)->babel() != "hebrew")
1931                         output = corrected_env(end_tag, "flushleft", code, lastpar);
1932                 else
1933                         output = corrected_env(end_tag, "flushright", code, lastpar);
1934                 os << from_ascii(output);
1935                 adjust_row_column(output, texrow, column);
1936                 break;
1937         } case LYX_ALIGN_RIGHT: {
1938                 string output;
1939                 if (owner_->getParLanguage(bparams)->babel() != "hebrew")
1940                         output = corrected_env(end_tag, "flushright", code, lastpar);
1941                 else
1942                         output = corrected_env(end_tag, "flushleft", code, lastpar);
1943                 os << from_ascii(output);
1944                 adjust_row_column(output, texrow, column);
1945                 break;
1946         } case LYX_ALIGN_CENTER: {
1947                 string output;
1948                 output = corrected_env(end_tag, "center", code, lastpar);
1949                 os << from_ascii(output);
1950                 adjust_row_column(output, texrow, column);
1951                 break;
1952         }
1953         }
1954
1955         return column;
1956 }
1957
1958
1959 // This one spits out the text of the paragraph
1960 bool Paragraph::latex(BufferParams const & bparams,
1961         Font const & outerfont,
1962         odocstream & os, TexRow & texrow,
1963         OutputParams const & runparams,
1964         int start_pos, int end_pos) const
1965 {
1966         LYXERR(Debug::LATEX, "Paragraph::latex...     " << this);
1967
1968         if (layout().inpreamble)
1969                 return true;
1970
1971         bool return_value = false;
1972
1973         bool const allowcust = allowParagraphCustomization();
1974
1975         // FIXME This check should not be needed. Perhaps issue an
1976         // error if it triggers.
1977         Layout const & style = inInset().forcePlainLayout() ?
1978                 bparams.documentClass().plainLayout() : *d->layout_;
1979
1980         // Current base font for all inherited font changes, without any
1981         // change caused by an individual character, except for the language:
1982         // It is set to the language of the first character.
1983         // As long as we are in the label, this font is the base font of the
1984         // label. Before the first body character it is set to the base font
1985         // of the body.
1986         Font basefont;
1987
1988         // Maybe we have to create a optional argument.
1989         pos_type body_pos = beginOfBody();
1990         unsigned int column = 0;
1991
1992         if (body_pos > 0) {
1993                 os << '[';
1994                 column += 1;
1995                 basefont = getLabelFont(bparams, outerfont);
1996         } else {
1997                 basefont = getLayoutFont(bparams, outerfont);
1998         }
1999
2000         // Which font is currently active?
2001         Font running_font(basefont);
2002         // Do we have an open font change?
2003         bool open_font = false;
2004
2005         Change runningChange = Change(Change::UNCHANGED);
2006
2007         Encoding const * const prev_encoding = runparams.encoding;
2008
2009         texrow.start(id(), 0);
2010
2011         // if the paragraph is empty, the loop will not be entered at all
2012         if (empty()) {
2013                 if (style.isCommand()) {
2014                         os << '{';
2015                         ++column;
2016                 }
2017                 if (allowcust)
2018                         column += d->startTeXParParams(bparams, os, texrow,
2019                                                     runparams);
2020         }
2021
2022         for (pos_type i = 0; i < size(); ++i) {
2023                 // First char in paragraph or after label?
2024                 if (i == body_pos) {
2025                         if (body_pos > 0) {
2026                                 if (open_font) {
2027                                         column += running_font.latexWriteEndChanges(
2028                                                 os, bparams, runparams,
2029                                                 basefont, basefont);
2030                                         open_font = false;
2031                                 }
2032                                 basefont = getLayoutFont(bparams, outerfont);
2033                                 running_font = basefont;
2034
2035                                 column += Changes::latexMarkChange(os, bparams,
2036                                                 runningChange, Change(Change::UNCHANGED),
2037                                                 runparams);
2038                                 runningChange = Change(Change::UNCHANGED);
2039
2040                                 os << "] ";
2041                                 column +=2;
2042                         }
2043                         if (style.isCommand()) {
2044                                 os << '{';
2045                                 ++column;
2046                         }
2047
2048                         if (allowcust)
2049                                 column += d->startTeXParParams(bparams, os,
2050                                                             texrow,
2051                                                             runparams);
2052                 }
2053
2054                 Change const & change = runparams.inDeletedInset ? runparams.changeOfDeletedInset
2055                                                                  : lookupChange(i);
2056
2057                 if (bparams.outputChanges && runningChange != change) {
2058                         if (open_font) {
2059                                 column += running_font.latexWriteEndChanges(
2060                                                 os, bparams, runparams, basefont, basefont);
2061                                 open_font = false;
2062                         }
2063                         basefont = getLayoutFont(bparams, outerfont);
2064                         running_font = basefont;
2065
2066                         column += Changes::latexMarkChange(os, bparams, runningChange,
2067                                                            change, runparams);
2068                         runningChange = change;
2069                 }
2070
2071                 // do not output text which is marked deleted
2072                 // if change tracking output is disabled
2073                 if (!bparams.outputChanges && change.deleted()) {
2074                         continue;
2075                 }
2076
2077                 ++column;
2078
2079                 // Fully instantiated font
2080                 Font const font = getFont(bparams, i, outerfont);
2081
2082                 Font const last_font = running_font;
2083
2084                 // Do we need to close the previous font?
2085                 if (open_font &&
2086                     (font != running_font ||
2087                      font.language() != running_font.language()))
2088                 {
2089                         column += running_font.latexWriteEndChanges(
2090                                         os, bparams, runparams, basefont,
2091                                         (i == body_pos-1) ? basefont : font);
2092                         running_font = basefont;
2093                         open_font = false;
2094                 }
2095
2096                 // close babel's font environment before opening CJK.
2097                 if (!running_font.language()->babel().empty() &&
2098                     font.language()->encoding()->package() == Encoding::CJK) {
2099                                 string end_tag = subst(lyxrc.language_command_end,
2100                                                         "$$lang",
2101                                                         running_font.language()->babel());
2102                                 os << from_ascii(end_tag);
2103                                 column += end_tag.length();
2104                 }
2105
2106                 // Switch file encoding if necessary (and allowed)
2107                 if (!runparams.verbatim && 
2108                     runparams.encoding->package() != Encoding::none &&
2109                     font.language()->encoding()->package() != Encoding::none) {
2110                         pair<bool, int> const enc_switch = switchEncoding(os, bparams,
2111                                         runparams, *(font.language()->encoding()));
2112                         if (enc_switch.first) {
2113                                 column += enc_switch.second;
2114                                 runparams.encoding = font.language()->encoding();
2115                         }
2116                 }
2117
2118                 char_type const c = d->text_[i];
2119
2120                 // Do we need to change font?
2121                 if ((font != running_font ||
2122                      font.language() != running_font.language()) &&
2123                         i != body_pos - 1)
2124                 {
2125                         odocstringstream ods;
2126                         column += font.latexWriteStartChanges(ods, bparams,
2127                                                               runparams, basefont,
2128                                                               last_font);
2129                         running_font = font;
2130                         open_font = true;
2131                         docstring fontchange = ods.str();
2132                         // check whether the fontchange ends with a \\textcolor
2133                         // modifier and the text starts with a space (bug 4473)
2134                         docstring const last_modifier = rsplit(fontchange, '\\');
2135                         if (prefixIs(last_modifier, from_ascii("textcolor")) && c == ' ')
2136                                 os << fontchange << from_ascii("{}");
2137                         // check if the fontchange ends with a trailing blank
2138                         // (like "\small " (see bug 3382)
2139                         else if (suffixIs(fontchange, ' ') && c == ' ')
2140                                 os << fontchange.substr(0, fontchange.size() - 1) 
2141                                    << from_ascii("{}");
2142                         else
2143                                 os << fontchange;
2144                 }
2145
2146                 // FIXME: think about end_pos implementation...
2147                 if (c == ' ' && i >= start_pos && (end_pos == -1 || i < end_pos)) {
2148                         // FIXME: integrate this case in latexSpecialChar
2149                         // Do not print the separation of the optional argument
2150                         // if style.pass_thru is false. This works because
2151                         // latexSpecialChar ignores spaces if
2152                         // style.pass_thru is false.
2153                         if (i != body_pos - 1) {
2154                                 if (d->simpleTeXBlanks(
2155                                                 runparams, os, texrow,
2156                                                 i, column, font, style)) {
2157                                         // A surrogate pair was output. We
2158                                         // must not call latexSpecialChar
2159                                         // in this iteration, since it would output
2160                                         // the combining character again.
2161                                         ++i;
2162                                         continue;
2163                                 }
2164                         }
2165                 }
2166
2167                 OutputParams rp = runparams;
2168                 rp.free_spacing = style.free_spacing;
2169                 rp.local_font = &font;
2170                 rp.intitle = style.intitle;
2171
2172                 // Two major modes:  LaTeX or plain
2173                 // Handle here those cases common to both modes
2174                 // and then split to handle the two modes separately.
2175                 if (c == META_INSET) {
2176                         if (i >= start_pos && (end_pos == -1 || i < end_pos)) {
2177                                 d->latexInset(bparams, os,
2178                                                 texrow, rp, running_font,
2179                                                 basefont, outerfont, open_font,
2180                                                 runningChange, style, i, column);
2181                         }
2182                 } else {
2183                         if (i >= start_pos && (end_pos == -1 || i < end_pos)) {
2184                                 try {
2185                                         d->latexSpecialChar(os, rp, running_font, runningChange,
2186                                                 style, i, column);
2187                                 } catch (EncodingException & e) {
2188                                 if (runparams.dryrun) {
2189                                         os << "<" << _("LyX Warning: ")
2190                                            << _("uncodable character") << " '";
2191                                         os.put(c);
2192                                         os << "'>";
2193                                 } else {
2194                                         // add location information and throw again.
2195                                         e.par_id = id();
2196                                         e.pos = i;
2197                                         throw(e);
2198                                 }
2199                         }
2200                 }
2201                 }
2202
2203                 // Set the encoding to that returned from latexSpecialChar (see
2204                 // comment for encoding member in OutputParams.h)
2205                 runparams.encoding = rp.encoding;
2206         }
2207
2208         // If we have an open font definition, we have to close it
2209         if (open_font) {
2210 #ifdef FIXED_LANGUAGE_END_DETECTION
2211                 if (next_) {
2212                         running_font
2213                                 .latexWriteEndChanges(os, bparams, runparams,
2214                                         basefont,
2215                                         next_->getFont(bparams, 0, outerfont));
2216                 } else {
2217                         running_font.latexWriteEndChanges(os, bparams,
2218                                         runparams, basefont, basefont);
2219                 }
2220 #else
2221 //FIXME: For now we ALWAYS have to close the foreign font settings if they are
2222 //FIXME: there as we start another \selectlanguage with the next paragraph if
2223 //FIXME: we are in need of this. This should be fixed sometime (Jug)
2224                 running_font.latexWriteEndChanges(os, bparams, runparams,
2225                                 basefont, basefont);
2226 #endif
2227         }
2228
2229         column += Changes::latexMarkChange(os, bparams, runningChange,
2230                                            Change(Change::UNCHANGED), runparams);
2231
2232         // Needed if there is an optional argument but no contents.
2233         if (body_pos > 0 && body_pos == size()) {
2234                 os << "]~";
2235                 return_value = false;
2236         }
2237
2238         if (allowcust && d->endTeXParParams(bparams, os, texrow, runparams)
2239             && runparams.encoding != prev_encoding) {
2240                 runparams.encoding = prev_encoding;
2241                 if (!bparams.useXetex)
2242                         os << setEncoding(prev_encoding->iconvName());
2243         }
2244
2245         LYXERR(Debug::LATEX, "Paragraph::latex... done " << this);
2246         return return_value;
2247 }
2248
2249
2250 bool Paragraph::emptyTag() const
2251 {
2252         for (pos_type i = 0; i < size(); ++i) {
2253                 if (Inset const * inset = getInset(i)) {
2254                         InsetCode lyx_code = inset->lyxCode();
2255                         // FIXME testing like that is wrong. What is
2256                         // the intent?
2257                         if (lyx_code != TOC_CODE &&
2258                             lyx_code != INCLUDE_CODE &&
2259                             lyx_code != GRAPHICS_CODE &&
2260                             lyx_code != ERT_CODE &&
2261                             lyx_code != LISTINGS_CODE &&
2262                             lyx_code != FLOAT_CODE &&
2263                             lyx_code != TABULAR_CODE) {
2264                                 return false;
2265                         }
2266                 } else {
2267                         char_type c = d->text_[i];
2268                         if (c != ' ' && c != '\t')
2269                                 return false;
2270                 }
2271         }
2272         return true;
2273 }
2274
2275
2276 string Paragraph::getID(Buffer const & buf, OutputParams const & runparams)
2277         const
2278 {
2279         for (pos_type i = 0; i < size(); ++i) {
2280                 if (Inset const * inset = getInset(i)) {
2281                         InsetCode lyx_code = inset->lyxCode();
2282                         if (lyx_code == LABEL_CODE) {
2283                                 InsetLabel const * const il = static_cast<InsetLabel const *>(inset);
2284                                 docstring const & id = il->getParam("name");
2285                                 return "id='" + to_utf8(sgml::cleanID(buf, runparams, id)) + "'";
2286                         }
2287                 }
2288         }
2289         return string();
2290 }
2291
2292
2293 pos_type Paragraph::firstWordDocBook(odocstream & os, OutputParams const & runparams)
2294         const
2295 {
2296         pos_type i;
2297         for (i = 0; i < size(); ++i) {
2298                 if (Inset const * inset = getInset(i)) {
2299                         inset->docbook(os, runparams);
2300                 } else {
2301                         char_type c = d->text_[i];
2302                         if (c == ' ')
2303                                 break;
2304                         os << sgml::escapeChar(c);
2305                 }
2306         }
2307         return i;
2308 }
2309
2310
2311 pos_type Paragraph::firstWordLyXHTML(XHTMLStream & xs, OutputParams const & runparams)
2312         const
2313 {
2314         pos_type i;
2315         for (i = 0; i < size(); ++i) {
2316                 if (Inset const * inset = getInset(i)) {
2317                         inset->xhtml(xs, runparams);
2318                 } else {
2319                         char_type c = d->text_[i];
2320                         if (c == ' ')
2321                                 break;
2322                         xs << c;
2323                 }
2324         }
2325         return i;
2326 }
2327
2328
2329 bool Paragraph::Private::onlyText(Buffer const & buf, Font const & outerfont, pos_type initial) const
2330 {
2331         Font font_old;
2332         pos_type size = text_.size();
2333         for (pos_type i = initial; i < size; ++i) {
2334                 Font font = owner_->getFont(buf.params(), i, outerfont);
2335                 if (text_[i] == META_INSET)
2336                         return false;
2337                 if (i != initial && font != font_old)
2338                         return false;
2339                 font_old = font;
2340         }
2341
2342         return true;
2343 }
2344
2345
2346 void Paragraph::simpleDocBookOnePar(Buffer const & buf,
2347                                     odocstream & os,
2348                                     OutputParams const & runparams,
2349                                     Font const & outerfont,
2350                                     pos_type initial) const
2351 {
2352         bool emph_flag = false;
2353
2354         Layout const & style = *d->layout_;
2355         FontInfo font_old =
2356                 style.labeltype == LABEL_MANUAL ? style.labelfont : style.font;
2357
2358         if (style.pass_thru && !d->onlyText(buf, outerfont, initial))
2359                 os << "]]>";
2360
2361         // parsing main loop
2362         for (pos_type i = initial; i < size(); ++i) {
2363                 Font font = getFont(buf.params(), i, outerfont);
2364
2365                 // handle <emphasis> tag
2366                 if (font_old.emph() != font.fontInfo().emph()) {
2367                         if (font.fontInfo().emph() == FONT_ON) {
2368                                 os << "<emphasis>";
2369                                 emph_flag = true;
2370                         } else if (i != initial) {
2371                                 os << "</emphasis>";
2372                                 emph_flag = false;
2373                         }
2374                 }
2375
2376                 if (Inset const * inset = getInset(i)) {
2377                         inset->docbook(os, runparams);
2378                 } else {
2379                         char_type c = d->text_[i];
2380
2381                         if (style.pass_thru)
2382                                 os.put(c);
2383                         else
2384                                 os << sgml::escapeChar(c);
2385                 }
2386                 font_old = font.fontInfo();
2387         }
2388
2389         if (emph_flag) {
2390                 os << "</emphasis>";
2391         }
2392
2393         if (style.free_spacing)
2394                 os << '\n';
2395         if (style.pass_thru && !d->onlyText(buf, outerfont, initial))
2396                 os << "<![CDATA[";
2397 }
2398
2399
2400 docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
2401                                     XHTMLStream & xs,
2402                                     OutputParams const & runparams,
2403                                     Font const & outerfont,
2404                                     pos_type initial) const
2405 {
2406         docstring retval;
2407
2408         bool emph_flag = false;
2409         bool bold_flag = false;
2410         string closing_tag;
2411
2412         Layout const & style = *d->layout_;
2413
2414         if (!runparams.for_toc && runparams.html_make_pars) {
2415                 // generate a magic label for this paragraph
2416                 string const attr = "id='" + magicLabel() + "'";
2417                 xs << html::CompTag("a", attr);
2418         }
2419
2420         FontInfo font_old =
2421                 style.labeltype == LABEL_MANUAL ? style.labelfont : style.font;
2422
2423         // parsing main loop
2424         for (pos_type i = initial; i < size(); ++i) {
2425                 Font font = getFont(buf.params(), i, outerfont);
2426
2427                 // emphasis
2428                 if (font_old.emph() != font.fontInfo().emph()) {
2429                         if (font.fontInfo().emph() == FONT_ON) {
2430                                 xs << html::StartTag("em");
2431                                 emph_flag = true;
2432                         } else if (emph_flag && i != initial) {
2433                                 xs << html::EndTag("em");
2434                                 emph_flag = false;
2435                         }
2436                 }
2437                 // bold
2438                 if (font_old.series() != font.fontInfo().series()) {
2439                         if (font.fontInfo().series() == BOLD_SERIES) {
2440                                 xs << html::StartTag("strong");
2441                                 bold_flag = true;
2442                         } else if (bold_flag && i != initial) {
2443                                 xs << html::EndTag("strong");
2444                                 bold_flag = false;
2445                         }
2446                 }
2447                 // FIXME XHTML
2448                 // Other such tags? What about the other text ranges?
2449
2450                 Inset const * inset = getInset(i);
2451                 if (inset) {
2452                         InsetCommand const * ic = inset->asInsetCommand();
2453                         InsetLayout const & il = inset->getLayout();
2454                         InsetMath const * im = inset->asInsetMath();
2455                         if (!runparams.for_toc 
2456                             || im || il.isInToc() || (ic && ic->isInToc())) {
2457                                 OutputParams np = runparams;
2458                                 if (!il.htmlisblock())
2459                                         np.html_in_par = true;
2460                                 retval += inset->xhtml(xs, np);
2461                         }
2462                 } else {
2463                         char_type c = d->text_[i];
2464
2465                         if (style.pass_thru)
2466                                 xs << c;
2467                         else if (c == '-') {
2468                                 docstring str;
2469                                 int j = i + 1;
2470                                 if (j < size() && d->text_[j] == '-') {
2471                                         j += 1;
2472                                         if (j < size() && d->text_[j] == '-') {
2473                                                 str += from_ascii("&mdash;");
2474                                                 i += 2;
2475                                         } else {
2476                                                 str += from_ascii("&ndash;");
2477                                                 i += 1;
2478                                         }
2479                                 }
2480                                 else
2481                                         str += c;
2482                                 // We don't want to escape the entities. Note that
2483                                 // it is safe to do this, since str can otherwise
2484                                 // only be "-". E.g., it can't be "<".
2485                                 xs << XHTMLStream::NextRaw() << str;
2486                         } else
2487                                 xs << c;
2488                 }
2489                 font_old = font.fontInfo();
2490         }
2491
2492         xs.closeFontTags();
2493         return retval;
2494 }
2495
2496
2497 bool Paragraph::isHfill(pos_type pos) const
2498 {
2499         Inset const * inset = getInset(pos);
2500         return inset && (inset->lyxCode() == SPACE_CODE &&
2501                          inset->isStretchableSpace());
2502 }
2503
2504
2505 bool Paragraph::isNewline(pos_type pos) const
2506 {
2507         Inset const * inset = getInset(pos);
2508         return inset && inset->lyxCode() == NEWLINE_CODE;
2509 }
2510
2511
2512 bool Paragraph::isLineSeparator(pos_type pos) const
2513 {
2514         char_type const c = d->text_[pos];
2515         if (isLineSeparatorChar(c))
2516                 return true;
2517         Inset const * inset = getInset(pos);
2518         return inset && inset->isLineSeparator();
2519 }
2520
2521
2522 bool Paragraph::isWordSeparator(pos_type pos) const
2523 {
2524         if (Inset const * inset = getInset(pos))
2525                 return !inset->isLetter();
2526         char_type const c = d->text_[pos];
2527         // We want to pass the ' and escape chars to the spellchecker
2528         static docstring const quote = from_utf8(lyxrc.spellchecker_esc_chars + '\'');
2529         return (!isLetterChar(c) && !isDigit(c) && !contains(quote, c))
2530                 || pos == size();
2531 }
2532
2533
2534 bool Paragraph::isChar(pos_type pos) const
2535 {
2536         if (Inset const * inset = getInset(pos))
2537                 return inset->isChar();
2538         char_type const c = d->text_[pos];
2539         return !isLetterChar(c) && !isDigit(c) && !lyx::isSpace(c);
2540 }
2541
2542
2543 bool Paragraph::isSpace(pos_type pos) const
2544 {
2545         if (Inset const * inset = getInset(pos))
2546                 return inset->isSpace();
2547         char_type const c = d->text_[pos];
2548         return lyx::isSpace(c);
2549 }
2550
2551
2552 Language const *
2553 Paragraph::getParLanguage(BufferParams const & bparams) const
2554 {
2555         if (!empty())
2556                 return getFirstFontSettings(bparams).language();
2557         // FIXME: we should check the prev par as well (Lgb)
2558         return bparams.language;
2559 }
2560
2561
2562 bool Paragraph::isRTL(BufferParams const & bparams) const
2563 {
2564         return lyxrc.rtl_support
2565                 && getParLanguage(bparams)->rightToLeft()
2566                 && !inInset().getLayout().forceLTR();
2567 }
2568
2569
2570 void Paragraph::changeLanguage(BufferParams const & bparams,
2571                                Language const * from, Language const * to)
2572 {
2573         // change language including dummy font change at the end
2574         for (pos_type i = 0; i <= size(); ++i) {
2575                 Font font = getFontSettings(bparams, i);
2576                 if (font.language() == from) {
2577                         font.setLanguage(to);
2578                         setFont(i, font);
2579                 }
2580         }
2581 }
2582
2583
2584 bool Paragraph::isMultiLingual(BufferParams const & bparams) const
2585 {
2586         Language const * doc_language = bparams.language;
2587         FontList::const_iterator cit = d->fontlist_.begin();
2588         FontList::const_iterator end = d->fontlist_.end();
2589
2590         for (; cit != end; ++cit)
2591                 if (cit->font().language() != ignore_language &&
2592                     cit->font().language() != latex_language &&
2593                     cit->font().language() != doc_language)
2594                         return true;
2595         return false;
2596 }
2597
2598
2599 docstring Paragraph::asString(int options) const
2600 {
2601         return asString(0, size(), options);
2602 }
2603
2604
2605 docstring Paragraph::asString(pos_type beg, pos_type end, int options) const
2606 {
2607         odocstringstream os;
2608
2609         if (beg == 0 
2610                 && options & AS_STR_LABEL
2611                 && !d->params_.labelString().empty())
2612                 os << d->params_.labelString() << ' ';
2613
2614         for (pos_type i = beg; i < end; ++i) {
2615                 char_type const c = d->text_[i];
2616                 if (isPrintable(c) || c == '\t'
2617                     || (c == '\n' && (options & AS_STR_NEWLINES)))
2618                         os.put(c);
2619                 else if (c == META_INSET && (options & AS_STR_INSETS)) {
2620                         getInset(i)->tocString(os);
2621                         if (getInset(i)->asInsetMath())
2622                                 os << " ";
2623                 }
2624         }
2625
2626         return os.str();
2627 }
2628
2629
2630 docstring Paragraph::stringify(pos_type beg, pos_type end, int options, OutputParams & runparams) const
2631 {
2632         odocstringstream os;
2633
2634         if (beg == 0 
2635                 && options & AS_STR_LABEL
2636                 && !d->params_.labelString().empty())
2637                 os << d->params_.labelString() << ' ';
2638
2639         for (pos_type i = beg; i < end; ++i) {
2640                 char_type const c = d->text_[i];
2641                 if (isPrintable(c) || c == '\t'
2642                     || (c == '\n' && (options & AS_STR_NEWLINES)))
2643                         os.put(c);
2644                 else if (c == META_INSET && (options & AS_STR_INSETS)) {
2645                         getInset(i)->plaintext(os, runparams);
2646                 }
2647         }
2648
2649         return os.str();
2650 }
2651
2652
2653 void Paragraph::setInsetOwner(Inset const * inset)
2654 {
2655         d->inset_owner_ = inset;
2656 }
2657
2658
2659 int Paragraph::id() const
2660 {
2661         return d->id_;
2662 }
2663
2664
2665 void Paragraph::setId(int id)
2666 {
2667         d->id_ = id;
2668 }
2669
2670
2671 Layout const & Paragraph::layout() const
2672 {
2673         return *d->layout_;
2674 }
2675
2676
2677 void Paragraph::setLayout(Layout const & layout)
2678 {
2679         d->layout_ = &layout;
2680 }
2681
2682
2683 void Paragraph::setDefaultLayout(DocumentClass const & tc)
2684
2685         setLayout(tc.defaultLayout()); 
2686 }
2687
2688
2689 void Paragraph::setPlainLayout(DocumentClass const & tc)
2690
2691         setLayout(tc.plainLayout()); 
2692 }
2693
2694
2695 void Paragraph::setPlainOrDefaultLayout(DocumentClass const & tclass)
2696 {
2697         if (usePlainLayout())
2698                 setPlainLayout(tclass);
2699         else
2700                 setDefaultLayout(tclass);
2701 }
2702
2703
2704 Inset const & Paragraph::inInset() const
2705 {
2706         LASSERT(d->inset_owner_, throw ExceptionMessage(BufferException,
2707                 _("Memory problem"), _("Paragraph not properly initialized")));
2708         return *d->inset_owner_;
2709 }
2710
2711
2712 ParagraphParameters & Paragraph::params()
2713 {
2714         return d->params_;
2715 }
2716
2717
2718 ParagraphParameters const & Paragraph::params() const
2719 {
2720         return d->params_;
2721 }
2722
2723
2724 bool Paragraph::isFreeSpacing() const
2725 {
2726         if (d->layout_->free_spacing)
2727                 return true;
2728         return d->inset_owner_ && d->inset_owner_->isFreeSpacing();
2729 }
2730
2731
2732 bool Paragraph::allowEmpty() const
2733 {
2734         if (d->layout_->keepempty)
2735                 return true;
2736         return d->inset_owner_ && d->inset_owner_->allowEmpty();
2737 }
2738
2739
2740 char_type Paragraph::transformChar(char_type c, pos_type pos) const
2741 {
2742         if (!Encodings::isArabicChar(c))
2743                 return c;
2744
2745         char_type prev_char = ' ';
2746         char_type next_char = ' ';
2747
2748         for (pos_type i = pos - 1; i >= 0; --i) {
2749                 char_type const par_char = d->text_[i];
2750                 if (!Encodings::isArabicComposeChar(par_char)) {
2751                         prev_char = par_char;
2752                         break;
2753                 }
2754         }
2755
2756         for (pos_type i = pos + 1, end = size(); i < end; ++i) {
2757                 char_type const par_char = d->text_[i];
2758                 if (!Encodings::isArabicComposeChar(par_char)) {
2759                         next_char = par_char;
2760                         break;
2761                 }
2762         }
2763
2764         if (Encodings::isArabicChar(next_char)) {
2765                 if (Encodings::isArabicChar(prev_char) &&
2766                         !Encodings::isArabicSpecialChar(prev_char))
2767                         return Encodings::transformChar(c, Encodings::FORM_MEDIAL);
2768                 else
2769                         return Encodings::transformChar(c, Encodings::FORM_INITIAL);
2770         } else {
2771                 if (Encodings::isArabicChar(prev_char) &&
2772                         !Encodings::isArabicSpecialChar(prev_char))
2773                         return Encodings::transformChar(c, Encodings::FORM_FINAL);
2774                 else
2775                         return Encodings::transformChar(c, Encodings::FORM_ISOLATED);
2776         }
2777 }
2778
2779
2780 int Paragraph::checkBiblio(Buffer const & buffer)
2781 {
2782         // FIXME From JS:
2783         // This is getting more and more a mess. ...We really should clean
2784         // up this bibitem issue for 1.6. See also bug 2743.
2785
2786         // Add bibitem insets if necessary
2787         if (d->layout_->labeltype != LABEL_BIBLIO)
2788                 return 0;
2789
2790         bool hasbibitem = !d->insetlist_.empty()
2791                 // Insist on it being in pos 0
2792                 && d->text_[0] == META_INSET
2793                 && d->insetlist_.begin()->inset->lyxCode() == BIBITEM_CODE;
2794
2795         bool track_changes = buffer.params().trackChanges;
2796
2797         docstring oldkey;
2798         docstring oldlabel;
2799
2800         // remove a bibitem in pos != 0
2801         // restore it later in pos 0 if necessary
2802         // (e.g. if a user inserts contents _before_ the item)
2803         // we're assuming there's only one of these, which there
2804         // should be.
2805         int erasedInsetPosition = -1;
2806         InsetList::iterator it = d->insetlist_.begin();
2807         InsetList::iterator end = d->insetlist_.end();
2808         for (; it != end; ++it)
2809                 if (it->inset->lyxCode() == BIBITEM_CODE
2810                     && it->pos > 0) {
2811                         InsetBibitem * olditem = static_cast<InsetBibitem *>(it->inset);
2812                         oldkey = olditem->getParam("key");
2813                         oldlabel = olditem->getParam("label");
2814                         erasedInsetPosition = it->pos;
2815                         eraseChar(erasedInsetPosition, track_changes);
2816                         break;
2817         }
2818
2819         // There was an InsetBibitem at the beginning, and we didn't
2820         // have to erase one.
2821         if (hasbibitem && erasedInsetPosition < 0)
2822                         return 0;
2823
2824         // There was an InsetBibitem at the beginning and we did have to
2825         // erase one. So we give its properties to the beginning inset.
2826         if (hasbibitem) {
2827                 InsetBibitem * inset =
2828                         static_cast<InsetBibitem *>(d->insetlist_.begin()->inset);
2829                 if (!oldkey.empty())
2830                         inset->setParam("key", oldkey);
2831                 inset->setParam("label", oldlabel);
2832                 return -erasedInsetPosition;
2833         }
2834
2835         // There was no inset at the beginning, so we need to create one with
2836         // the key and label of the one we erased.
2837         InsetBibitem * inset = 
2838                 new InsetBibitem(const_cast<Buffer *>(&buffer), InsetCommandParams(BIBITEM_CODE));
2839         // restore values of previously deleted item in this par.
2840         if (!oldkey.empty())
2841                 inset->setParam("key", oldkey);
2842         inset->setParam("label", oldlabel);
2843         insertInset(0, static_cast<Inset *>(inset),
2844                     Change(track_changes ? Change::INSERTED : Change::UNCHANGED));
2845
2846         return 1;
2847 }
2848
2849
2850 void Paragraph::checkAuthors(AuthorList const & authorList)
2851 {
2852         d->changes_.checkAuthors(authorList);
2853 }
2854
2855
2856 bool Paragraph::isChanged(pos_type pos) const
2857 {
2858         return lookupChange(pos).changed();
2859 }
2860
2861
2862 bool Paragraph::isInserted(pos_type pos) const
2863 {
2864         return lookupChange(pos).inserted();
2865 }
2866
2867
2868 bool Paragraph::isDeleted(pos_type pos) const
2869 {
2870         return lookupChange(pos).deleted();
2871 }
2872
2873
2874 InsetList const & Paragraph::insetList() const
2875 {
2876         return d->insetlist_;
2877 }
2878
2879
2880 void Paragraph::setBuffer(Buffer & b)
2881 {
2882         d->insetlist_.setBuffer(b);
2883 }
2884
2885
2886 Inset * Paragraph::releaseInset(pos_type pos)
2887 {
2888         Inset * inset = d->insetlist_.release(pos);
2889         /// does not honour change tracking!
2890         eraseChar(pos, false);
2891         return inset;
2892 }
2893
2894
2895 Inset * Paragraph::getInset(pos_type pos)
2896 {
2897         return (pos < pos_type(d->text_.size()) && d->text_[pos] == META_INSET)
2898                  ? d->insetlist_.get(pos) : 0;
2899 }
2900
2901
2902 Inset const * Paragraph::getInset(pos_type pos) const
2903 {
2904         return (pos < pos_type(d->text_.size()) && d->text_[pos] == META_INSET)
2905                  ? d->insetlist_.get(pos) : 0;
2906 }
2907
2908
2909 void Paragraph::changeCase(BufferParams const & bparams, pos_type pos,
2910                 pos_type & right, TextCase action)
2911 {
2912         // process sequences of modified characters; in change
2913         // tracking mode, this approach results in much better
2914         // usability than changing case on a char-by-char basis
2915         docstring changes;
2916
2917         bool const trackChanges = bparams.trackChanges;
2918
2919         bool capitalize = true;
2920
2921         for (; pos < right; ++pos) {
2922                 char_type oldChar = d->text_[pos];
2923                 char_type newChar = oldChar;
2924
2925                 // ignore insets and don't play with deleted text!
2926                 if (oldChar != META_INSET && !isDeleted(pos)) {
2927                         switch (action) {
2928                                 case text_lowercase:
2929                                         newChar = lowercase(oldChar);
2930                                         break;
2931                                 case text_capitalization:
2932                                         if (capitalize) {
2933                                                 newChar = uppercase(oldChar);
2934                                                 capitalize = false;
2935                                         }
2936                                         break;
2937                                 case text_uppercase:
2938                                         newChar = uppercase(oldChar);
2939                                         break;
2940                         }
2941                 }
2942
2943                 if (isWordSeparator(pos) || isDeleted(pos)) {
2944                         // permit capitalization again
2945                         capitalize = true;
2946                 }
2947
2948                 if (oldChar != newChar) {
2949                         changes += newChar;
2950                         if (pos != right - 1)
2951                                 continue;
2952                         // step behind the changing area
2953                         pos++;
2954                 }
2955
2956                 int erasePos = pos - changes.size();
2957                 for (size_t i = 0; i < changes.size(); i++) {
2958                         insertChar(pos, changes[i],
2959                                    getFontSettings(bparams,
2960                                                    erasePos),
2961                                    trackChanges);
2962                         if (!eraseChar(erasePos, trackChanges)) {
2963                                 ++erasePos;
2964                                 ++pos; // advance
2965                                 ++right; // expand selection
2966                         }
2967                 }
2968                 changes.clear();
2969         }
2970 }
2971
2972
2973 bool Paragraph::find(docstring const & str, bool cs, bool mw,
2974                 pos_type pos, bool del) const
2975 {
2976         int const strsize = str.length();
2977         int i = 0;
2978         pos_type const parsize = d->text_.size();
2979         for (i = 0; pos + i < parsize; ++i) {
2980                 if (i >= strsize)
2981                         break;
2982                 if (cs && str[i] != d->text_[pos + i])
2983                         break;
2984                 if (!cs && uppercase(str[i]) != uppercase(d->text_[pos + i]))
2985                         break;
2986                 if (!del && isDeleted(pos + i))
2987                         break;
2988         }
2989
2990         if (i != strsize)
2991                 return false;
2992
2993         // if necessary, check whether string matches word
2994         if (mw) {
2995                 if (pos > 0 && !isWordSeparator(pos - 1))
2996                         return false;
2997                 if (pos + strsize < parsize
2998                         && !isWordSeparator(pos + strsize))
2999                         return false;
3000         }
3001
3002         return true;
3003 }
3004
3005
3006 char_type Paragraph::getChar(pos_type pos) const
3007 {
3008         return d->text_[pos];
3009 }
3010
3011
3012 pos_type Paragraph::size() const
3013 {
3014         return d->text_.size();
3015 }
3016
3017
3018 bool Paragraph::empty() const
3019 {
3020         return d->text_.empty();
3021 }
3022
3023
3024 bool Paragraph::isInset(pos_type pos) const
3025 {
3026         return d->text_[pos] == META_INSET;
3027 }
3028
3029
3030 bool Paragraph::isSeparator(pos_type pos) const
3031 {
3032         //FIXME: Are we sure this can be the only separator?
3033         return d->text_[pos] == ' ';
3034 }
3035
3036
3037 void Paragraph::deregisterWords()
3038 {
3039         map<Language, Private::Words>::const_iterator itl;
3040         Private::Words::const_iterator it;
3041         for (itl = d->words_.begin(); itl != d->words_.end(); ++itl) {
3042                 WordList * wl = theWordList(itl->first);
3043                 for (it = (itl->second).begin(); it != (itl->second).end(); ++it)
3044                         wl->remove(*it);
3045         }
3046         d->words_.clear();
3047 }
3048
3049
3050 void Paragraph::locateWord(pos_type & from, pos_type & to,
3051         word_location const loc) const
3052 {
3053         switch (loc) {
3054         case WHOLE_WORD_STRICT:
3055                 if (from == 0 || from == size()
3056                     || isWordSeparator(from)
3057                     || isWordSeparator(from - 1)) {
3058                         to = from;
3059                         return;
3060                 }
3061                 // no break here, we go to the next
3062
3063         case WHOLE_WORD:
3064                 // If we are already at the beginning of a word, do nothing
3065                 if (!from || isWordSeparator(from - 1))
3066                         break;
3067                 // no break here, we go to the next
3068
3069         case PREVIOUS_WORD:
3070                 // always move the cursor to the beginning of previous word
3071                 while (from && !isWordSeparator(from - 1))
3072                         --from;
3073                 break;
3074         case NEXT_WORD:
3075                 LYXERR0("Paragraph::locateWord: NEXT_WORD not implemented yet");
3076                 break;
3077         case PARTIAL_WORD:
3078                 // no need to move the 'from' cursor
3079                 break;
3080         }
3081         to = from;
3082         while (to < size() && !isWordSeparator(to))
3083                 ++to;
3084 }
3085
3086
3087 void Paragraph::collectWords()
3088 {
3089         pos_type n = size();
3090         for (pos_type pos = 0; pos < n; ++pos) {
3091                 if (isWordSeparator(pos))
3092                         continue;
3093                 pos_type from = pos;
3094                 locateWord(from, pos, WHOLE_WORD);
3095                 if (pos - from >= 6) {
3096                         docstring word = asString(from, pos, AS_STR_NONE);
3097                         FontList::const_iterator cit = d->fontlist_.fontIterator(pos);
3098                         if (cit == d->fontlist_.end())
3099                                 return;
3100                         Language const * lang = cit->font().language();
3101                         d->words_[*lang].insert(word);
3102                 }
3103         }
3104 }
3105
3106
3107 void Paragraph::registerWords()
3108 {
3109         map<Language, Private::Words>::const_iterator itl;
3110         Private::Words::const_iterator it;
3111         for (itl = d->words_.begin(); itl != d->words_.end(); ++itl) {
3112                 WordList * wl = theWordList(itl->first);
3113                 for (it = (itl->second).begin(); it != (itl->second).end(); ++it)
3114                         wl->insert(*it);
3115         }
3116 }
3117
3118
3119 void Paragraph::updateWords()
3120 {
3121         deregisterWords();
3122         collectWords();
3123         registerWords();
3124 }
3125
3126
3127 bool Paragraph::spellCheck(pos_type & from, pos_type & to, WordLangTuple & wl,
3128         docstring_list & suggestions, bool do_suggestion) const
3129 {
3130         SpellChecker * speller = theSpellChecker();
3131         if (!speller)
3132                 return false;
3133
3134         locateWord(from, to, WHOLE_WORD);
3135         if (from == to || from >= pos_type(d->text_.size()))
3136                 return false;
3137
3138         docstring word = asString(from, to, AS_STR_INSETS);
3139         string lang_code;
3140         string lang_variety;
3141         if (!lyxrc.spellchecker_alt_lang.empty())
3142                 lang_variety = split(lyxrc.spellchecker_alt_lang, lang_code, '-');
3143         else {
3144               lang_code = getFontSettings(
3145                     d->inset_owner_->buffer().params(), from).language()->code();
3146               lang_variety = getFontSettings(
3147                     d->inset_owner_->buffer().params(), from).language()->variety();
3148         }
3149         wl = WordLangTuple(word, lang_code, lang_variety);
3150         SpellChecker::Result res = speller->check(wl);
3151         // Just ignore any error that the spellchecker reports.
3152         // FIXME: we should through out an exception and catch it in the GUI to
3153         // display the error.
3154         if (!speller->error().empty())
3155                 return false;
3156
3157         bool const misspelled = res != SpellChecker::OK
3158                 && res != SpellChecker::IGNORED_WORD;
3159
3160         if (lyxrc.spellcheck_continuously)
3161                 d->fontlist_.setMisspelled(from, to, misspelled);
3162
3163         if (misspelled && do_suggestion)
3164                 speller->suggest(wl, suggestions);
3165         else
3166                 suggestions.clear();
3167
3168         return misspelled;
3169 }
3170
3171
3172 bool Paragraph::isMisspelled(pos_type pos) const
3173 {
3174         pos_type from = pos;
3175         pos_type to = pos;
3176         WordLangTuple wl;
3177         docstring_list suggestions;
3178         return spellCheck(from, to, wl, suggestions, false);
3179 }
3180
3181
3182 string Paragraph::magicLabel() const
3183 {
3184         stringstream ss;
3185         ss << "magicparlabel-" << id();
3186         return ss.str();
3187 }
3188
3189
3190 } // namespace lyx