]> git.lyx.org Git - lyx.git/blob - src/paragraph.C
Fix dEPM crash:
[lyx.git] / src / paragraph.C
1 /**
2  * \file paragraph.C
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 #include "paragraph_pimpl.h"
22
23 #include "buffer.h"
24 #include "bufferparams.h"
25 #include "counters.h"
26 #include "encoding.h"
27 #include "debug.h"
28 #include "gettext.h"
29 #include "language.h"
30 #include "LaTeXFeatures.h"
31 #include "lyxfont.h"
32 #include "lyxrc.h"
33 #include "lyxrow.h"
34 #include "outputparams.h"
35 #include "paragraph_funcs.h"
36 #include "ParagraphList_fwd.h"
37 #include "sgml.h"
38 #include "texrow.h"
39 #include "vspace.h"
40
41 #include "insets/insetbibitem.h"
42 #include "insets/insetoptarg.h"
43
44 #include "support/lstrings.h"
45 #include "support/textutils.h"
46 #include "support/convert.h"
47 #include "support/unicode.h"
48
49 #include <boost/bind.hpp>
50
51 #include <algorithm>
52 #include <list>
53 #include <stack>
54 #include <sstream>
55
56
57 namespace lyx {
58
59 using lyx::support::contains;
60 using lyx::support::rsplit;
61 using support::subst;
62
63 using std::distance;
64 using std::endl;
65 using std::list;
66 using std::stack;
67 using std::string;
68 using std::ostream;
69 using std::ostringstream;
70
71
72 Paragraph::Paragraph()
73         : begin_of_body_(0), pimpl_(new Paragraph::Pimpl(this))
74 {
75         itemdepth = 0;
76         params().clear();
77 }
78
79
80 Paragraph::Paragraph(Paragraph const & par)
81         :       itemdepth(par.itemdepth), insetlist(par.insetlist),
82                 dim_(par.dim_),
83                 rows_(par.rows_), rowSignature_(par.rowSignature_),
84                 layout_(par.layout_),
85                 text_(par.text_), begin_of_body_(par.begin_of_body_),
86           pimpl_(new Paragraph::Pimpl(*par.pimpl_, this))
87 {
88         //lyxerr << "Paragraph::Paragraph(Paragraph const&)" << endl;
89         InsetList::iterator it = insetlist.begin();
90         InsetList::iterator end = insetlist.end();
91         for (; it != end; ++it)
92                 it->inset = it->inset->clone().release();
93 }
94
95
96 Paragraph & Paragraph::operator=(Paragraph const & par)
97 {
98         // needed as we will destroy the pimpl_ before copying it
99         if (&par != this) {
100                 itemdepth = par.itemdepth;
101
102                 insetlist = par.insetlist;
103                 InsetList::iterator it = insetlist.begin();
104                 InsetList::iterator end = insetlist.end();
105                 for (; it != end; ++it)
106                         it->inset = it->inset->clone().release();
107
108                 rows_ = par.rows_;
109                 dim_ = par.dim_;
110                 rowSignature_ = par.rowSignature_;
111                 layout_ = par.layout();
112                 text_ = par.text_;
113                 begin_of_body_ = par.begin_of_body_;
114
115                 delete pimpl_;
116                 pimpl_ = new Pimpl(*par.pimpl_, this);
117         }
118         return *this;
119 }
120
121
122 Paragraph::~Paragraph()
123 {
124         delete pimpl_;
125         //
126         //lyxerr << "Paragraph::paragraph_id = "
127         //       << Paragraph::paragraph_id << endl;
128 }
129
130
131 void Paragraph::write(Buffer const & buf, ostream & os,
132                           BufferParams const & bparams,
133                           depth_type & dth) const
134 {
135         // The beginning or end of a deeper (i.e. nested) area?
136         if (dth != params().depth()) {
137                 if (params().depth() > dth) {
138                         while (params().depth() > dth) {
139                                 os << "\n\\begin_deeper";
140                                 ++dth;
141                         }
142                 } else {
143                         while (params().depth() < dth) {
144                                 os << "\n\\end_deeper";
145                                 --dth;
146                         }
147                 }
148         }
149
150         // First write the layout
151         os << "\n\\begin_layout " << layout()->name() << '\n';
152
153         params().write(os);
154
155         LyXFont font1(LyXFont::ALL_INHERIT, bparams.language);
156
157         Change running_change = Change(Change::UNCHANGED);
158
159         int column = 0;
160         for (pos_type i = 0; i <= size(); ++i) {
161
162                 Change change = pimpl_->lookupChange(i);
163                 Changes::lyxMarkChange(os, column, running_change, change);
164                 running_change = change;
165
166                 if (i == size())
167                         break;
168
169                 // Write font changes
170                 LyXFont font2 = getFontSettings(bparams, i);
171                 if (font2 != font1) {
172                         font2.lyxWriteChanges(font1, os);
173                         column = 0;
174                         font1 = font2;
175                 }
176
177                 value_type const c = getChar(i);
178                 switch (c) {
179                 case META_INSET:
180                 {
181                         InsetBase const * inset = getInset(i);
182                         if (inset)
183                                 if (inset->directWrite()) {
184                                         // international char, let it write
185                                         // code directly so it's shorter in
186                                         // the file
187                                         inset->write(buf, os);
188                                 } else {
189                                         if (i)
190                                                 os << '\n';
191                                         os << "\\begin_inset ";
192                                         inset->write(buf, os);
193                                         os << "\n\\end_inset\n\n";
194                                         column = 0;
195                                 }
196                 }
197                 break;
198                 case '\\':
199                         os << "\n\\backslash\n";
200                         column = 0;
201                         break;
202                 case '.':
203                         if (i + 1 < size() && getChar(i + 1) == ' ') {
204                                 os << ".\n";
205                                 column = 0;
206                         } else
207                                 os << '.';
208                         break;
209                 default:
210                         if ((column > 70 && c == ' ')
211                             || column > 79) {
212                                 os << '\n';
213                                 column = 0;
214                         }
215                         // this check is to amend a bug. LyX sometimes
216                         // inserts '\0' this could cause problems.
217                         if (c != '\0') {
218                                 std::vector<char> tmp = ucs4_to_utf8(c);
219                                 tmp.push_back('\0');
220                                 os << &tmp[0];
221                         } else
222                                 lyxerr << "ERROR (Paragraph::writeFile):"
223                                         " NULL char in structure." << endl;
224                         ++column;
225                         break;
226                 }
227         }
228
229         os << "\n\\end_layout\n";
230 }
231
232
233 void Paragraph::validate(LaTeXFeatures & features) const
234 {
235         pimpl_->validate(features, *layout());
236 }
237
238
239 bool Paragraph::eraseChar(pos_type pos, bool trackChanges)
240 {
241         return pimpl_->eraseChar(pos, trackChanges);
242 }
243
244
245 int Paragraph::eraseChars(pos_type start, pos_type end, bool trackChanges)
246 {
247         return pimpl_->eraseChars(start, end, trackChanges);
248 }
249
250
251 void Paragraph::insert(pos_type start, docstring const & str,
252                        LyXFont const & font, Change const & change)
253 {
254         for (size_t i = 0, n = str.size(); i != n ; ++i)
255                 insertChar(start + i, str[i], font, change);
256 }
257
258
259 void Paragraph::insertChar(pos_type pos, Paragraph::value_type c,
260                            bool trackChanges)
261 {
262         pimpl_->insertChar(pos, c, Change(trackChanges ?
263                            Change::INSERTED : Change::UNCHANGED));
264 }
265
266
267 void Paragraph::insertChar(pos_type pos, Paragraph::value_type c,
268                            LyXFont const & font, bool trackChanges)
269 {
270         pimpl_->insertChar(pos, c, Change(trackChanges ?
271                            Change::INSERTED : Change::UNCHANGED));
272         setFont(pos, font);
273 }
274
275
276 void Paragraph::insertChar(pos_type pos, Paragraph::value_type c,
277                            LyXFont const & font, Change const & change)
278 {
279         pimpl_->insertChar(pos, c, change);
280         setFont(pos, font);
281 }
282
283
284 void Paragraph::insertInset(pos_type pos, InsetBase * inset,
285                             Change const & change)
286 {
287         pimpl_->insertInset(pos, inset, change);
288 }
289
290
291 void Paragraph::insertInset(pos_type pos, InsetBase * inset,
292                             LyXFont const & font, Change const & change)
293 {
294         pimpl_->insertInset(pos, inset, change);
295         setFont(pos, font);
296 }
297
298
299 bool Paragraph::insetAllowed(InsetBase_code code)
300 {
301         return !pimpl_->inset_owner || pimpl_->inset_owner->insetAllowed(code);
302 }
303
304
305 // Gets uninstantiated font setting at position.
306 LyXFont const Paragraph::getFontSettings(BufferParams const & bparams,
307                                          pos_type pos) const
308 {
309         if (pos > size()) {
310                 lyxerr << " pos: " << pos << " size: " << size() << endl;
311                 BOOST_ASSERT(pos <= size());
312         }
313
314         Pimpl::FontList::const_iterator cit = pimpl_->fontlist.begin();
315         Pimpl::FontList::const_iterator end = pimpl_->fontlist.end();
316         for (; cit != end; ++cit)
317                 if (cit->pos() >= pos)
318                         break;
319
320         if (cit != end)
321                 return cit->font();
322
323         if (pos == size() && !empty())
324                 return getFontSettings(bparams, pos - 1);
325
326         return LyXFont(LyXFont::ALL_INHERIT, getParLanguage(bparams));
327 }
328
329
330 FontSpan Paragraph::fontSpan(pos_type pos) const
331 {
332         BOOST_ASSERT(pos <= size());
333         pos_type start = 0;
334
335         Pimpl::FontList::const_iterator cit = pimpl_->fontlist.begin();
336         Pimpl::FontList::const_iterator end = pimpl_->fontlist.end();
337         for (; cit != end; ++cit) {
338                 if (cit->pos() >= pos) {
339                         if (pos >= beginOfBody())
340                                 return FontSpan(std::max(start, beginOfBody()),
341                                                 cit->pos());
342                         else
343                                 return FontSpan(start,
344                                                 std::min(beginOfBody() - 1,
345                                                          cit->pos()));
346                 }
347                 start = cit->pos() + 1;
348         }
349
350         // This should not happen, but if so, we take no chances.
351         //lyxerr << "Paragraph::getEndPosOfFontSpan: This should not happen!"
352         //      << endl;
353         return FontSpan(pos, pos);
354 }
355
356
357 // Gets uninstantiated font setting at position 0
358 LyXFont const Paragraph::getFirstFontSettings(BufferParams const & bparams) const
359 {
360         if (!empty() && !pimpl_->fontlist.empty())
361                 return pimpl_->fontlist[0].font();
362
363         return LyXFont(LyXFont::ALL_INHERIT, bparams.language);
364 }
365
366
367 // Gets the fully instantiated font at a given position in a paragraph
368 // This is basically the same function as LyXText::GetFont() in text2.C.
369 // The difference is that this one is used for generating the LaTeX file,
370 // and thus cosmetic "improvements" are disallowed: This has to deliver
371 // the true picture of the buffer. (Asger)
372 LyXFont const Paragraph::getFont(BufferParams const & bparams, pos_type pos,
373                                  LyXFont const & outerfont) const
374 {
375         BOOST_ASSERT(pos >= 0);
376
377         LyXLayout_ptr const & lout = layout();
378
379         pos_type const body_pos = beginOfBody();
380
381         LyXFont layoutfont;
382         if (pos < body_pos)
383                 layoutfont = lout->labelfont;
384         else
385                 layoutfont = lout->font;
386
387         LyXFont font = getFontSettings(bparams, pos);
388         font.realize(layoutfont);
389         font.realize(outerfont);
390         font.realize(bparams.getFont());
391
392         return font;
393 }
394
395
396 LyXFont const Paragraph::getLabelFont
397         (BufferParams const & bparams, LyXFont const & outerfont) const
398 {
399         LyXFont tmpfont = layout()->labelfont;
400         tmpfont.setLanguage(getParLanguage(bparams));
401         tmpfont.realize(outerfont);
402         tmpfont.realize(bparams.getFont());
403         return tmpfont;
404 }
405
406
407 LyXFont const Paragraph::getLayoutFont
408         (BufferParams const & bparams, LyXFont const & outerfont) const
409 {
410         LyXFont tmpfont = layout()->font;
411         tmpfont.setLanguage(getParLanguage(bparams));
412         tmpfont.realize(outerfont);
413         tmpfont.realize(bparams.getFont());
414         return tmpfont;
415 }
416
417
418 /// Returns the height of the highest font in range
419 LyXFont_size Paragraph::highestFontInRange
420         (pos_type startpos, pos_type endpos, LyXFont_size def_size) const
421 {
422         if (pimpl_->fontlist.empty())
423                 return def_size;
424
425         Pimpl::FontList::const_iterator end_it = pimpl_->fontlist.begin();
426         Pimpl::FontList::const_iterator const end = pimpl_->fontlist.end();
427         for (; end_it != end; ++end_it) {
428                 if (end_it->pos() >= endpos)
429                         break;
430         }
431
432         if (end_it != end)
433                 ++end_it;
434
435         Pimpl::FontList::const_iterator cit = pimpl_->fontlist.begin();
436         for (; cit != end; ++cit) {
437                 if (cit->pos() >= startpos)
438                         break;
439         }
440
441         LyXFont::FONT_SIZE maxsize = LyXFont::SIZE_TINY;
442         for (; cit != end_it; ++cit) {
443                 LyXFont::FONT_SIZE size = cit->font().size();
444                 if (size == LyXFont::INHERIT_SIZE)
445                         size = def_size;
446                 if (size > maxsize && size <= LyXFont::SIZE_HUGER)
447                         maxsize = size;
448         }
449         return maxsize;
450 }
451
452
453 Paragraph::value_type
454 Paragraph::getUChar(BufferParams const & bparams, pos_type pos) const
455 {
456         value_type c = getChar(pos);
457         if (!lyxrc.rtl_support)
458                 return c;
459
460         value_type uc = c;
461         switch (c) {
462         case '(':
463                 uc = ')';
464                 break;
465         case ')':
466                 uc = '(';
467                 break;
468         case '[':
469                 uc = ']';
470                 break;
471         case ']':
472                 uc = '[';
473                 break;
474         case '{':
475                 uc = '}';
476                 break;
477         case '}':
478                 uc = '{';
479                 break;
480         case '<':
481                 uc = '>';
482                 break;
483         case '>':
484                 uc = '<';
485                 break;
486         }
487         if (uc != c && getFontSettings(bparams, pos).isRightToLeft())
488                 return uc;
489         else
490                 return c;
491 }
492
493
494 void Paragraph::setFont(pos_type pos, LyXFont const & font)
495 {
496         BOOST_ASSERT(pos <= size());
497
498         // First, reduce font against layout/label font
499         // Update: The setCharFont() routine in text2.C already
500         // reduces font, so we don't need to do that here. (Asger)
501         // No need to simplify this because it will disappear
502         // in a new kernel. (Asger)
503         // Next search font table
504
505         Pimpl::FontList::iterator beg = pimpl_->fontlist.begin();
506         Pimpl::FontList::iterator it = beg;
507         Pimpl::FontList::iterator endit = pimpl_->fontlist.end();
508         for (; it != endit; ++it) {
509                 if (it->pos() >= pos)
510                         break;
511         }
512         size_t const i = distance(beg, it);
513         bool notfound = (it == endit);
514
515         if (!notfound && pimpl_->fontlist[i].font() == font)
516                 return;
517
518         bool begin = pos == 0 || notfound ||
519                 (i > 0 && pimpl_->fontlist[i - 1].pos() == pos - 1);
520         // Is position pos is a beginning of a font block?
521         bool end = !notfound && pimpl_->fontlist[i].pos() == pos;
522         // Is position pos is the end of a font block?
523         if (begin && end) { // A single char block
524                 if (i + 1 < pimpl_->fontlist.size() &&
525                     pimpl_->fontlist[i + 1].font() == font) {
526                         // Merge the singleton block with the next block
527                         pimpl_->fontlist.erase(pimpl_->fontlist.begin() + i);
528                         if (i > 0 && pimpl_->fontlist[i - 1].font() == font)
529                                 pimpl_->fontlist.erase(pimpl_->fontlist.begin() + i - 1);
530                 } else if (i > 0 && pimpl_->fontlist[i - 1].font() == font) {
531                         // Merge the singleton block with the previous block
532                         pimpl_->fontlist[i - 1].pos(pos);
533                         pimpl_->fontlist.erase(pimpl_->fontlist.begin() + i);
534                 } else
535                         pimpl_->fontlist[i].font(font);
536         } else if (begin) {
537                 if (i > 0 && pimpl_->fontlist[i - 1].font() == font)
538                         pimpl_->fontlist[i - 1].pos(pos);
539                 else
540                         pimpl_->fontlist.insert(pimpl_->fontlist.begin() + i,
541                                         Pimpl::FontTable(pos, font));
542         } else if (end) {
543                 pimpl_->fontlist[i].pos(pos - 1);
544                 if (!(i + 1 < pimpl_->fontlist.size() &&
545                       pimpl_->fontlist[i + 1].font() == font))
546                         pimpl_->fontlist.insert(pimpl_->fontlist.begin() + i + 1,
547                                         Pimpl::FontTable(pos, font));
548         } else { // The general case. The block is splitted into 3 blocks
549                 pimpl_->fontlist.insert(pimpl_->fontlist.begin() + i,
550                                 Pimpl::FontTable(pos - 1, pimpl_->fontlist[i].font()));
551                 pimpl_->fontlist.insert(pimpl_->fontlist.begin() + i + 1,
552                                 Pimpl::FontTable(pos, font));
553         }
554 }
555
556
557 void Paragraph::makeSameLayout(Paragraph const & par)
558 {
559         layout(par.layout());
560         // move to pimpl?
561         params() = par.params();
562 }
563
564
565 int Paragraph::stripLeadingSpaces()
566 {
567         if (isFreeSpacing())
568                 return 0;
569
570         int i = 0;
571         while (!empty() && (isNewline(0) || isLineSeparator(0))
572                 && !isDeleted(0)) {
573                 eraseChar(0, false); // no change tracking here
574                 ++i;
575         }
576
577         return i;
578 }
579
580
581 bool Paragraph::hasSameLayout(Paragraph const & par) const
582 {
583         return par.layout() == layout() && params().sameLayout(par.params());
584 }
585
586
587 depth_type Paragraph::getDepth() const
588 {
589         return params().depth();
590 }
591
592
593 depth_type Paragraph::getMaxDepthAfter() const
594 {
595         if (layout()->isEnvironment())
596                 return params().depth() + 1;
597         else
598                 return params().depth();
599 }
600
601
602 char Paragraph::getAlign() const
603 {
604         return params().align();
605 }
606
607
608 docstring const & Paragraph::getLabelstring() const
609 {
610         return params().labelString();
611 }
612
613
614 // the next two functions are for the manual labels
615 docstring const Paragraph::getLabelWidthString() const
616 {
617         if (!params().labelWidthString().empty())
618                 return params().labelWidthString();
619         else
620                 return _("Senseless with this layout!");
621 }
622
623
624 void Paragraph::setLabelWidthString(docstring const & s)
625 {
626         params().labelWidthString(s);
627 }
628
629
630 void Paragraph::applyLayout(LyXLayout_ptr const & new_layout)
631 {
632         layout(new_layout);
633         params().labelWidthString(docstring());
634         params().align(LYX_ALIGN_LAYOUT);
635         params().spacing(Spacing(Spacing::Default));
636 }
637
638
639 pos_type Paragraph::beginOfBody() const
640 {
641         return begin_of_body_;
642 }
643
644
645 void Paragraph::setBeginOfBody()
646 {
647         if (layout()->labeltype != LABEL_MANUAL) {
648                 begin_of_body_ = 0;
649                 return;
650         }
651
652         // Unroll the first two cycles of the loop
653         // and remember the previous character to
654         // remove unnecessary getChar() calls
655         pos_type i = 0;
656         pos_type end = size();
657         if (i < end && !isNewline(i)) {
658                 ++i;
659                 char_type previous_char = 0;
660                 char_type temp = 0;
661                 if (i < end) {
662                         previous_char = text_[i];
663                         if (!isNewline(i)) {
664                                 ++i;
665                                 while (i < end && previous_char != ' ') {
666                                         temp = text_[i];
667                                         if (isNewline(i))
668                                                 break;
669                                         ++i;
670                                         previous_char = temp;
671                                 }
672                         }
673                 }
674         }
675
676         begin_of_body_ = i;
677 }
678
679
680 // returns -1 if inset not found
681 int Paragraph::getPositionOfInset(InsetBase const * inset) const
682 {
683         // Find the entry.
684         InsetList::const_iterator it = insetlist.begin();
685         InsetList::const_iterator end = insetlist.end();
686         for (; it != end; ++it)
687                 if (it->inset == inset)
688                         return it->pos;
689         return -1;
690 }
691
692
693 InsetBibitem * Paragraph::bibitem() const
694 {
695         if (!insetlist.empty()) {
696                 InsetBase * inset = insetlist.begin()->inset;
697                 if (inset->lyxCode() == InsetBase::BIBITEM_CODE)
698                         return static_cast<InsetBibitem *>(inset);
699         }
700         return 0;
701 }
702
703
704 bool Paragraph::forceDefaultParagraphs() const
705 {
706         return inInset() && inInset()->forceDefaultParagraphs(0);
707 }
708
709
710 namespace {
711
712 // paragraphs inside floats need different alignment tags to avoid
713 // unwanted space
714
715 bool noTrivlistCentering(InsetBase::Code code)
716 {
717         return code == InsetBase::FLOAT_CODE || code == InsetBase::WRAP_CODE;
718 }
719
720
721 string correction(string const & orig)
722 {
723         if (orig == "flushleft")
724                 return "raggedright";
725         if (orig == "flushright")
726                 return "raggedleft";
727         if (orig == "center")
728                 return "centering";
729         return orig;
730 }
731
732
733 string const corrected_env(string const & suffix, string const & env,
734         InsetBase::Code code)
735 {
736         string output = suffix + "{";
737         if (noTrivlistCentering(code))
738                 output += correction(env);
739         else
740                 output += env;
741         output += "}";
742         if (suffix == "\\begin")
743                 output += "\n";
744         return output;
745 }
746
747
748 int adjust_column_count(string const & str, int oldcol)
749 {
750         if (!contains(str, "\n"))
751                 return oldcol + str.size();
752         else {
753                 string tmp;
754                 return rsplit(str, tmp, '\n').size();
755         }
756 }
757
758 } // namespace anon
759
760
761 // This could go to ParagraphParameters if we want to
762 int Paragraph::startTeXParParams(BufferParams const & bparams,
763                                  odocstream & os, bool moving_arg) const
764 {
765         int column = 0;
766
767         if (params().noindent()) {
768                 os << "\\noindent ";
769                 column += 10;
770         }
771
772         switch (params().align()) {
773         case LYX_ALIGN_NONE:
774         case LYX_ALIGN_BLOCK:
775         case LYX_ALIGN_LAYOUT:
776         case LYX_ALIGN_SPECIAL:
777                 break;
778         case LYX_ALIGN_LEFT:
779         case LYX_ALIGN_RIGHT:
780         case LYX_ALIGN_CENTER:
781                 if (moving_arg) {
782                         os << "\\protect";
783                         column += 8;
784                 }
785                 break;
786         }
787
788         switch (params().align()) {
789         case LYX_ALIGN_NONE:
790         case LYX_ALIGN_BLOCK:
791         case LYX_ALIGN_LAYOUT:
792         case LYX_ALIGN_SPECIAL:
793                 break;
794         case LYX_ALIGN_LEFT: {
795                 string output;
796                 if (getParLanguage(bparams)->babel() != "hebrew")
797                         output = corrected_env("\\begin", "flushleft", ownerCode());
798                 else
799                         output = corrected_env("\\begin", "flushright", ownerCode());
800                 os << from_ascii(output);
801                 column = adjust_column_count(output, column);
802                 break;
803         } case LYX_ALIGN_RIGHT: {
804                 string output;
805                 if (getParLanguage(bparams)->babel() != "hebrew")
806                         output = corrected_env("\\begin", "flushright", ownerCode());
807                 else
808                         output = corrected_env("\\begin", "flushleft", ownerCode());
809                 os << from_ascii(output);
810                 column = adjust_column_count(output, column);
811                 break;
812         } case LYX_ALIGN_CENTER: {
813                 string output;
814                 output = corrected_env("\\begin", "center", ownerCode());
815                 os << from_ascii(output);
816                 column = adjust_column_count(output, column);
817                 break;
818         }
819         }
820
821         return column;
822 }
823
824
825 // This could go to ParagraphParameters if we want to
826 int Paragraph::endTeXParParams(BufferParams const & bparams,
827                                odocstream & os, bool moving_arg) const
828 {
829         int column = 0;
830
831         switch (params().align()) {
832         case LYX_ALIGN_NONE:
833         case LYX_ALIGN_BLOCK:
834         case LYX_ALIGN_LAYOUT:
835         case LYX_ALIGN_SPECIAL:
836                 break;
837         case LYX_ALIGN_LEFT:
838         case LYX_ALIGN_RIGHT:
839         case LYX_ALIGN_CENTER:
840                 if (moving_arg) {
841                         os << "\\protect";
842                         column = 8;
843                 }
844                 break;
845         }
846
847         switch (params().align()) {
848         case LYX_ALIGN_NONE:
849         case LYX_ALIGN_BLOCK:
850         case LYX_ALIGN_LAYOUT:
851         case LYX_ALIGN_SPECIAL:
852                 break;
853         case LYX_ALIGN_LEFT: {
854                 string output;
855                 if (getParLanguage(bparams)->babel() != "hebrew")
856                         output = corrected_env("\n\\par\\end", "flushleft", ownerCode());
857                 else
858                         output = corrected_env("\n\\par\\end", "flushright", ownerCode());
859                 os << from_ascii(output);
860                 column = adjust_column_count(output, column);
861                 break;
862         } case LYX_ALIGN_RIGHT: {
863                 string output;
864                 if (getParLanguage(bparams)->babel() != "hebrew")
865                         output = corrected_env("\n\\par\\end", "flushright", ownerCode());
866                 else
867                         output = corrected_env("\n\\par\\end", "flushleft", ownerCode());
868                 os << from_ascii(output);
869                 column = adjust_column_count(output, column);
870                 break;
871         } case LYX_ALIGN_CENTER: {
872                 string output;
873                 output = corrected_env("\n\\par\\end", "center", ownerCode());
874                 os << from_ascii(output);
875                 column = adjust_column_count(output, column);
876                 break;
877         }
878         }
879
880         return column;
881 }
882
883
884 // This one spits out the text of the paragraph
885 bool Paragraph::simpleTeXOnePar(Buffer const & buf,
886                                 BufferParams const & bparams,
887                                 LyXFont const & outerfont,
888                                 odocstream & os, TexRow & texrow,
889                                 OutputParams const & runparams) const
890 {
891         lyxerr[Debug::LATEX] << "SimpleTeXOnePar...     " << this << endl;
892
893         bool return_value = false;
894
895         LyXLayout_ptr style;
896
897         // well we have to check if we are in an inset with unlimited
898         // length (all in one row) if that is true then we don't allow
899         // any special options in the paragraph and also we don't allow
900         // any environment other then "Standard" to be valid!
901         bool asdefault = forceDefaultParagraphs();
902
903         if (asdefault) {
904                 style = bparams.getLyXTextClass().defaultLayout();
905         } else {
906                 style = layout();
907         }
908
909         LyXFont basefont;
910
911         LaTeXFeatures features(buf, bparams, runparams);
912
913         // output change tracking marks only if desired,
914         // if dvipost is installed,
915         // and with dvi/ps (other formats don't work)
916         bool const output = bparams.outputChanges
917                 && runparams.flavor == OutputParams::LATEX
918                 && features.isAvailable("dvipost");
919
920         // Maybe we have to create a optional argument.
921         pos_type body_pos = beginOfBody();
922         unsigned int column = 0;
923
924         if (body_pos > 0) {
925                 // the optional argument is kept in curly brackets in
926                 // case it contains a ']'
927                 os << "[{";
928                 column += 2;
929                 basefont = getLabelFont(bparams, outerfont);
930         } else {
931                 basefont = getLayoutFont(bparams, outerfont);
932         }
933
934         // Which font is currently active?
935         LyXFont running_font(basefont);
936         // Do we have an open font change?
937         bool open_font = false;
938
939         Change::Type runningChangeType = Change::UNCHANGED;
940
941         texrow.start(id(), 0);
942
943         // if the paragraph is empty, the loop will not be entered at all
944         if (empty()) {
945                 if (style->isCommand()) {
946                         os << '{';
947                         ++column;
948                 }
949                 if (!asdefault)
950                         column += startTeXParParams(bparams, os,
951                                                     runparams.moving_arg);
952         }
953
954         for (pos_type i = 0; i < size(); ++i) {
955                 ++column;
956                 // First char in paragraph or after label?
957                 if (i == body_pos) {
958                         if (body_pos > 0) {
959                                 if (open_font) {
960                                         column += running_font.latexWriteEndChanges(os, basefont, basefont);
961                                         open_font = false;
962                                 }
963                                 basefont = getLayoutFont(bparams, outerfont);
964                                 running_font = basefont;
965                                 os << "}] ";
966                                 column +=3;
967                         }
968                         if (style->isCommand()) {
969                                 os << '{';
970                                 ++column;
971                         }
972
973                         if (!asdefault)
974                                 column += startTeXParParams(bparams, os,
975                                                             runparams.moving_arg);
976                 }
977
978                 value_type c = getChar(i);
979
980                 // Fully instantiated font
981                 LyXFont font = getFont(bparams, i, outerfont);
982
983                 LyXFont const last_font = running_font;
984
985                 // Spaces at end of font change are simulated to be
986                 // outside font change, i.e. we write "\textXX{text} "
987                 // rather than "\textXX{text }". (Asger)
988                 if (open_font && c == ' ' && i <= size() - 2) {
989                         LyXFont const & next_font = getFont(bparams, i + 1, outerfont);
990                         if (next_font != running_font && next_font != font) {
991                                 font = next_font;
992                         }
993                 }
994
995                 // We end font definition before blanks
996                 if (open_font &&
997                     (font != running_font ||
998                      font.language() != running_font.language()))
999                 {
1000                         column += running_font.latexWriteEndChanges(os,
1001                                                                     basefont,
1002                                                                     (i == body_pos-1) ? basefont : font);
1003                         running_font = basefont;
1004                         open_font = false;
1005                 }
1006
1007                 // Blanks are printed before start of fontswitch
1008                 if (c == ' ') {
1009                         // Do not print the separation of the optional argument
1010                         if (i != body_pos - 1) {
1011                                 pimpl_->simpleTeXBlanks(os, texrow, i,
1012                                                        column, font, *style);
1013                         }
1014                 }
1015
1016                 // Do we need to change font?
1017                 if ((font != running_font ||
1018                      font.language() != running_font.language()) &&
1019                         i != body_pos - 1)
1020                 {
1021                         column += font.latexWriteStartChanges(os, basefont,
1022                                                               last_font);
1023                         running_font = font;
1024                         open_font = true;
1025                 }
1026
1027                 Change::Type changeType = pimpl_->lookupChange(i).type;
1028
1029                 column += Changes::latexMarkChange(os, runningChangeType,
1030                         changeType, output);
1031                 runningChangeType = changeType;
1032
1033                 // do not output text which is marked deleted
1034                 // if change tracking output is not desired
1035                 if (output || runningChangeType != Change::DELETED) {
1036                         OutputParams rp = runparams;
1037                         rp.free_spacing = style->free_spacing;
1038                         rp.local_font = &font;
1039                         rp.intitle = style->intitle;
1040                         pimpl_->simpleTeXSpecialChars(buf, bparams,
1041                                                 os, texrow, rp,
1042                                                 font, running_font,
1043                                                 basefont, outerfont, open_font,
1044                                                 runningChangeType,
1045                                                 *style, i, column, c);
1046                 }
1047         }
1048
1049         column += Changes::latexMarkChange(os,
1050                         runningChangeType, Change::UNCHANGED, output);
1051
1052         // If we have an open font definition, we have to close it
1053         if (open_font) {
1054 #ifdef FIXED_LANGUAGE_END_DETECTION
1055                 if (next_) {
1056                         running_font
1057                                 .latexWriteEndChanges(os, basefont,
1058                                                       next_->getFont(bparams,
1059                                                       0, outerfont));
1060                 } else {
1061                         running_font.latexWriteEndChanges(os, basefont,
1062                                                           basefont);
1063                 }
1064 #else
1065 #ifdef WITH_WARNINGS
1066 //#warning For now we ALWAYS have to close the foreign font settings if they are
1067 //#warning there as we start another \selectlanguage with the next paragraph if
1068 //#warning we are in need of this. This should be fixed sometime (Jug)
1069 #endif
1070                 running_font.latexWriteEndChanges(os, basefont,  basefont);
1071 #endif
1072         }
1073
1074         // Needed if there is an optional argument but no contents.
1075         if (body_pos > 0 && body_pos == size()) {
1076                 os << "}]~";
1077                 return_value = false;
1078         }
1079
1080         if (!asdefault) {
1081                 column += endTeXParParams(bparams, os, runparams.moving_arg);
1082         }
1083
1084         lyxerr[Debug::LATEX] << "SimpleTeXOnePar...done " << this << endl;
1085         return return_value;
1086 }
1087
1088
1089 namespace {
1090
1091 // checks, if newcol chars should be put into this line
1092 // writes newline, if necessary.
1093 void sgmlLineBreak(ostream & os, string::size_type & colcount,
1094                           string::size_type newcol)
1095 {
1096         colcount += newcol;
1097         if (colcount > lyxrc.ascii_linelen) {
1098                 os << "\n";
1099                 colcount = newcol; // assume write after this call
1100         }
1101 }
1102
1103 enum PAR_TAG {
1104         PAR_NONE=0,
1105         TT = 1,
1106         SF = 2,
1107         BF = 4,
1108         IT = 8,
1109         SL = 16,
1110         EM = 32
1111 };
1112
1113
1114 string tag_name(PAR_TAG const & pt) {
1115         switch (pt) {
1116         case PAR_NONE: return "!-- --";
1117         case TT: return "tt";
1118         case SF: return "sf";
1119         case BF: return "bf";
1120         case IT: return "it";
1121         case SL: return "sl";
1122         case EM: return "em";
1123         }
1124         return "";
1125 }
1126
1127
1128 inline
1129 void operator|=(PAR_TAG & p1, PAR_TAG const & p2)
1130 {
1131         p1 = static_cast<PAR_TAG>(p1 | p2);
1132 }
1133
1134
1135 inline
1136 void reset(PAR_TAG & p1, PAR_TAG const & p2)
1137 {
1138         p1 = static_cast<PAR_TAG>(p1 & ~p2);
1139 }
1140
1141 } // anon
1142
1143
1144 bool Paragraph::emptyTag() const
1145 {
1146         for (pos_type i = 0; i < size(); ++i) {
1147                 if (isInset(i)) {
1148                         InsetBase const * inset = getInset(i);
1149                         InsetBase::Code lyx_code = inset->lyxCode();
1150                         if (lyx_code != InsetBase::TOC_CODE &&
1151                             lyx_code != InsetBase::INCLUDE_CODE &&
1152                             lyx_code != InsetBase::GRAPHICS_CODE &&
1153                             lyx_code != InsetBase::ERT_CODE &&
1154                             lyx_code != InsetBase::FLOAT_CODE &&
1155                             lyx_code != InsetBase::TABULAR_CODE) {
1156                                 return false;
1157                         }
1158                 } else {
1159                         value_type c = getChar(i);
1160                         if (c != ' ' && c != '\t')
1161                                 return false;
1162                 }
1163         }
1164         return true;
1165 }
1166
1167
1168 string Paragraph::getID(Buffer const & buf, OutputParams const & runparams) const
1169 {
1170         for (pos_type i = 0; i < size(); ++i) {
1171                 if (isInset(i)) {
1172                         InsetBase const * inset = getInset(i);
1173                         InsetBase::Code lyx_code = inset->lyxCode();
1174                         if (lyx_code == InsetBase::LABEL_CODE) {
1175                                 string const id = static_cast<InsetCommand const *>(inset)->getContents();
1176                                 return "id='" + to_utf8(sgml::cleanID(buf, runparams, from_utf8(id))) + "'";
1177                         }
1178                 }
1179
1180         }
1181         return string();
1182 }
1183
1184
1185 pos_type Paragraph::getFirstWord(Buffer const & buf, odocstream & os, OutputParams const & runparams) const
1186 {
1187         pos_type i;
1188         for (i = 0; i < size(); ++i) {
1189                 if (isInset(i)) {
1190                         InsetBase const * inset = getInset(i);
1191                         inset->docbook(buf, os, runparams);
1192                 } else {
1193                         value_type c = getChar(i);
1194                         if (c == ' ')
1195                                 break;
1196                         os << sgml::escapeChar(c);
1197                 }
1198         }
1199         return i;
1200 }
1201
1202
1203 bool Paragraph::onlyText(Buffer const & buf, LyXFont const & outerfont, pos_type initial) const
1204 {
1205         LyXFont font_old;
1206
1207         for (pos_type i = initial; i < size(); ++i) {
1208                 LyXFont font = getFont(buf.params(), i, outerfont);
1209                 if (isInset(i))
1210                         return false;
1211                 if (i != initial && font != font_old)
1212                         return false;
1213                 font_old = font;
1214         }
1215
1216         return true;
1217 }
1218
1219
1220 void Paragraph::simpleDocBookOnePar(Buffer const & buf,
1221                                     odocstream & os,
1222                                     OutputParams const & runparams,
1223                                     LyXFont const & outerfont,
1224                                     pos_type initial) const
1225 {
1226         bool emph_flag = false;
1227
1228         LyXLayout_ptr const & style = layout();
1229         LyXFont font_old =
1230                 style->labeltype == LABEL_MANUAL ? style->labelfont : style->font;
1231
1232         if (style->pass_thru && !onlyText(buf, outerfont, initial))
1233                 os << "]]>";
1234
1235         // parsing main loop
1236         for (pos_type i = initial; i < size(); ++i) {
1237                 LyXFont font = getFont(buf.params(), i, outerfont);
1238
1239                 // handle <emphasis> tag
1240                 if (font_old.emph() != font.emph()) {
1241                         if (font.emph() == LyXFont::ON) {
1242                                 os << "<emphasis>";
1243                                 emph_flag = true;
1244                         } else if (i != initial) {
1245                                 os << "</emphasis>";
1246                                 emph_flag = false;
1247                         }
1248                 }
1249
1250                 if (isInset(i)) {
1251                         InsetBase const * inset = getInset(i);
1252                         inset->docbook(buf, os, runparams);
1253                 } else {
1254                         value_type c = getChar(i);
1255
1256                         if (style->pass_thru)
1257                                 os.put(c);
1258                         else
1259                                 os << sgml::escapeChar(c);
1260                 }
1261                 font_old = font;
1262         }
1263
1264         if (emph_flag) {
1265                 os << "</emphasis>";
1266         }
1267
1268         if (style->free_spacing)
1269                 os << '\n';
1270         if (style->pass_thru && !onlyText(buf, outerfont, initial))
1271                 os << "<![CDATA[";
1272 }
1273
1274
1275 bool Paragraph::isNewline(pos_type pos) const
1276 {
1277         return isInset(pos)
1278                 && getInset(pos)->lyxCode() == InsetBase::NEWLINE_CODE;
1279 }
1280
1281
1282 bool Paragraph::isLineSeparator(pos_type pos) const
1283 {
1284         value_type const c = getChar(pos);
1285         return isLineSeparatorChar(c)
1286                 || (c == Paragraph::META_INSET && getInset(pos) &&
1287                 getInset(pos)->isLineSeparator());
1288 }
1289
1290
1291 /// Used by the spellchecker
1292 bool Paragraph::isLetter(pos_type pos) const
1293 {
1294         if (isInset(pos))
1295                 return getInset(pos)->isLetter();
1296         else {
1297                 value_type const c = getChar(pos);
1298                 return isLetterChar(c) || isDigit(c);
1299         }
1300 }
1301
1302
1303 Language const *
1304 Paragraph::getParLanguage(BufferParams const & bparams) const
1305 {
1306         if (!empty())
1307                 return getFirstFontSettings(bparams).language();
1308 #ifdef WITH_WARNINGS
1309 #warning FIXME we should check the prev par as well (Lgb)
1310 #endif
1311         return bparams.language;
1312 }
1313
1314
1315 bool Paragraph::isRightToLeftPar(BufferParams const & bparams) const
1316 {
1317         return lyxrc.rtl_support
1318                 && getParLanguage(bparams)->rightToLeft()
1319                 && ownerCode() != InsetBase::ERT_CODE;
1320 }
1321
1322
1323 void Paragraph::changeLanguage(BufferParams const & bparams,
1324                                Language const * from, Language const * to)
1325 {
1326         // change language including dummy font change at the end
1327         for (pos_type i = 0; i <= size(); ++i) {
1328                 LyXFont font = getFontSettings(bparams, i);
1329                 if (font.language() == from) {
1330                         font.setLanguage(to);
1331                         setFont(i, font);
1332                 }
1333         }
1334 }
1335
1336
1337 bool Paragraph::isMultiLingual(BufferParams const & bparams) const
1338 {
1339         Language const * doc_language = bparams.language;
1340         Pimpl::FontList::const_iterator cit = pimpl_->fontlist.begin();
1341         Pimpl::FontList::const_iterator end = pimpl_->fontlist.end();
1342
1343         for (; cit != end; ++cit)
1344                 if (cit->font().language() != ignore_language &&
1345                     cit->font().language() != latex_language &&
1346                     cit->font().language() != doc_language)
1347                         return true;
1348         return false;
1349 }
1350
1351
1352 // Convert the paragraph to a string.
1353 // Used for building the table of contents
1354 docstring const Paragraph::asString(Buffer const & buffer, bool label) const
1355 {
1356         OutputParams runparams;
1357         return asString(buffer, runparams, label);
1358 }
1359
1360
1361 docstring const Paragraph::asString(Buffer const & buffer,
1362                                  OutputParams const & runparams,
1363                                  bool label) const
1364 {
1365 #if 0
1366         string s;
1367         if (label && !params().labelString().empty())
1368                 s += params().labelString() + ' ';
1369
1370         for (pos_type i = 0; i < size(); ++i) {
1371                 value_type c = getChar(i);
1372                 if (isPrintable(c))
1373                         s += c;
1374                 else if (c == META_INSET &&
1375                          getInset(i)->lyxCode() == InsetBase::MATH_CODE) {
1376                         ostringstream os;
1377                         getInset(i)->plaintext(buffer, os, runparams);
1378                         s += subst(STRCONV(os.str()),'\n',' ');
1379                 }
1380         }
1381
1382         return s;
1383 #else
1384         // This should really be done by the caller and not here.
1385         docstring ret = asString(buffer, runparams, 0, size(), label);
1386         return subst(ret, '\n', ' ');
1387 #endif
1388 }
1389
1390
1391 docstring const Paragraph::asString(Buffer const & buffer,
1392                                  pos_type beg, pos_type end, bool label) const
1393 {
1394
1395         OutputParams const runparams;
1396         return asString(buffer, runparams, beg, end, label);
1397 }
1398
1399
1400 docstring const Paragraph::asString(Buffer const & buffer,
1401                                  OutputParams const & runparams,
1402                                  pos_type beg, pos_type end, bool label) const
1403 {
1404         lyx::odocstringstream os;
1405
1406         if (beg == 0 && label && !params().labelString().empty())
1407                 os << params().labelString() << ' ';
1408
1409         for (pos_type i = beg; i < end; ++i) {
1410                 value_type const c = getUChar(buffer.params(), i);
1411                 if (isPrintable(c))
1412                         os.put(c);
1413                 else if (c == META_INSET)
1414                         getInset(i)->textString(buffer, os, runparams);
1415         }
1416
1417         return os.str();
1418 }
1419
1420
1421 void Paragraph::setInsetOwner(InsetBase * inset)
1422 {
1423         pimpl_->inset_owner = inset;
1424 }
1425
1426
1427 Change const Paragraph::lookupChange(pos_type pos) const
1428 {
1429         BOOST_ASSERT(pos <= size());
1430         return pimpl_->lookupChange(pos);
1431 }
1432
1433
1434 bool Paragraph::isChanged(pos_type start, pos_type end) const
1435 {
1436         return pimpl_->isChanged(start, end);
1437 }
1438
1439
1440 bool Paragraph::isMergedOnEndOfParDeletion(bool trackChanges) const
1441 {
1442         return pimpl_->isMergedOnEndOfParDeletion(trackChanges);
1443 }
1444
1445
1446 void Paragraph::setChange(Change const & change)
1447 {
1448         pimpl_->setChange(change);
1449 }
1450
1451
1452 void Paragraph::setChange(pos_type pos, Change const & change)
1453 {
1454         pimpl_->setChange(pos, change);
1455 }
1456
1457
1458 void Paragraph::acceptChanges(pos_type start, pos_type end)
1459 {
1460         return pimpl_->acceptChanges(start, end);
1461 }
1462
1463
1464 void Paragraph::rejectChanges(pos_type start, pos_type end)
1465 {
1466         return pimpl_->rejectChanges(start, end);
1467 }
1468
1469
1470 int Paragraph::id() const
1471 {
1472         return pimpl_->id_;
1473 }
1474
1475
1476 LyXLayout_ptr const & Paragraph::layout() const
1477 {
1478         return layout_;
1479 }
1480
1481
1482 void Paragraph::layout(LyXLayout_ptr const & new_layout)
1483 {
1484         layout_ = new_layout;
1485 }
1486
1487
1488 InsetBase * Paragraph::inInset() const
1489 {
1490         return pimpl_->inset_owner;
1491 }
1492
1493
1494 InsetBase::Code Paragraph::ownerCode() const
1495 {
1496         return pimpl_->inset_owner
1497                 ? pimpl_->inset_owner->lyxCode() : InsetBase::NO_CODE;
1498 }
1499
1500
1501 void Paragraph::clearContents()
1502 {
1503         text_.clear();
1504 }
1505
1506
1507 ParagraphParameters & Paragraph::params()
1508 {
1509         return pimpl_->params;
1510 }
1511
1512
1513 ParagraphParameters const & Paragraph::params() const
1514 {
1515         return pimpl_->params;
1516 }
1517
1518
1519 bool Paragraph::isFreeSpacing() const
1520 {
1521         if (layout()->free_spacing)
1522                 return true;
1523
1524         // for now we just need this, later should we need this in some
1525         // other way we can always add a function to InsetBase too.
1526         return ownerCode() == InsetBase::ERT_CODE;
1527 }
1528
1529
1530 bool Paragraph::allowEmpty() const
1531 {
1532         if (layout()->keepempty)
1533                 return true;
1534         return ownerCode() == InsetBase::ERT_CODE;
1535 }
1536
1537
1538 Row & Paragraph::getRow(pos_type pos, bool boundary)
1539 {
1540         BOOST_ASSERT(!rows().empty());
1541
1542         // If boundary is set we should return the row on which
1543         // the character before is inside.
1544         if (pos > 0 && boundary)
1545                 --pos;
1546
1547         RowList::iterator rit = rows_.end();
1548         RowList::iterator const begin = rows_.begin();
1549
1550         for (--rit; rit != begin && rit->pos() > pos; --rit)
1551                 ;
1552
1553         return *rit;
1554 }
1555
1556
1557 Row const & Paragraph::getRow(pos_type pos, bool boundary) const
1558 {
1559         BOOST_ASSERT(!rows().empty());
1560
1561         // If boundary is set we should return the row on which
1562         // the character before is inside.
1563         if (pos > 0 && boundary)
1564                 --pos;
1565
1566         RowList::const_iterator rit = rows_.end();
1567         RowList::const_iterator const begin = rows_.begin();
1568
1569         for (--rit; rit != begin && rit->pos() > pos; --rit)
1570                 ;
1571
1572         return *rit;
1573 }
1574
1575
1576 size_t Paragraph::pos2row(pos_type pos) const
1577 {
1578         BOOST_ASSERT(!rows().empty());
1579
1580         RowList::const_iterator rit = rows_.end();
1581         RowList::const_iterator const begin = rows_.begin();
1582
1583         for (--rit; rit != begin && rit->pos() > pos; --rit)
1584                 ;
1585
1586         return rit - begin;
1587 }
1588
1589
1590 char_type Paragraph::transformChar(char_type c, pos_type pos) const
1591 {
1592         if (!Encodings::is_arabic(c))
1593                 if (lyxrc.font_norm_type == LyXRC::ISO_8859_6_8 && isDigit(c))
1594                         // FIXME UNICODE What does this do?
1595                         return c + (0xb0 - '0');
1596                 else
1597                         return c;
1598
1599         value_type const prev_char = pos > 0 ? getChar(pos - 1) : ' ';
1600         value_type next_char = ' ';
1601
1602         for (pos_type i = pos + 1, end = size(); i < end; ++i) {
1603                 value_type const par_char = getChar(i);
1604                 if (!Encodings::isComposeChar_arabic(par_char)) {
1605                         next_char = par_char;
1606                         break;
1607                 }
1608         }
1609
1610         if (Encodings::is_arabic(next_char)) {
1611                 if (Encodings::is_arabic(prev_char) &&
1612                         !Encodings::is_arabic_special(prev_char))
1613                         return Encodings::transformChar(c, Encodings::FORM_MEDIAL);
1614                 else
1615                         return Encodings::transformChar(c, Encodings::FORM_INITIAL);
1616         } else {
1617                 if (Encodings::is_arabic(prev_char) &&
1618                         !Encodings::is_arabic_special(prev_char))
1619                         return Encodings::transformChar(c, Encodings::FORM_FINAL);
1620                 else
1621                         return Encodings::transformChar(c, Encodings::FORM_ISOLATED);
1622         }
1623 }
1624
1625
1626 void Paragraph::dump() const
1627 {
1628         lyxerr << "Paragraph::dump: rows.size(): " << rows_.size() << endl;
1629         for (size_t i = 0; i != rows_.size(); ++i) {
1630                 lyxerr << "  row " << i << ":   ";
1631                 rows_[i].dump();
1632         }
1633 }
1634
1635
1636 bool Paragraph::hfillExpansion(Row const & row, pos_type pos) const
1637 {
1638         if (!isHfill(pos))
1639                 return false;
1640
1641         // at the end of a row it does not count
1642         // unless another hfill exists on the line
1643         if (pos >= row.endpos()) {
1644                 for (pos_type i = row.pos(); i < pos && !isHfill(i); ++i)
1645                         return false;
1646         }
1647
1648         // at the beginning of a row it does not count, if it is not
1649         // the first row of a paragaph
1650         if (row.pos() == 0)
1651                 return true;
1652
1653         // in some labels it does not count
1654         if (layout()->margintype != MARGIN_MANUAL && pos < beginOfBody())
1655                 return false;
1656
1657         // if there is anything between the first char of the row and
1658         // the specified position that is not a newline and not a hfill,
1659         // the hfill will count, otherwise not
1660         pos_type i = row.pos();
1661         while (i < pos && (isNewline(i) || isHfill(i)))
1662                 ++i;
1663
1664         return i != pos;
1665 }
1666
1667
1668 } // namespace lyx