]> git.lyx.org Git - lyx.git/blob - src/paragraph_funcs.C
2a3994f38cc8867aeb1c6b8366a7e810b02169a1
[lyx.git] / src / paragraph_funcs.C
1 /**
2  * \file paragraph_funcs.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13 #include "paragraph_funcs.h"
14 #include "paragraph_pimpl.h"
15 #include "buffer.h"
16 #include "ParagraphParameters.h"
17 #include "lyxtextclasslist.h"
18 #include "debug.h"
19 #include "gettext.h"
20 #include "language.h"
21 #include "encoding.h"
22 #include "lyxrc.h"
23 #include "lyxlex.h"
24 #include "support/BoostFormat.h"
25 #include "factory.h"
26 #include "support/lstrings.h"
27 #include "insets/insetoptarg.h"
28 #include "insets/insetcommandparams.h"
29 #include "insets/insetbibitem.h"
30 #include "insets/insetspecialchar.h"
31 #include "insets/insetlatexaccent.h"
32 #include "insets/insettabular.h"
33 #include "insets/insethfill.h"
34 #include "insets/inseterror.h"
35 #include "insets/insetnewline.h"
36
37 extern string bibitemWidest(Buffer const *);
38
39 using lyx::pos_type;
40 //using lyx::layout_type;
41 using std::endl;
42 using std::ostream;
43
44 void breakParagraph(BufferParams const & bparams,
45                     ParagraphList & paragraphs,
46                     ParagraphList::iterator par,
47                     pos_type pos,
48                     int flag)
49 {
50         // create a new paragraph, and insert into the list
51         ParagraphList::iterator tmp = paragraphs.insert(boost::next(par),
52                                                         new Paragraph);
53
54         // without doing that we get a crash when typing <Return> at the
55         // end of a paragraph
56         tmp->layout(bparams.getLyXTextClass().defaultLayout());
57         // remember to set the inset_owner
58         tmp->setInsetOwner(par->inInset());
59
60         if (bparams.tracking_changes)
61                 tmp->trackChanges();
62
63         // this is an idea for a more userfriendly layout handling, I will
64         // see what the users say
65
66         // layout stays the same with latex-environments
67         if (flag) {
68                 tmp->layout(par->layout());
69                 tmp->setLabelWidthString(par->params().labelWidthString());
70         }
71
72         bool const isempty = (par->layout()->keepempty && par->empty());
73
74         if (!isempty && (par->size() > pos || par->empty() || flag == 2)) {
75                 tmp->layout(par->layout());
76                 tmp->params().align(par->params().align());
77                 tmp->setLabelWidthString(par->params().labelWidthString());
78
79                 tmp->params().lineBottom(par->params().lineBottom());
80                 par->params().lineBottom(false);
81                 tmp->params().pagebreakBottom(par->params().pagebreakBottom());
82                 par->params().pagebreakBottom(false);
83                 tmp->params().spaceBottom(par->params().spaceBottom());
84                 par->params().spaceBottom(VSpace(VSpace::NONE));
85
86                 tmp->params().depth(par->params().depth());
87                 tmp->params().noindent(par->params().noindent());
88
89                 // copy everything behind the break-position
90                 // to the new paragraph
91
92 #ifdef WITH_WARNINGS
93 #warning this seems wrong
94 #endif
95                 /* FIXME: if !keepempty, empty() == true, then we reach
96                  * here with size() == 0. So pos_end becomes - 1. Why
97                  * doesn't this cause problems ???
98                  */
99                 pos_type pos_end = par->size() - 1;
100                 pos_type i = pos;
101                 pos_type j = pos;
102
103                 for (; i <= pos_end; ++i) {
104                         Change::Type change(par->lookupChange(i));
105                         par->cutIntoMinibuffer(bparams, i);
106                         if (tmp->insertFromMinibuffer(j - pos)) {
107                                 tmp->setChange(j - pos, change);
108                                 ++j;
109                         }
110                 }
111                 for (i = pos_end; i >= pos; --i) {
112                         par->eraseIntern(i);
113                 }
114         }
115
116         if (pos)
117                 return;
118
119         tmp->params().lineTop(par->params().lineTop());
120         tmp->params().pagebreakTop(par->params().pagebreakTop());
121         tmp->params().spaceTop(par->params().spaceTop());
122         par->params().clear();
123
124         par->layout(bparams.getLyXTextClass().defaultLayout());
125
126         // layout stays the same with latex-environments
127         if (flag) {
128                 par->layout(tmp->layout());
129                 par->setLabelWidthString(tmp->params().labelWidthString());
130                 par->params().depth(tmp->params().depth());
131         }
132
133         // subtle, but needed to get empty pars working right
134         if (bparams.tracking_changes) {
135                 if (!par->size()) {
136                         par->cleanChanges();
137                 } else if (!tmp->size()) {
138                         tmp->cleanChanges();
139                 }
140         }
141 }
142
143
144 void breakParagraphConservative(BufferParams const & bparams,
145                                 ParagraphList & paragraphs,
146                                 ParagraphList::iterator par,
147                                 pos_type pos)
148 {
149         // create a new paragraph
150         ParagraphList::iterator tmp = paragraphs.insert(boost::next(par),
151                                                         new Paragraph);
152         tmp->makeSameLayout(&*par);
153
154         // When can pos > Last()?
155         // I guess pos == Last() is possible.
156         if (par->size() > pos) {
157                 // copy everything behind the break-position to the new
158                 // paragraph
159                 pos_type pos_end = par->size() - 1;
160
161                 for (pos_type i = pos, j = pos; i <= pos_end; ++i) {
162                         par->cutIntoMinibuffer(bparams, i);
163                         if (tmp->insertFromMinibuffer(j - pos))
164                                 ++j;
165                 }
166
167                 for (pos_type k = pos_end; k >= pos; --k) {
168                         par->erase(k);
169                 }
170         }
171 }
172
173
174 void mergeParagraph(BufferParams const & bparams,
175                     ParagraphList & paragraphs,
176                     ParagraphList::iterator par)
177 {
178         ParagraphList::iterator the_next = boost::next(par);
179
180         // first the DTP-stuff
181         par->params().lineBottom(the_next->params().lineBottom());
182         par->params().spaceBottom(the_next->params().spaceBottom());
183         par->params().pagebreakBottom(the_next->params().pagebreakBottom());
184
185         pos_type pos_end = the_next->size() - 1;
186         pos_type pos_insert = par->size();
187
188         // ok, now copy the paragraph
189         for (pos_type i = 0, j = 0; i <= pos_end; ++i) {
190                 the_next->cutIntoMinibuffer(bparams, i);
191                 if (par->insertFromMinibuffer(pos_insert + j))
192                         ++j;
193         }
194
195         paragraphs.erase(the_next);
196 }
197
198
199 Paragraph * depthHook(Paragraph * par, Paragraph::depth_type depth)
200 {
201         Paragraph * newpar = par;
202
203         do {
204                 newpar = newpar->previous();
205         } while (newpar && newpar->getDepth() > depth);
206
207         if (!newpar) {
208                 if (par->previous() || par->getDepth())
209                         lyxerr << "ERROR (Paragraph::DepthHook): "
210                                 "no hook." << endl;
211                 newpar = par;
212         }
213
214         return newpar;
215 }
216
217
218 Paragraph * outerHook(Paragraph * par)
219 {
220         if (!par->getDepth())
221                 return 0;
222         return depthHook(par, Paragraph::depth_type(par->getDepth() - 1));
223 }
224
225
226 bool isFirstInSequence(Paragraph * par)
227 {
228         Paragraph const * dhook = depthHook(par, par->getDepth());
229         return (dhook == par
230                 || dhook->layout() != par->layout()
231                 || dhook->getDepth() != par->getDepth());
232 }
233
234
235 int getEndLabel(Paragraph * p)
236 {
237         Paragraph * par = p;
238         Paragraph::depth_type par_depth = p->getDepth();
239         while (par) {
240                 LyXLayout_ptr const & layout = par->layout();
241                 int const endlabeltype = layout->endlabeltype;
242
243                 if (endlabeltype != END_LABEL_NO_LABEL) {
244                         if (!p->next())
245                                 return endlabeltype;
246
247                         Paragraph::depth_type const next_depth = p->next()->getDepth();
248                         if (par_depth > next_depth ||
249                             (par_depth == next_depth
250                              && layout != p->next()->layout()))
251                                 return endlabeltype;
252                         break;
253                 }
254                 if (par_depth == 0)
255                         break;
256                 par = outerHook(par);
257                 if (par)
258                         par_depth = par->getDepth();
259         }
260         return END_LABEL_NO_LABEL;
261 }
262
263
264 namespace {
265
266 ParagraphList::iterator
267 TeXEnvironment(Buffer const * buf,
268                ParagraphList const & paragraphs,
269                ParagraphList::iterator pit,
270                ostream & os, TexRow & texrow);
271
272 ParagraphList::iterator
273 TeXOnePar(Buffer const * buf,
274           ParagraphList const & paragraphs,
275           ParagraphList::iterator pit,
276           ostream & os, TexRow & texrow,
277           bool moving_arg);
278
279
280 ParagraphList::iterator
281 TeXDeeper(Buffer const * buf,
282           ParagraphList const & paragraphs,
283           ParagraphList::iterator pit,
284           ostream & os, TexRow & texrow)
285 {
286         lyxerr[Debug::LATEX] << "TeXDeeper...     " << &*pit << endl;
287         ParagraphList::iterator par = pit;
288
289         while (par != paragraphs.end()&& par->params().depth() == pit->params().depth()) {
290                 if (par->layout()->isEnvironment()) {
291                         par = TeXEnvironment(buf, paragraphs, par,
292                                                   os, texrow);
293                 } else {
294                         par = TeXOnePar(buf, paragraphs, par,
295                                              os, texrow, false);
296                 }
297         }
298         lyxerr[Debug::LATEX] << "TeXDeeper...done " << &*par << endl;
299
300         return par;
301 }
302
303
304 ParagraphList::iterator
305 TeXEnvironment(Buffer const * buf,
306                ParagraphList const & paragraphs,
307                ParagraphList::iterator pit,
308                ostream & os, TexRow & texrow)
309 {
310         lyxerr[Debug::LATEX] << "TeXEnvironment...     " << &*pit << endl;
311
312         BufferParams const & bparams = buf->params;
313
314         LyXLayout_ptr const & style = pit->layout();
315
316         Language const * language = pit->getParLanguage(bparams);
317         Language const * doc_language = bparams.language;
318         Language const * previous_language =
319                 (pit != paragraphs.begin())
320                 ? boost::prior(pit)->getParLanguage(bparams)
321                 : doc_language;
322         if (language->babel() != previous_language->babel()) {
323
324                 if (!lyxrc.language_command_end.empty() &&
325                     previous_language->babel() != doc_language->babel()) {
326                         os << subst(lyxrc.language_command_end, "$$lang",
327                                     previous_language->babel())
328                            << endl;
329                         texrow.newline();
330                 }
331
332                 if (lyxrc.language_command_end.empty() ||
333                     language->babel() != doc_language->babel()) {
334                         os << subst(lyxrc.language_command_begin, "$$lang",
335                                     language->babel())
336                            << endl;
337                         texrow.newline();
338                 }
339         }
340
341         bool leftindent_open = false;
342         if (!pit->params().leftIndent().zero()) {
343                 os << "\\begin{LyXParagraphLeftIndent}{" <<
344                         pit->params().leftIndent().asLatexString() << "}\n";
345                 texrow.newline();
346                 leftindent_open = true;
347         }
348
349         if (style->isEnvironment()) {
350                 if (style->latextype == LATEX_LIST_ENVIRONMENT) {
351                         os << "\\begin{" << style->latexname() << "}{"
352                            << pit->params().labelWidthString() << "}\n";
353                 } else if (style->labeltype == LABEL_BIBLIO) {
354                         // ale970405
355                         os << "\\begin{" << style->latexname() << "}{"
356                            <<  bibitemWidest(buf)
357                            << "}\n";
358                 } else if (style->latextype == LATEX_ITEM_ENVIRONMENT) {
359                         os << "\\begin{" << style->latexname() << '}'
360                            << style->latexparam() << '\n';
361                 } else
362                         os << "\\begin{" << style->latexname() << '}'
363                            << style->latexparam() << '\n';
364                 texrow.newline();
365         }
366         ParagraphList::iterator par = pit;
367         do {
368                 par = TeXOnePar(buf, paragraphs, par, os, texrow, false);
369
370                 if (par != paragraphs.end()&& par->params().depth() > pit->params().depth()) {
371                             if (par->layout()->isParagraph()) {
372
373                             // Thinko!
374                             // How to handle this? (Lgb)
375                             //&& !suffixIs(os, "\n\n")
376                                     //) {
377                                 // There should be at least one '\n' already
378                                 // but we need there to be two for Standard
379                                 // paragraphs that are depth-increment'ed to be
380                                 // output correctly.  However, tables can
381                                 // also be paragraphs so don't adjust them.
382                                 // ARRae
383                                 // Thinkee:
384                                 // Will it ever harm to have one '\n' too
385                                 // many? i.e. that we sometimes will have
386                                 // three in a row. (Lgb)
387                                 os << '\n';
388                                 texrow.newline();
389                         }
390                         par = TeXDeeper(buf, paragraphs, par, os, texrow);
391                 }
392         } while (par != paragraphs.end()
393                  && par->layout() == pit->layout()
394                  && par->params().depth() == pit->params().depth()
395                  && par->params().leftIndent() == pit->params().leftIndent());
396
397         if (style->isEnvironment()) {
398                 os << "\\end{" << style->latexname() << "}\n";
399                 texrow.newline();
400         }
401
402         if (leftindent_open) {
403                 os << "\\end{LyXParagraphLeftIndent}\n";
404                 texrow.newline();
405         }
406
407         lyxerr[Debug::LATEX] << "TeXEnvironment...done " << &*par << endl;
408         return par;  // ale970302
409 }
410
411
412 InsetOptArg * optArgInset(Paragraph const & par)
413 {
414         // Find the entry.
415         InsetList::iterator it = par.insetlist.begin();
416         InsetList::iterator end = par.insetlist.end();
417         for (; it != end; ++it) {
418                 Inset * ins = it.getInset();
419                 if (ins->lyxCode() == Inset::OPTARG_CODE) {
420                         return static_cast<InsetOptArg *>(ins);
421                 }
422         }
423         return 0;
424 }
425
426
427 ParagraphList::iterator
428 TeXOnePar(Buffer const * buf,
429           ParagraphList const & paragraphs,
430           ParagraphList::iterator pit,
431           ostream & os, TexRow & texrow,
432           bool moving_arg)
433 {
434         lyxerr[Debug::LATEX] << "TeXOnePar...     " << &*pit << endl;
435         BufferParams const & bparams = buf->params;
436
437         Inset const * in = pit->inInset();
438         bool further_blank_line = false;
439         LyXLayout_ptr style;
440
441         // well we have to check if we are in an inset with unlimited
442         // lenght (all in one row) if that is true then we don't allow
443         // any special options in the paragraph and also we don't allow
444         // any environment other then "Standard" to be valid!
445         if ((in == 0) || !in->forceDefaultParagraphs(in)) {
446                 style = pit->layout();
447
448                 if (pit->params().startOfAppendix()) {
449                         os << "\\appendix\n";
450                         texrow.newline();
451                 }
452
453                 if (!pit->params().spacing().isDefault()
454                         && (pit == paragraphs.begin() || !boost::prior(pit)->hasSameLayout(&*pit))) {
455                         os << pit->params().spacing().writeEnvirBegin() << '\n';
456                         texrow.newline();
457                 }
458
459                 if (style->isCommand()) {
460                         os << '\n';
461                         texrow.newline();
462                 }
463
464                 if (pit->params().pagebreakTop()) {
465                         os << "\\newpage";
466                         further_blank_line = true;
467                 }
468                 if (pit->params().spaceTop().kind() != VSpace::NONE) {
469                         os << pit->params().spaceTop().asLatexCommand(bparams);
470                         further_blank_line = true;
471                 }
472
473                 if (pit->params().lineTop()) {
474                         os << "\\lyxline{\\" << pit->getFont(bparams, 0, outerFont(pit, paragraphs)).latexSize() << '}'
475                            << "\\vspace{-1\\parskip}";
476                         further_blank_line = true;
477                 }
478
479                 if (further_blank_line) {
480                         os << '\n';
481                         texrow.newline();
482                 }
483         } else {
484                 style = bparams.getLyXTextClass().defaultLayout();
485         }
486
487         Language const * language = pit->getParLanguage(bparams);
488         Language const * doc_language = bparams.language;
489         Language const * previous_language =
490                 (pit != paragraphs.begin())
491                 ? boost::prior(pit)->getParLanguage(bparams)
492                 : doc_language;
493
494         if (language->babel() != previous_language->babel()
495             // check if we already put language command in TeXEnvironment()
496             && !(style->isEnvironment()
497                  && (pit == paragraphs.begin() ||
498                      (boost::prior(pit)->layout() != pit->layout() &&
499                       boost::prior(pit)->getDepth() <= pit->getDepth())
500                      || boost::prior(pit)->getDepth() < pit->getDepth())))
501         {
502                 if (!lyxrc.language_command_end.empty() &&
503                     previous_language->babel() != doc_language->babel())
504                 {
505                         os << subst(lyxrc.language_command_end, "$$lang",
506                                     previous_language->babel())
507                            << endl;
508                         texrow.newline();
509                 }
510
511                 if (lyxrc.language_command_end.empty() ||
512                     language->babel() != doc_language->babel())
513                 {
514                         os << subst(lyxrc.language_command_begin, "$$lang",
515                                     language->babel())
516                            << endl;
517                         texrow.newline();
518                 }
519         }
520
521         if (bparams.inputenc == "auto" &&
522             language->encoding() != previous_language->encoding()) {
523                 os << "\\inputencoding{"
524                    << language->encoding()->LatexName()
525                    << "}\n";
526                 texrow.newline();
527         }
528
529         switch (style->latextype) {
530         case LATEX_COMMAND:
531                 os << '\\' << style->latexname();
532
533                 // Separate handling of optional argument inset.
534                 if (style->optionalargs == 1) {
535                         InsetOptArg * it = optArgInset(*pit);
536                         if (it)
537                                 it->latexOptional(buf, os, false, false);
538                 }
539                 else
540                         os << style->latexparam();
541                 break;
542         case LATEX_ITEM_ENVIRONMENT:
543         case LATEX_LIST_ENVIRONMENT:
544                 os << "\\item ";
545                 break;
546         case LATEX_BIB_ENVIRONMENT:
547                 // ignore this, the inset will write itself
548                 break;
549         default:
550                 break;
551         }
552
553         bool need_par = pit->simpleTeXOnePar(buf, bparams,
554                                              outerFont(pit, paragraphs),
555                                              os, texrow, moving_arg);
556
557         // Make sure that \\par is done with the font of the last
558         // character if this has another size as the default.
559         // This is necessary because LaTeX (and LyX on the screen)
560         // calculates the space between the baselines according
561         // to this font. (Matthias)
562         //
563         // Is this really needed ? (Dekel)
564         // We do not need to use to change the font for the last paragraph
565         // or for a command.
566         LyXFont const outerfont(outerFont(pit, paragraphs));
567
568         LyXFont const font =
569                 (pit->empty()
570                  ? pit->getLayoutFont(bparams, outerfont)
571                  : pit->getFont(bparams, pit->size() - 1, outerfont));
572
573         bool is_command = style->isCommand();
574
575         if (style->resfont.size() != font.size()
576             && boost::next(pit) != paragraphs.end()
577             && !is_command) {
578                 if (!need_par)
579                         os << '{';
580                 os << "\\" << font.latexSize() << " \\par}";
581         } else if (need_par) {
582                 os << "\\par}";
583         } else if (is_command)
584                 os << '}';
585
586         switch (style->latextype) {
587         case LATEX_ITEM_ENVIRONMENT:
588         case LATEX_LIST_ENVIRONMENT:
589                 if (boost::next(pit) != paragraphs.end()
590                     && (pit->params().depth() < boost::next(pit)->params().depth())) {
591                         os << '\n';
592                         texrow.newline();
593                 }
594                 break;
595         case LATEX_ENVIRONMENT:
596                 // if its the last paragraph of the current environment
597                 // skip it otherwise fall through
598                 if (boost::next(pit) != paragraphs.end()
599                     && (boost::next(pit)->layout() != pit->layout()
600                         || boost::next(pit)->params().depth() != pit->params().depth()))
601                         break;
602                 // fall through possible
603         default:
604                 // we don't need it for the last paragraph!!!
605                 if (boost::next(pit) != paragraphs.end()) {
606                         os << '\n';
607                         texrow.newline();
608                 }
609         }
610
611         if ((in == 0) || !in->forceDefaultParagraphs(in)) {
612                 further_blank_line = false;
613                 if (pit->params().lineBottom()) {
614                         os << "\\lyxline{\\" << font.latexSize() << '}';
615                         further_blank_line = true;
616                 }
617
618                 if (pit->params().spaceBottom().kind() != VSpace::NONE) {
619                         os << pit->params().spaceBottom().asLatexCommand(bparams);
620                         further_blank_line = true;
621                 }
622
623                 if (pit->params().pagebreakBottom()) {
624                         os << "\\newpage";
625                         further_blank_line = true;
626                 }
627
628                 if (further_blank_line) {
629                         os << '\n';
630                         texrow.newline();
631                 }
632
633                 if (!pit->params().spacing().isDefault()
634                         && (boost::next(pit) == paragraphs.end()|| !boost::next(pit)->hasSameLayout(&*pit))) {
635                         os << pit->params().spacing().writeEnvirEnd() << '\n';
636                         texrow.newline();
637                 }
638         }
639
640         // we don't need it for the last paragraph!!!
641         if (boost::next(pit) != paragraphs.end()) {
642                 os << '\n';
643                 texrow.newline();
644         } else {
645                 // Since \selectlanguage write the language to the aux file,
646                 // we need to reset the language at the end of footnote or
647                 // float.
648
649                 if (language->babel() != doc_language->babel()) {
650                         if (lyxrc.language_command_end.empty())
651                                 os << subst(lyxrc.language_command_begin,
652                                             "$$lang",
653                                             doc_language->babel())
654                                    << endl;
655                         else
656                                 os << subst(lyxrc.language_command_end,
657                                             "$$lang",
658                                             language->babel())
659                                    << endl;
660                         texrow.newline();
661                 }
662         }
663
664         lyxerr[Debug::LATEX] << "TeXOnePar...done " << &*boost::next(pit) << endl;
665         return ++pit;
666 }
667
668 } // anon namespace
669
670
671 //
672 // LaTeX all paragraphs from par to endpar, if endpar == 0 then to the end
673 //
674 void latexParagraphs(Buffer const * buf,
675                      ParagraphList const & paragraphs,
676                      ParagraphList::iterator par,
677                      ParagraphList::iterator endpar,
678                      ostream & ofs,
679                      TexRow & texrow,
680                      bool moving_arg)
681 {
682         bool was_title = false;
683         bool already_title = false;
684         LyXTextClass const & tclass = buf->params.getLyXTextClass();
685
686         // if only_body
687         while (par != endpar) {
688                 Inset * in = par->inInset();
689                 // well we have to check if we are in an inset with unlimited
690                 // length (all in one row) if that is true then we don't allow
691                 // any special options in the paragraph and also we don't allow
692                 // any environment other then "Standard" to be valid!
693                 if ((in == 0) || !in->forceDefaultParagraphs(in)) {
694                         LyXLayout_ptr const & layout = par->layout();
695
696                         if (layout->intitle) {
697                                 if (already_title) {
698                                         lyxerr <<"Error in latexParagraphs: You"
699                                                 " should not mix title layouts"
700                                                 " with normal ones." << endl;
701                                 } else if (!was_title) {
702                                         was_title = true;
703                                         if (tclass.titletype() == TITLE_ENVIRONMENT) {
704                                                 ofs << "\\begin{"
705                                                     << tclass.titlename()
706                                                     << "}\n";
707                                                 texrow.newline();
708                                         }
709                                 }
710                         } else if (was_title && !already_title) {
711                                 if (tclass.titletype() == TITLE_ENVIRONMENT) {
712                                         ofs << "\\end{" << tclass.titlename()
713                                             << "}\n";
714                                 }
715                                 else {
716                                         ofs << "\\" << tclass.titlename()
717                                             << "\n";
718                                 }
719                                 texrow.newline();
720                                 already_title = true;
721                                 was_title = false;
722                         }
723
724                         if (layout->isEnvironment() ||
725                                 !par->params().leftIndent().zero())
726                         {
727                                 par = TeXEnvironment(buf, paragraphs, par, ofs, texrow);
728                         } else {
729                                 par = TeXOnePar(buf, paragraphs, par, ofs, texrow, moving_arg);
730                         }
731                 } else {
732                         par = TeXOnePar(buf, paragraphs, par, ofs, texrow, moving_arg);
733                 }
734         }
735         // It might be that we only have a title in this document
736         if (was_title && !already_title) {
737                 if (tclass.titletype() == TITLE_ENVIRONMENT) {
738                         ofs << "\\end{" << tclass.titlename()
739                             << "}\n";
740                 }
741                 else {
742                         ofs << "\\" << tclass.titlename()
743                             << "\n";
744                                 }
745                 texrow.newline();
746         }
747 }
748
749
750 namespace {
751
752 int readParToken(Buffer & buf, Paragraph & par, LyXLex & lex, string const & token)
753 {
754         static LyXFont font;
755         static Change change;
756
757         BufferParams const & bp = buf.params;
758
759         if (token[0] != '\\') {
760                 string::const_iterator cit = token.begin();
761                 for (; cit != token.end(); ++cit) {
762                         par.insertChar(par.size(), (*cit), font, change);
763                 }
764         } else if (token == "\\layout") {
765                 lex.eatLine();
766                 string layoutname = lex.getString();
767
768                 font = LyXFont(LyXFont::ALL_INHERIT, bp.language);
769                 change = Change();
770
771                 LyXTextClass const & tclass = bp.getLyXTextClass();
772
773                 if (layoutname.empty()) {
774                         layoutname = tclass.defaultLayoutName();
775                 }
776
777                 bool hasLayout = tclass.hasLayout(layoutname);
778
779                 if (!hasLayout) {
780                         lyxerr << "Layout '" << layoutname << "' does not"
781                                << " exist in textclass '" << tclass.name()
782                                << "'." << endl;
783                         lyxerr << "Trying to use default layout instead."
784                                << endl;
785                         layoutname = tclass.defaultLayoutName();
786                 }
787
788 #ifdef USE_CAPTION
789                 // The is the compability reading of layout caption.
790                 if (compare_ascii_no_case(layoutname, "caption") == 0) {
791                         // We expect that the par we are now working on is
792                         // really inside a InsetText inside a InsetFloat.
793                         // We also know that captions can only be
794                         // one paragraph. (Lgb)
795
796                         // We should now read until the next "\layout"
797                         // is reached.
798                         // This is probably not good enough, what if the
799                         // caption is the last par in the document (Lgb)
800                         istream & ist = lex.getStream();
801                         stringstream ss;
802                         string line;
803                         int begin = 0;
804                         while (true) {
805                                 getline(ist, line);
806                                 if (prefixIs(line, "\\layout")) {
807                                         lex.pushToken(line);
808                                         break;
809                                 }
810                                 if (prefixIs(line, "\\begin_inset"))
811                                         ++begin;
812                                 if (prefixIs(line, "\\end_inset")) {
813                                         if (begin)
814                                                 --begin;
815                                         else {
816                                                 lex.pushToken(line);
817                                                 break;
818                                         }
819                                 }
820
821                                 ss << line << '\n';
822                         }
823
824                         // Now we should have the whole layout in ss
825                         // we should now be able to give this to the
826                         // caption inset.
827                         ss << "\\end_inset\n";
828
829                         // This seems like a bug in stringstream.
830                         // We really should be able to use ss
831                         // directly. (Lgb)
832                         istringstream is(ss.str());
833                         LyXLex tmplex(0, 0);
834                         tmplex.setStream(is);
835                         Inset * inset = new InsetCaption;
836                         inset->Read(this, tmplex);
837                         par.insertInset(pos, inset, font);
838                         ++pos;
839                 } else {
840 #endif
841                         par.layout(bp.getLyXTextClass()[layoutname]);
842
843                         // Test whether the layout is obsolete.
844                         LyXLayout_ptr const & layout = par.layout();
845                         if (!layout->obsoleted_by().empty())
846                                 par.layout(bp.getLyXTextClass()[layout->obsoleted_by()]);
847
848                         par.params().read(lex);
849 #if USE_CAPTION
850                 }
851 #endif
852
853         } else if (token == "\\end_inset") {
854                 lyxerr << "Solitary \\end_inset in line " << lex.getLineNo() << "\n"
855                        << "Missing \\begin_inset?.\n";
856                 // Simply ignore this. The insets do not have
857                 // to read this.
858                 // But insets should read it, it is a part of
859                 // the inset isn't it? Lgb.
860         } else if (token == "\\begin_inset") {
861                 Inset * i = readInset(lex, buf);
862                 par.insertInset(par.size(), i, font, change);
863         } else if (token == "\\family") {
864                 lex.next();
865                 font.setLyXFamily(lex.getString());
866         } else if (token == "\\series") {
867                 lex.next();
868                 font.setLyXSeries(lex.getString());
869         } else if (token == "\\shape") {
870                 lex.next();
871                 font.setLyXShape(lex.getString());
872         } else if (token == "\\size") {
873                 lex.next();
874                 font.setLyXSize(lex.getString());
875         } else if (token == "\\lang") {
876                 lex.next();
877                 string const tok = lex.getString();
878                 Language const * lang = languages.getLanguage(tok);
879                 if (lang) {
880                         font.setLanguage(lang);
881                 } else {
882                         font.setLanguage(bp.language);
883                         lex.printError("Unknown language `$$Token'");
884                 }
885         } else if (token == "\\numeric") {
886                 lex.next();
887                 font.setNumber(font.setLyXMisc(lex.getString()));
888         } else if (token == "\\emph") {
889                 lex.next();
890                 font.setEmph(font.setLyXMisc(lex.getString()));
891         } else if (token == "\\bar") {
892                 lex.next();
893                 string const tok = lex.getString();
894
895                 if (tok == "under")
896                         font.setUnderbar(LyXFont::ON);
897                 else if (tok == "no")
898                         font.setUnderbar(LyXFont::OFF);
899                 else if (tok == "default")
900                         font.setUnderbar(LyXFont::INHERIT);
901                 else
902                         lex.printError("Unknown bar font flag "
903                                        "`$$Token'");
904         } else if (token == "\\noun") {
905                 lex.next();
906                 font.setNoun(font.setLyXMisc(lex.getString()));
907         } else if (token == "\\color") {
908                 lex.next();
909                 font.setLyXColor(lex.getString());
910         } else if (token == "\\SpecialChar") {
911                 LyXLayout_ptr const & layout = par.layout();
912
913                 // Insets don't make sense in a free-spacing context! ---Kayvan
914                 if (layout->free_spacing || par.isFreeSpacing()) {
915                         if (lex.isOK()) {
916                                 lex.next();
917                                 string const next_token = lex.getString();
918                                 if (next_token == "\\-") {
919                                         par.insertChar(par.size(), '-', font, change);
920                                 } else if (next_token == "~") {
921                                         par.insertChar(par.size(), ' ', font, change);
922                                 } else {
923                                         lex.printError("Token `$$Token' "
924                                                        "is in free space "
925                                                        "paragraph layout!");
926                                 }
927                         }
928                 } else {
929                         Inset * inset = new InsetSpecialChar;
930                         inset->read(&buf, lex);
931                         par.insertInset(par.size(), inset, font, change);
932                 }
933         } else if (token == "\\i") {
934                 Inset * inset = new InsetLatexAccent;
935                 inset->read(&buf, lex);
936                 par.insertInset(par.size(), inset, font, change);
937         } else if (token == "\\backslash") {
938                 par.insertChar(par.size(), '\\', font, change);
939         } else if (token == "\\newline") {
940                 Inset * inset = new InsetNewline;
941                 inset->read(&buf, lex);
942                 par.insertInset(par.size(), inset, font, change);
943         } else if (token == "\\LyXTable") {
944                 Inset * inset = new InsetTabular(buf);
945                 inset->read(&buf, lex);
946                 par.insertInset(par.size(), inset, font, change);
947         } else if (token == "\\bibitem") {
948                 InsetCommandParams p("bibitem", "dummy");
949                 InsetBibitem * inset = new InsetBibitem(p);
950                 inset->read(&buf, lex);
951                 par.insertInset(par.size(), inset, font, change);
952         } else if (token == "\\hfill") {
953                 par.insertInset(par.size(), new InsetHFill(), font, change);
954         } else if (token == "\\change_unchanged") {
955                 // Hack ! Needed for empty paragraphs :/
956                 // FIXME: is it still ??
957                 if (!par.size())
958                         par.cleanChanges();
959                 change = Change(Change::UNCHANGED);
960         } else if (token == "\\change_inserted") {
961                 lex.nextToken();
962                 istringstream istr(lex.getString());
963                 int aid;
964                 lyx::time_type ct;
965                 istr >> aid;
966                 istr >> ct;
967                 change = Change(Change::INSERTED, bp.author_map[aid], ct);
968         } else if (token == "\\change_deleted") {
969                 lex.nextToken();
970                 istringstream istr(lex.getString());
971                 int aid;
972                 lyx::time_type ct;
973                 istr >> aid;
974                 istr >> ct;
975                 change = Change(Change::DELETED, bp.author_map[aid], ct);
976         } else {
977                 lex.eatLine();
978 #if USE_BOOST_FORMAT
979                 boost::format fmt(_("Unknown token: %1$s %2$s\n"));
980                 fmt % token % lex.getString();
981                 string const s = fmt.str();
982 #else
983                 string const s = _("Unknown token: ") + token
984                         + ' ' + lex.getString() + '\n';
985 #endif
986                 // we can do this here this way because we're actually reading
987                 // the buffer and don't care about LyXText right now.
988                 InsetError * inset = new InsetError(s);
989                 par.insertInset(par.size(), inset, font);
990                 return 1;
991         }
992         return 0;
993 }
994
995 }
996
997
998 int readParagraph(Buffer & buf, Paragraph & par, LyXLex & lex)
999 {
1000         int unknown = 0;
1001
1002         lex.nextToken();
1003         string token = lex.getString();
1004
1005         while (lex.isOK()) {
1006
1007                 unknown += readParToken(buf, par, lex, token);
1008
1009                 lex.nextToken();
1010                 token = lex.getString();
1011
1012                 if (token.empty())
1013                         continue;
1014
1015                 lyxerr[Debug::PARSER] << "Handling paragraph token: `"
1016                                       << token << '\'' << endl;
1017
1018                 // reached the next paragraph. FIXME: really we should
1019                 // change the file format to indicate the end of a par
1020                 // clearly, but for now, this hack will do
1021                 if (token == "\\layout" || token == "\\the_end"
1022                     || token == "\\end_inset" || token == "\\begin_deeper"
1023                     || token == "\\end_deeper") {
1024                         lex.pushToken(token);
1025                         break;
1026                 }
1027         }
1028
1029         return unknown;
1030 }
1031
1032
1033 LyXFont const outerFont(ParagraphList::iterator pit,
1034                         ParagraphList const & /*plist*/)
1035 {
1036         Paragraph::depth_type par_depth = pit->getDepth();
1037         LyXFont tmpfont(LyXFont::ALL_INHERIT);
1038
1039         // Resolve against environment font information
1040         Paragraph * par = &*pit;
1041         while (par && par_depth && !tmpfont.resolved()) {
1042                 par = outerHook(par);
1043                 if (par) {
1044                         tmpfont.realize(par->layout()->font);
1045                         par_depth = par->getDepth();
1046                 }
1047         }
1048
1049         return tmpfont;
1050 }
1051
1052
1053 LyXFont const realizeFont(LyXFont const & font,
1054                           BufferParams const & params)
1055 {
1056         LyXTextClass const & tclass = params.getLyXTextClass();
1057         LyXFont tmpfont(font);
1058         tmpfont.realize(tclass.defaultfont());
1059         return tmpfont;
1060 }