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