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