]> git.lyx.org Git - lyx.git/blob - src/buffer.C
layout as layout
[lyx.git] / src / buffer.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  *           This file is Copyright 1996-2001
10  *           Lars Gullik Bjønnes
11  *
12  * ======================================================
13  */
14
15 #include <config.h>
16
17 #ifdef __GNUG__
18 #pragma implementation
19 #endif
20
21 #include "buffer.h"
22 #include "bufferlist.h"
23 #include "lyx_main.h"
24 #include "LyXAction.h"
25 #include "lyxrc.h"
26 #include "lyxlex.h"
27 #include "tex-strings.h"
28 #include "layout.h"
29 #include "bufferview_funcs.h"
30 #include "lyxfont.h"
31 #include "version.h"
32 #include "LaTeX.h"
33 #include "Chktex.h"
34 #include "frontends/LyXView.h"
35 #include "debug.h"
36 #include "LaTeXFeatures.h"
37 #include "lyxtext.h"
38 #include "gettext.h"
39 #include "language.h"
40 #include "encoding.h"
41 #include "exporter.h"
42 #include "Lsstream.h"
43 #include "converter.h"
44 #include "BufferView.h"
45 #include "ParagraphParameters.h"
46 #include "iterators.h"
47 #include "lyxtextclasslist.h"
48
49 #include "mathed/formulamacro.h"
50 #include "mathed/formula.h"
51
52 #include "insets/inset.h"
53 #include "insets/inseterror.h"
54 #include "insets/insetlabel.h"
55 #include "insets/insetref.h"
56 #include "insets/inseturl.h"
57 #include "insets/insetnote.h"
58 #include "insets/insetquotes.h"
59 #include "insets/insetlatexaccent.h"
60 #include "insets/insetbib.h"
61 #include "insets/insetcite.h"
62 #include "insets/insetexternal.h"
63 #include "insets/insetindex.h"
64 #include "insets/insetinclude.h"
65 #include "insets/insettoc.h"
66 #include "insets/insetparent.h"
67 #include "insets/insetspecialchar.h"
68 #include "insets/insettext.h"
69 #include "insets/insetert.h"
70 #include "insets/insetgraphics.h"
71 #include "insets/insetfoot.h"
72 #include "insets/insetmarginal.h"
73 #include "insets/insetminipage.h"
74 #include "insets/insetfloat.h"
75 #include "insets/insettabular.h"
76 #if 0
77 #include "insets/insettheorem.h"
78 #include "insets/insetlist.h"
79 #endif
80 #include "insets/insetcaption.h"
81 #include "insets/insetfloatlist.h"
82
83 #include "frontends/Dialogs.h"
84 #include "frontends/Alert.h"
85
86 #include "support/textutils.h"
87 #include "support/filetools.h"
88 #include "support/path.h"
89 #include "support/os.h"
90 #include "support/lyxlib.h"
91 #include "support/FileInfo.h"
92 #include "support/lyxmanip.h"
93 #include "support/lyxalgo.h" // for lyx::count
94
95 #include <fstream>
96 #include <iomanip>
97 #include <map>
98 #include <stack>
99 #include <list>
100 #include <algorithm>
101
102 #include <cstdlib>
103 #include <cmath>
104 #include <unistd.h>
105 #include <sys/types.h>
106 #include <utime.h>
107
108
109 #ifdef HAVE_LOCALE
110 #include <locale>
111 #endif
112
113 #ifndef CXX_GLOBAL_CSTD
114 using std::pow;
115 #endif
116
117 using std::ostream;
118 using std::ofstream;
119 using std::ifstream;
120 using std::fstream;
121 using std::ios;
122 using std::setw;
123 using std::endl;
124 using std::pair;
125 using std::make_pair;
126 using std::vector;
127 using std::map;
128 using std::max;
129 using std::set;
130 using std::stack;
131 using std::list;
132
133 using lyx::pos_type;
134 using lyx::textclass_type;
135
136 // all these externs should eventually be removed.
137 extern BufferList bufferlist;
138
139 extern LyXAction lyxaction;
140
141 namespace {
142
143 const int LYX_FORMAT = 220;
144
145 } // namespace anon
146
147 extern int tex_code_break_column;
148
149
150 Buffer::Buffer(string const & file, bool ronly)
151         : paragraph(0), niceFile(true), lyx_clean(true), bak_clean(true),
152           unnamed(false), dep_clean(0), read_only(ronly),
153           filename_(file), users(0)
154 {
155         lyxerr[Debug::INFO] << "Buffer::Buffer()" << endl;
156 //      filename = file;
157         filepath_ = OnlyPath(file);
158 //      paragraph = 0;
159 //      lyx_clean = true;
160 //      bak_clean = true;
161 //      dep_clean = 0;
162 //      read_only = ronly;
163 //      unnamed = false;
164 //      users = 0;
165         lyxvc.buffer(this);
166         if (read_only || lyxrc.use_tempdir) {
167                 tmppath = CreateBufferTmpDir();
168         } else {
169                 tmppath.erase();
170         }
171 }
172
173
174 Buffer::~Buffer()
175 {
176         lyxerr[Debug::INFO] << "Buffer::~Buffer()" << endl;
177         // here the buffer should take care that it is
178         // saved properly, before it goes into the void.
179
180         // make sure that views using this buffer
181         // forgets it.
182         if (users)
183                 users->buffer(0);
184
185         if (!tmppath.empty()) {
186                 DestroyBufferTmpDir(tmppath);
187         }
188
189         Paragraph * par = paragraph;
190         Paragraph * tmppar;
191         while (par) {
192                 tmppar = par->next();
193                 delete par;
194                 par = tmppar;
195         }
196         paragraph = 0;
197 }
198
199
200 string const Buffer::getLatexName(bool no_path) const
201 {
202         string const name = ChangeExtension(MakeLatexName(fileName()), ".tex");
203         if (no_path)
204                 return OnlyFilename(name);
205         else
206                 return name;
207 }
208
209
210 pair<Buffer::LogType, string> const Buffer::getLogName(void) const
211 {
212         string const filename = getLatexName(false);
213
214         if (filename.empty())
215                 return make_pair(Buffer::latexlog, string());
216
217         string path = OnlyPath(filename);
218
219         if (lyxrc.use_tempdir || !IsDirWriteable(path))
220                 path = tmppath;
221
222         string const fname = AddName(path,
223                                      OnlyFilename(ChangeExtension(filename,
224                                                                   ".log")));
225         string const bname =
226                 AddName(path, OnlyFilename(
227                         ChangeExtension(filename,
228                                         formats.extension("literate") + ".out")));
229
230         // If no Latex log or Build log is newer, show Build log
231
232         FileInfo const f_fi(fname);
233         FileInfo const b_fi(bname);
234
235         if (b_fi.exist() &&
236             (!f_fi.exist() || f_fi.getModificationTime() < b_fi.getModificationTime())) {
237                 lyxerr[Debug::FILES] << "Log name calculated as : " << bname << endl;
238                 return make_pair(Buffer::buildlog, bname);
239         }
240         lyxerr[Debug::FILES] << "Log name calculated as : " << fname << endl;
241         return make_pair(Buffer::latexlog, fname);
242 }
243
244
245 void Buffer::setReadonly(bool flag)
246 {
247         if (read_only != flag) {
248                 read_only = flag;
249                 updateTitles();
250                 users->owner()->getDialogs()->updateBufferDependent(false);
251         }
252 }
253
254
255 /// Update window titles of all users
256 // Should work on a list
257 void Buffer::updateTitles() const
258 {
259         if (users)
260                 users->owner()->updateWindowTitle();
261 }
262
263
264 /// Reset autosave timer of all users
265 // Should work on a list
266 void Buffer::resetAutosaveTimers() const
267 {
268         if (users)
269                 users->owner()->resetAutosaveTimer();
270 }
271
272
273 void Buffer::setFileName(string const & newfile)
274 {
275         filename_ = MakeAbsPath(newfile);
276         filepath_ = OnlyPath(filename_);
277         setReadonly(IsFileWriteable(filename_) == 0);
278         updateTitles();
279 }
280
281
282 // We'll remove this later. (Lgb)
283 namespace {
284
285 string last_inset_read;
286
287 #ifndef NO_COMPABILITY
288 struct ErtComp
289 {
290         ErtComp() : active(false), fromlayout(false), in_tabular(false) {
291         }
292         string contents;
293         bool active;
294         bool fromlayout;
295         bool in_tabular;
296         LyXFont font;
297 };
298
299 std::stack<ErtComp> ert_stack;
300 ErtComp ert_comp;
301 #endif
302
303 #ifdef WITH_WARNINGS
304 #warning And _why_ is this here? (Lgb)
305 #endif
306 int unknown_layouts;
307 int unknown_tokens;
308
309 } // anon
310
311
312 // candidate for move to BufferView
313 // (at least some parts in the beginning of the func)
314 //
315 // Uwe C. Schroeder
316 // changed to be public and have one parameter
317 // if par = 0 normal behavior
318 // else insert behavior
319 // Returns false if "\the_end" is not read for formats >= 2.13. (Asger)
320 bool Buffer::readLyXformat2(LyXLex & lex, Paragraph * par)
321 {
322         unknown_layouts = 0;
323         unknown_tokens = 0;
324 #ifndef NO_COMPABILITY
325         ert_comp.contents.erase();
326         ert_comp.active = false;
327         ert_comp.fromlayout = false;
328         ert_comp.in_tabular = false;
329 #endif
330         int pos = 0;
331         Paragraph::depth_type depth = 0;
332         bool the_end_read = false;
333
334         Paragraph * first_par = 0;
335         LyXFont font(LyXFont::ALL_INHERIT, params.language);
336
337 #if 0
338         if (file_format < 216 && params.language->lang() == "hebrew")
339                 font.setLanguage(default_language);
340 #endif
341
342         if (!par) {
343                 par = new Paragraph;
344                 par->layout(textclasslist[params.textclass].defaultLayout());
345         } else {
346                 // We are inserting into an existing document
347                 users->text->breakParagraph(users);
348                 first_par = users->text->ownerParagraph();
349                 pos = 0;
350                 markDirty();
351                 // We don't want to adopt the parameters from the
352                 // document we insert, so we skip until the text begins:
353                 while (lex.isOK()) {
354                         lex.nextToken();
355                         string const pretoken = lex.getString();
356                         if (pretoken == "\\layout") {
357                                 lex.pushToken(pretoken);
358                                 break;
359                         }
360                 }
361         }
362
363         while (lex.isOK()) {
364                 lex.nextToken();
365                 string const token = lex.getString();
366
367                 if (token.empty()) continue;
368
369                 lyxerr[Debug::PARSER] << "Handling token: `"
370                                       << token << "'" << endl;
371
372                 the_end_read =
373                         parseSingleLyXformat2Token(lex, par, first_par,
374                                                    token, pos, depth,
375                                                    font);
376         }
377
378         if (!first_par)
379                 first_par = par;
380
381         paragraph = first_par;
382
383         if (unknown_layouts > 0) {
384                 string s = _("Couldn't set the layout for ");
385                 if (unknown_layouts == 1) {
386                         s += _("one paragraph");
387                 } else {
388                         s += tostr(unknown_layouts);
389                         s += _(" paragraphs");
390                 }
391                 Alert::alert(_("Textclass Loading Error!"), s,
392                            _("When reading " + fileName()));
393         }
394
395         if (unknown_tokens > 0) {
396                 string s = _("Encountered ");
397                 if (unknown_tokens == 1) {
398                         s += _("one unknown token");
399                 } else {
400                         s += tostr(unknown_tokens);
401                         s += _(" unknown tokens");
402                 }
403                 Alert::alert(_("Textclass Loading Error!"), s,
404                            _("When reading " + fileName()));
405         }
406
407         return the_end_read;
408 }
409
410
411 #ifndef NO_COMPABILITY
412
413 Inset * Buffer::isErtInset(Paragraph * par, int pos) const
414 {
415         Inset * inset;
416         if ((par->getChar(pos) == Paragraph::META_INSET) &&
417                 (inset = par->getInset(pos)) &&
418                 (inset->lyxCode() == Inset::ERT_CODE))
419         {
420                 return inset;
421         }
422         return 0;
423 }
424
425 void Buffer::insertErtContents(Paragraph * par, int & pos, bool set_inactive)
426 {
427         if (ert_comp.contents.find_first_not_of(' ') != string::npos) {
428                 // we only skip completely empty ERT (only spaces) otherwise
429                 // we have to insert it as is.
430                 string str(ert_comp.contents);
431                 lyxerr[Debug::INSETS] << "ERT contents:\n'"
432                         << str << "'" << endl;
433                 // check if we have already an ert inset a position earlier
434                 // if this is the case then we should insert the contents
435                 // inside the other ertinset as it is stupid to have various
436                 // ert in a row.
437                 Inset * inset;
438                 if ((pos > 0) && (inset=isErtInset(par, pos-1))) {
439                         // get the last paragraph from the inset before
440                         Paragraph * last = inset->firstParagraph();
441                         while(last->next())
442                                 last = last->next();
443                         // create the new paragraph after the last one
444                         Paragraph * par = new Paragraph(last);
445                         par->layout(textclasslist[params.textclass].defaultLayoutName());
446                         par->setInsetOwner(last->inInset());
447                         // set the contents
448                         LyXFont font(LyXFont::ALL_INHERIT, params.language);
449                         string::const_iterator cit = str.begin();
450                         string::const_iterator end = str.end();
451                         pos_type pos = 0;
452                         for (; cit != end; ++cit) {
453                                 par->insertChar(pos++, *cit, font);
454                         }
455                 } else {
456                         Inset * inset =
457                                 new InsetERT(params, params.language, str, true);
458                         par->insertInset(pos++, inset, ert_comp.font);
459                 }
460         }
461         ert_comp.contents.erase();
462         ert_comp.fromlayout = false;
463         if (set_inactive) {
464                 ert_comp.active = false;
465         }
466 }
467 #endif
468
469
470 bool
471 Buffer::parseSingleLyXformat2Token(LyXLex & lex, Paragraph *& par,
472                                    Paragraph *& first_par,
473                                    string const & token, int & pos,
474                                    Paragraph::depth_type & depth,
475                                    LyXFont & font
476         )
477 {
478         bool the_end_read = false;
479 #ifndef NO_COMPABILITY
480 #ifndef NO_PEXTRA_REALLY
481         // This is super temporary but is needed to get the compability
482         // mode for minipages work correctly together with new tabulars.
483         static int call_depth;
484         ++call_depth;
485         bool checkminipage = false;
486         static Paragraph * minipar = 0;
487         static Paragraph * parBeforeMinipage;
488 #endif
489 #endif
490
491         // The order of the tags tested may seem unnatural, but this
492         // has been done in order to reduce the number of string
493         // comparisons needed to recognize a given token. This leads
494         // on large documents like UserGuide to a reduction of a
495         // factor 5! (JMarc)
496         if (token[0] != '\\') {
497 #ifndef NO_COMPABILITY
498                 if (ert_comp.active) {
499                         ert_comp.contents += token;
500                 } else {
501 #endif
502                 for (string::const_iterator cit = token.begin();
503                      cit != token.end(); ++cit) {
504                         par->insertChar(pos, (*cit), font);
505                         ++pos;
506                 }
507 #ifndef NO_COMPABILITY
508                 }
509 #endif
510         } else if (token == "\\layout") {
511 #ifndef NO_COMPABILITY
512                 bool old_fromlayout = ert_comp.fromlayout;
513                 bool create_new_par = true;
514                 ert_comp.in_tabular = false;
515                 // Do the insetert.
516                 if (!par->size() && par->previous() &&
517                         (par->previous()->size() == 1) &&
518                         isErtInset(par->previous(), par->previous()->size()-1))
519                 {
520                         int p = par->previous()->size();
521                         insertErtContents(par->previous(), p);
522                         create_new_par = false;
523                 } else {
524                         insertErtContents(par, pos);
525                 }
526 #endif
527                 // reset the font as we start a new layout and if the font is
528                 // not ALL_INHERIT,document_language then it will be set to the
529                 // right values after this tag (Jug 20020420)
530                 font = LyXFont(LyXFont::ALL_INHERIT, params.language);
531
532 #if 0
533                 if (file_format < 216 && params.language->lang() == "hebrew")
534                         font.setLanguage(default_language);
535 #endif
536
537                 lex.eatLine();
538                 string layoutname = lex.getString();
539
540                 LyXTextClass const & tclass = textclasslist[params.textclass];
541
542                 if (layoutname.empty()) {
543                         layoutname = tclass.defaultLayoutName();
544                 }
545 #ifndef NO_COMPABILITY
546                 if (compare_no_case(layoutname, "latex") == 0) {
547                         ert_comp.active = true;
548                         ert_comp.fromlayout = true;
549                         ert_comp.font = font;
550                         if (old_fromlayout)
551                                 create_new_par = false;
552                 }
553 #endif
554                 bool hasLayout = tclass.hasLayout(layoutname);
555                 if (!hasLayout) {
556                         lyxerr << "Layout '" << layoutname << "' does not"
557                                << " exist in textclass '" << tclass.name()
558                                << "'." << endl;
559                         lyxerr << "Trying to use default layout instead."
560                                << endl;
561                         layoutname = tclass.defaultLayoutName();
562                 }
563
564 #ifdef USE_CAPTION
565                 // The is the compability reading of layout caption.
566                 // It can be removed in LyX version 1.3.0. (Lgb)
567                 if (compare_no_case(layoutname, "caption") == 0) {
568                         // We expect that the par we are now working on is
569                         // really inside a InsetText inside a InsetFloat.
570                         // We also know that captions can only be
571                         // one paragraph. (Lgb)
572
573                         // We should now read until the next "\layout"
574                         // is reached.
575                         // This is probably not good enough, what if the
576                         // caption is the last par in the document (Lgb)
577                         istream & ist = lex.getStream();
578                         stringstream ss;
579                         string line;
580                         int begin = 0;
581                         while (true) {
582                                 getline(ist, line);
583                                 if (prefixIs(line, "\\layout")) {
584                                         lex.pushToken(line);
585                                         break;
586                                 }
587                                 if (prefixIs(line, "\\begin_inset"))
588                                         ++begin;
589                                 if (prefixIs(line, "\\end_inset")) {
590                                         if (begin)
591                                                 --begin;
592                                         else {
593                                                 lex.pushToken(line);
594                                                 break;
595                                         }
596                                 }
597
598                                 ss << line << '\n';
599                         }
600                         // Now we should have the whole layout in ss
601                         // we should now be able to give this to the
602                         // caption inset.
603                         ss << "\\end_inset\n";
604
605                         // This seems like a bug in stringstream.
606                         // We really should be able to use ss
607                         // directly. (Lgb)
608                         istringstream is(ss.str());
609                         LyXLex tmplex(0, 0);
610                         tmplex.setStream(is);
611                         Inset * inset = new InsetCaption;
612                         inset->Read(this, tmplex);
613                         par->InsertInset(pos, inset, font);
614                         ++pos;
615                 } else {
616 #endif
617 #ifndef NO_COMPABILITY
618                 if (create_new_par) {
619 #endif
620                         if (!first_par)
621                                 first_par = par;
622                         else {
623                                 par = new Paragraph(par);
624                                 par->layout(textclasslist[params.textclass].defaultLayout());
625                         }
626                         pos = 0;
627                         par->layout(textclasslist[params.textclass][layoutname]);
628                         // Test whether the layout is obsolete.
629                         LyXLayout_ptr const & layout = par->layout();
630                         if (!layout->obsoleted_by().empty())
631                                 par->layout(textclasslist[params.textclass][layout->obsoleted_by()]);
632                         par->params().depth(depth);
633 #ifndef NO_COMPABILITY
634                 } else {
635                         // we duplicate code here because it's easier to remove
636                         // the code then of NO_COMPATIBILITY
637                         par->layout(layoutname);
638                         // Test whether the layout is obsolete.
639                         LyXLayout_ptr const & layout =
640                                 textclasslist[params.textclass][par->layout()];
641                         if (!layout->obsoleted_by().empty())
642                                 par->layout(layout->obsoleted_by());
643                         par->params().depth(depth);
644                 }
645 #endif
646 #if USE_CAPTION
647                 }
648 #endif
649
650         } else if (token == "\\end_inset") {
651                 lyxerr << "Solitary \\end_inset. Missing \\begin_inset?.\n"
652                        << "Last inset read was: " << last_inset_read
653                        << endl;
654                 // Simply ignore this. The insets do not have
655                 // to read this.
656                 // But insets should read it, it is a part of
657                 // the inset isn't it? Lgb.
658         } else if (token == "\\begin_inset") {
659 #ifndef NO_COMPABILITY
660                 insertErtContents(par, pos, false);
661                 ert_stack.push(ert_comp);
662                 ert_comp = ErtComp();
663 #endif
664                 readInset(lex, par, pos, font);
665 #ifndef NO_COMPABILITY
666                 ert_comp = ert_stack.top();
667                 ert_stack.pop();
668                 insertErtContents(par, pos);
669 #endif
670         } else if (token == "\\family") {
671                 lex.next();
672                 font.setLyXFamily(lex.getString());
673         } else if (token == "\\series") {
674                 lex.next();
675                 font.setLyXSeries(lex.getString());
676         } else if (token == "\\shape") {
677                 lex.next();
678                 font.setLyXShape(lex.getString());
679         } else if (token == "\\size") {
680                 lex.next();
681                 font.setLyXSize(lex.getString());
682 #ifndef NO_COMPABILITY
683         } else if (token == "\\latex") {
684                 lex.next();
685                 string const tok = lex.getString();
686                 if (tok == "no_latex") {
687                         // Do the insetert.
688                         insertErtContents(par, pos);
689                 } else if (tok == "latex") {
690                         ert_comp.active = true;
691                         ert_comp.font = font;
692                 } else if (tok == "default") {
693                         // Do the insetert.
694                         insertErtContents(par, pos);
695                 } else {
696                         lex.printError("Unknown LaTeX font flag "
697                                        "`$$Token'");
698                 }
699 #endif
700         } else if (token == "\\lang") {
701                 lex.next();
702                 string const tok = lex.getString();
703                 Language const * lang = languages.getLanguage(tok);
704                 if (lang) {
705                         font.setLanguage(lang);
706                 } else {
707                         font.setLanguage(params.language);
708                         lex.printError("Unknown language `$$Token'");
709                 }
710         } else if (token == "\\numeric") {
711                 lex.next();
712                 font.setNumber(font.setLyXMisc(lex.getString()));
713         } else if (token == "\\emph") {
714                 lex.next();
715                 font.setEmph(font.setLyXMisc(lex.getString()));
716         } else if (token == "\\bar") {
717                 lex.next();
718                 string const tok = lex.getString();
719                 // This is dirty, but gone with LyX3. (Asger)
720                 if (tok == "under")
721                         font.setUnderbar(LyXFont::ON);
722                 else if (tok == "no")
723                         font.setUnderbar(LyXFont::OFF);
724                 else if (tok == "default")
725                         font.setUnderbar(LyXFont::INHERIT);
726                 else
727                         lex.printError("Unknown bar font flag "
728                                        "`$$Token'");
729         } else if (token == "\\noun") {
730                 lex.next();
731                 font.setNoun(font.setLyXMisc(lex.getString()));
732         } else if (token == "\\color") {
733                 lex.next();
734                 font.setLyXColor(lex.getString());
735         } else if (token == "\\SpecialChar") {
736                 LyXLayout_ptr const & layout = par->layout();
737
738                 // Insets don't make sense in a free-spacing context! ---Kayvan
739                 if (layout->free_spacing || par->isFreeSpacing()) {
740                         if (lex.isOK()) {
741                                 lex.next();
742                                 string next_token = lex.getString();
743                                 if (next_token == "\\-") {
744                                         par->insertChar(pos, '-', font);
745                                 } else if (next_token == "\\protected_separator"
746                                         || next_token == "~") {
747                                         par->insertChar(pos, ' ', font);
748                                 } else {
749                                         lex.printError("Token `$$Token' "
750                                                        "is in free space "
751                                                        "paragraph layout!");
752                                         --pos;
753                                 }
754                         }
755                 } else {
756                         Inset * inset = new InsetSpecialChar;
757                         inset->read(this, lex);
758                         par->insertInset(pos, inset, font);
759                 }
760                 ++pos;
761         } else if (token == "\\i") {
762                 Inset * inset = new InsetLatexAccent;
763                 inset->read(this, lex);
764                 par->insertInset(pos, inset, font);
765                 ++pos;
766         } else if (token == "\\backslash") {
767 #ifndef NO_COMPABILITY
768                 if (ert_comp.active) {
769                         ert_comp.contents += "\\";
770                 } else {
771 #endif
772                 par->insertChar(pos, '\\', font);
773                 ++pos;
774 #ifndef NO_COMPABILITY
775                 }
776 #endif
777 #ifndef NO_COMPABILITY
778         } else if (token == "\\begin_float") {
779                 insertErtContents(par, pos);
780                 //insertErtContents(par, pos, false);
781                 //ert_stack.push(ert_comp);
782                 //ert_comp = ErtComp();
783
784                 // This is the compability reader. It can be removed in
785                 // LyX version 1.3.0. (Lgb)
786                 lex.next();
787                 string const tmptok = lex.getString();
788                 //lyxerr << "old float: " << tmptok << endl;
789
790                 Inset * inset = 0;
791                 stringstream old_float;
792
793                 if (tmptok == "footnote") {
794                         inset = new InsetFoot(params);
795                         old_float << "collapsed true\n";
796                 } else if (tmptok == "margin") {
797                         inset = new InsetMarginal(params);
798                         old_float << "collapsed true\n";
799                 } else if (tmptok == "fig") {
800                         inset = new InsetFloat(params, "figure");
801                         old_float << "placement htbp\n"
802                                   << "wide false\n"
803                                   << "collapsed false\n";
804                 } else if (tmptok == "tab") {
805                         inset = new InsetFloat(params, "table");
806                         old_float << "placement htbp\n"
807                                   << "wide false\n"
808                                   << "collapsed false\n";
809                 } else if (tmptok == "alg") {
810                         inset = new InsetFloat(params, "algorithm");
811                         old_float << "placement htbp\n"
812                                   << "wide false\n"
813                                   << "collapsed false\n";
814                 } else if (tmptok == "wide-fig") {
815                         inset = new InsetFloat(params, "figure");
816                         //InsetFloat * tmp = new InsetFloat("figure");
817                         //tmp->wide(true);
818                         //inset = tmp;
819                         old_float << "placement htbp\n"
820                                   << "wide true\n"
821                                   << "collapsed false\n";
822                 } else if (tmptok == "wide-tab") {
823                         inset = new InsetFloat(params, "table");
824                         //InsetFloat * tmp = new InsetFloat("table");
825                         //tmp->wide(true);
826                         //inset = tmp;
827                         old_float << "placement htbp\n"
828                                   << "wide true\n"
829                                   << "collapsed false\n";
830                 }
831
832                 if (!inset) {
833 #ifndef NO_PEXTRA_REALLY
834                         --call_depth;
835 #endif
836                         return false; // no end read yet
837                 }
838
839                 // Here we need to check for \end_deeper and handle that
840                 // before we do the footnote parsing.
841                 // This _is_ a hack! (Lgb)
842                 while (true) {
843                         lex.next();
844                         string const tmp = lex.getString();
845                         if (tmp == "\\end_deeper") {
846                                 //lyxerr << "\\end_deeper caught!" << endl;
847                                 if (!depth) {
848                                         lex.printError("\\end_deeper: "
849                                                        "depth is already null");
850                                 } else
851                                         --depth;
852
853                         } else {
854                                 old_float << tmp << ' ';
855                                 break;
856                         }
857                 }
858
859                 old_float << lex.getLongString("\\end_float")
860                           << "\n\\end_inset\n";
861                 //lyxerr << "Float Body:\n" << old_float.str() << endl;
862                 // That this does not work seems like a bug
863                 // in stringstream. (Lgb)
864                 istringstream istr(old_float.str());
865                 LyXLex nylex(0, 0);
866                 nylex.setStream(istr);
867                 inset->read(this, nylex);
868                 par->insertInset(pos, inset, font);
869                 ++pos;
870                 insertErtContents(par, pos);
871
872                 // we have to reset the font as in the old format after a float
873                 // the font was automatically reset!
874                 font = LyXFont(LyXFont::ALL_INHERIT, params.language);
875 #endif
876         } else if (token == "\\begin_deeper") {
877                 ++depth;
878         } else if (token == "\\end_deeper") {
879                 if (!depth) {
880                         lex.printError("\\end_deeper: "
881                                        "depth is already null");
882                 }
883                 else
884                         --depth;
885         } else if (token == "\\begin_preamble") {
886                 params.readPreamble(lex);
887         } else if (token == "\\textclass") {
888                 lex.eatLine();
889                 pair<bool, textclass_type> pp =
890                         textclasslist.NumberOfClass(lex.getString());
891                 if (pp.first) {
892                         params.textclass = pp.second;
893                 } else {
894                         Alert::alert(string(_("Textclass error")),
895                                 string(_("The document uses an unknown textclass \"")) +
896                                 lex.getString() + string("\"."),
897                                 string(_("LyX will not be able to produce output correctly.")));
898                         params.textclass = 0;
899                 }
900                 if (!textclasslist[params.textclass].load()) {
901                         // if the textclass wasn't loaded properly
902                         // we need to either substitute another
903                         // or stop loading the file.
904                         // I can substitute but I don't see how I can
905                         // stop loading... ideas??  ARRae980418
906                         Alert::alert(_("Textclass Loading Error!"),
907                                    string(_("Can't load textclass ")) +
908                                    textclasslist[params.textclass].name(),
909                                    _("-- substituting default"));
910                         params.textclass = 0;
911                 }
912         } else if (token == "\\options") {
913                 lex.eatLine();
914                 params.options = lex.getString();
915         } else if (token == "\\language") {
916                 params.readLanguage(lex);
917         } else if (token == "\\fontencoding") {
918                 lex.eatLine();
919         } else if (token == "\\inputencoding") {
920                 lex.eatLine();
921                 params.inputenc = lex.getString();
922         } else if (token == "\\graphics") {
923                 params.readGraphicsDriver(lex);
924         } else if (token == "\\fontscheme") {
925                 lex.eatLine();
926                 params.fonts = lex.getString();
927         } else if (token == "\\noindent") {
928                 par->params().noindent(true);
929         } else if (token == "\\leftindent") {
930                 lex.nextToken();
931                 LyXLength value(lex.getString());
932                 par->params().leftIndent(value);
933         } else if (token == "\\fill_top") {
934                 par->params().spaceTop(VSpace(VSpace::VFILL));
935         } else if (token == "\\fill_bottom") {
936                 par->params().spaceBottom(VSpace(VSpace::VFILL));
937         } else if (token == "\\line_top") {
938                 par->params().lineTop(true);
939         } else if (token == "\\line_bottom") {
940                 par->params().lineBottom(true);
941         } else if (token == "\\pagebreak_top") {
942                 par->params().pagebreakTop(true);
943         } else if (token == "\\pagebreak_bottom") {
944                 par->params().pagebreakBottom(true);
945         } else if (token == "\\start_of_appendix") {
946                 par->params().startOfAppendix(true);
947         } else if (token == "\\paragraph_separation") {
948                 int tmpret = lex.findToken(string_paragraph_separation);
949                 if (tmpret == -1)
950                         ++tmpret;
951                 if (tmpret != LYX_LAYOUT_DEFAULT)
952                         params.paragraph_separation =
953                                 static_cast<BufferParams::PARSEP>(tmpret);
954         } else if (token == "\\defskip") {
955                 lex.nextToken();
956                 params.defskip = VSpace(lex.getString());
957 #ifndef NO_COMPABILITY
958         } else if (token == "\\epsfig") { // obsolete
959                 // Indeed it is obsolete, but we HAVE to be backwards
960                 // compatible until 0.14, because otherwise all figures
961                 // in existing documents are irretrivably lost. (Asger)
962                 params.readGraphicsDriver(lex);
963 #endif
964         } else if (token == "\\quotes_language") {
965                 int tmpret = lex.findToken(string_quotes_language);
966                 if (tmpret == -1)
967                         ++tmpret;
968                 if (tmpret != LYX_LAYOUT_DEFAULT) {
969                         InsetQuotes::quote_language tmpl =
970                                 InsetQuotes::EnglishQ;
971                         switch (tmpret) {
972                         case 0:
973                                 tmpl = InsetQuotes::EnglishQ;
974                                 break;
975                         case 1:
976                                 tmpl = InsetQuotes::SwedishQ;
977                                 break;
978                         case 2:
979                                 tmpl = InsetQuotes::GermanQ;
980                                 break;
981                         case 3:
982                                 tmpl = InsetQuotes::PolishQ;
983                                 break;
984                         case 4:
985                                 tmpl = InsetQuotes::FrenchQ;
986                                 break;
987                         case 5:
988                                 tmpl = InsetQuotes::DanishQ;
989                                 break;
990                         }
991                         params.quotes_language = tmpl;
992                 }
993         } else if (token == "\\quotes_times") {
994                 lex.nextToken();
995                 switch (lex.getInteger()) {
996                 case 1:
997                         params.quotes_times = InsetQuotes::SingleQ;
998                         break;
999                 case 2:
1000                         params.quotes_times = InsetQuotes::DoubleQ;
1001                         break;
1002                 }
1003         } else if (token == "\\papersize") {
1004                 int tmpret = lex.findToken(string_papersize);
1005                 if (tmpret == -1)
1006                         ++tmpret;
1007                 else
1008                         params.papersize2 = tmpret;
1009         } else if (token == "\\paperpackage") {
1010                 int tmpret = lex.findToken(string_paperpackages);
1011                 if (tmpret == -1) {
1012                         ++tmpret;
1013                         params.paperpackage = BufferParams::PACKAGE_NONE;
1014                 } else
1015                         params.paperpackage = tmpret;
1016         } else if (token == "\\use_geometry") {
1017                 lex.nextToken();
1018                 params.use_geometry = lex.getInteger();
1019         } else if (token == "\\use_amsmath") {
1020                 lex.nextToken();
1021                 params.use_amsmath = lex.getInteger();
1022         } else if (token == "\\use_natbib") {
1023                 lex.nextToken();
1024                 params.use_natbib = lex.getInteger();
1025         } else if (token == "\\use_numerical_citations") {
1026                 lex.nextToken();
1027                 params.use_numerical_citations = lex.getInteger();
1028         } else if (token == "\\paperorientation") {
1029                 int tmpret = lex.findToken(string_orientation);
1030                 if (tmpret == -1)
1031                         ++tmpret;
1032                 if (tmpret != LYX_LAYOUT_DEFAULT)
1033                         params.orientation = static_cast<BufferParams::PAPER_ORIENTATION>(tmpret);
1034         } else if (token == "\\paperwidth") {
1035                 lex.next();
1036                 params.paperwidth = lex.getString();
1037         } else if (token == "\\paperheight") {
1038                 lex.next();
1039                 params.paperheight = lex.getString();
1040         } else if (token == "\\leftmargin") {
1041                 lex.next();
1042                 params.leftmargin = lex.getString();
1043         } else if (token == "\\topmargin") {
1044                 lex.next();
1045                 params.topmargin = lex.getString();
1046         } else if (token == "\\rightmargin") {
1047                 lex.next();
1048                 params.rightmargin = lex.getString();
1049         } else if (token == "\\bottommargin") {
1050                 lex.next();
1051                 params.bottommargin = lex.getString();
1052         } else if (token == "\\headheight") {
1053                 lex.next();
1054                 params.headheight = lex.getString();
1055         } else if (token == "\\headsep") {
1056                 lex.next();
1057                 params.headsep = lex.getString();
1058         } else if (token == "\\footskip") {
1059                 lex.next();
1060                 params.footskip = lex.getString();
1061         } else if (token == "\\paperfontsize") {
1062                 lex.nextToken();
1063                 params.fontsize = strip(lex.getString());
1064         } else if (token == "\\papercolumns") {
1065                 lex.nextToken();
1066                 params.columns = lex.getInteger();
1067         } else if (token == "\\papersides") {
1068                 lex.nextToken();
1069                 switch (lex.getInteger()) {
1070                 default:
1071                 case 1: params.sides = LyXTextClass::OneSide; break;
1072                 case 2: params.sides = LyXTextClass::TwoSides; break;
1073                 }
1074         } else if (token == "\\paperpagestyle") {
1075                 lex.nextToken();
1076                 params.pagestyle = strip(lex.getString());
1077         } else if (token == "\\bullet") {
1078                 lex.nextToken();
1079                 int const index = lex.getInteger();
1080                 lex.nextToken();
1081                 int temp_int = lex.getInteger();
1082                 params.user_defined_bullets[index].setFont(temp_int);
1083                 params.temp_bullets[index].setFont(temp_int);
1084                 lex.nextToken();
1085                 temp_int = lex.getInteger();
1086                 params.user_defined_bullets[index].setCharacter(temp_int);
1087                 params.temp_bullets[index].setCharacter(temp_int);
1088                 lex.nextToken();
1089                 temp_int = lex.getInteger();
1090                 params.user_defined_bullets[index].setSize(temp_int);
1091                 params.temp_bullets[index].setSize(temp_int);
1092                 lex.nextToken();
1093                 string const temp_str = lex.getString();
1094                 if (temp_str != "\\end_bullet") {
1095                                 // this element isn't really necessary for
1096                                 // parsing but is easier for humans
1097                                 // to understand bullets. Put it back and
1098                                 // set a debug message?
1099                         lex.printError("\\end_bullet expected, got" + temp_str);
1100                                 //how can I put it back?
1101                 }
1102         } else if (token == "\\bulletLaTeX") {
1103                 // The bullet class should be able to read this.
1104                 lex.nextToken();
1105                 int const index = lex.getInteger();
1106                 lex.next();
1107                 string temp_str = lex.getString();
1108                 string sum_str;
1109                 while (temp_str != "\\end_bullet") {
1110                                 // this loop structure is needed when user
1111                                 // enters an empty string since the first
1112                                 // thing returned will be the \\end_bullet
1113                                 // OR
1114                                 // if the LaTeX entry has spaces. Each element
1115                                 // therefore needs to be read in turn
1116                         sum_str += temp_str;
1117                         lex.next();
1118                         temp_str = lex.getString();
1119                 }
1120
1121                 params.user_defined_bullets[index].setText(sum_str);
1122                 params.temp_bullets[index].setText(sum_str);
1123         } else if (token == "\\secnumdepth") {
1124                 lex.nextToken();
1125                 params.secnumdepth = lex.getInteger();
1126         } else if (token == "\\tocdepth") {
1127                 lex.nextToken();
1128                 params.tocdepth = lex.getInteger();
1129         } else if (token == "\\spacing") {
1130                 lex.next();
1131                 string const tmp = strip(lex.getString());
1132                 Spacing::Space tmp_space = Spacing::Default;
1133                 float tmp_val = 0.0;
1134                 if (tmp == "single") {
1135                         tmp_space = Spacing::Single;
1136                 } else if (tmp == "onehalf") {
1137                         tmp_space = Spacing::Onehalf;
1138                 } else if (tmp == "double") {
1139                         tmp_space = Spacing::Double;
1140                 } else if (tmp == "other") {
1141                         lex.next();
1142                         tmp_space = Spacing::Other;
1143                         tmp_val = lex.getFloat();
1144                 } else {
1145                         lex.printError("Unknown spacing token: '$$Token'");
1146                 }
1147                 // Small hack so that files written with klyx will be
1148                 // parsed correctly.
1149                 if (first_par) {
1150                         par->params().spacing(Spacing(tmp_space, tmp_val));
1151                 } else {
1152                         params.spacing.set(tmp_space, tmp_val);
1153                 }
1154         } else if (token == "\\paragraph_spacing") {
1155                 lex.next();
1156                 string const tmp = strip(lex.getString());
1157                 if (tmp == "single") {
1158                         par->params().spacing(Spacing(Spacing::Single));
1159                 } else if (tmp == "onehalf") {
1160                         par->params().spacing(Spacing(Spacing::Onehalf));
1161                 } else if (tmp == "double") {
1162                         par->params().spacing(Spacing(Spacing::Double));
1163                 } else if (tmp == "other") {
1164                         lex.next();
1165                         par->params().spacing(Spacing(Spacing::Other,
1166                                          lex.getFloat()));
1167                 } else {
1168                         lex.printError("Unknown spacing token: '$$Token'");
1169                 }
1170         } else if (token == "\\float_placement") {
1171                 lex.nextToken();
1172                 params.float_placement = lex.getString();
1173         } else if (token == "\\align") {
1174                 int tmpret = lex.findToken(string_align);
1175                 if (tmpret == -1) ++tmpret;
1176                 if (tmpret != LYX_LAYOUT_DEFAULT) { // tmpret != 99 ???
1177                         int const tmpret2 = int(pow(2.0, tmpret));
1178                         //lyxerr << "Tmpret2 = " << tmpret2 << endl;
1179                         par->params().align(LyXAlignment(tmpret2));
1180                 }
1181         } else if (token == "\\added_space_top") {
1182                 lex.nextToken();
1183                 VSpace value = VSpace(lex.getString());
1184                 // only add the length when value > 0 or
1185                 // with option keep
1186                 if ((value.length().len().value() != 0) ||
1187                     value.keep() ||
1188                     (value.kind() != VSpace::LENGTH))
1189                         par->params().spaceTop(value);
1190         } else if (token == "\\added_space_bottom") {
1191                 lex.nextToken();
1192                 VSpace value = VSpace(lex.getString());
1193                 // only add the length when value > 0 or
1194                 // with option keep
1195                 if ((value.length().len().value() != 0) ||
1196                    value.keep() ||
1197                     (value.kind() != VSpace::LENGTH))
1198                         par->params().spaceBottom(value);
1199 #ifndef NO_COMPABILITY
1200 #ifndef NO_PEXTRA_REALLY
1201         } else if (token == "\\pextra_type") {
1202                 lex.nextToken();
1203                 par->params().pextraType(lex.getInteger());
1204         } else if (token == "\\pextra_width") {
1205                 lex.nextToken();
1206                 par->params().pextraWidth(lex.getString());
1207         } else if (token == "\\pextra_widthp") {
1208                 lex.nextToken();
1209                 par->params().pextraWidthp(lex.getString());
1210         } else if (token == "\\pextra_alignment") {
1211                 lex.nextToken();
1212                 par->params().pextraAlignment(lex.getInteger());
1213         } else if (token == "\\pextra_hfill") {
1214                 lex.nextToken();
1215                 par->params().pextraHfill(lex.getInteger());
1216         } else if (token == "\\pextra_start_minipage") {
1217                 lex.nextToken();
1218                 par->params().pextraStartMinipage(lex.getInteger());
1219 #endif
1220 #endif
1221         } else if (token == "\\labelwidthstring") {
1222                 lex.eatLine();
1223                 par->params().labelWidthString(lex.getString());
1224                 // do not delete this token, it is still needed!
1225         } else if (token == "\\newline") {
1226 #ifndef NO_COMPABILITY
1227                 if (!ert_comp.in_tabular && ert_comp.active) {
1228                         ert_comp.contents += char(Paragraph::META_NEWLINE);
1229                 } else {
1230                         // Since we cannot know it this is only a regular
1231                         // newline or a tabular cell delimter we have to
1232                         // handle the ERT here.
1233                         insertErtContents(par, pos, false);
1234
1235                         par->insertChar(pos, Paragraph::META_NEWLINE, font);
1236                         ++pos;
1237                 }
1238 #else
1239                 par->insertChar(pos, Paragraph::META_NEWLINE, font);
1240                 ++pos;
1241 #endif
1242         } else if (token == "\\LyXTable") {
1243 #ifndef NO_COMPABILITY
1244                 ert_comp.in_tabular = true;
1245 #endif
1246                 Inset * inset = new InsetTabular(*this);
1247                 inset->read(this, lex);
1248                 par->insertInset(pos, inset, font);
1249                 ++pos;
1250         } else if (token == "\\hfill") {
1251                 par->insertChar(pos, Paragraph::META_HFILL, font);
1252                 ++pos;
1253         } else if (token == "\\protected_separator") { // obsolete
1254                 // This is a backward compability thingie. (Lgb)
1255                 // Remove it later some time...introduced with fileformat
1256                 // 2.16. (Lgb)
1257                 LyXLayout_ptr const & layout = par->layout();
1258
1259                 if (layout->free_spacing || par->isFreeSpacing()) {
1260                         par->insertChar(pos, ' ', font);
1261                 } else {
1262                         Inset * inset = new InsetSpecialChar(InsetSpecialChar::PROTECTED_SEPARATOR);
1263                         par->insertInset(pos, inset, font);
1264                 }
1265                 ++pos;
1266         } else if (token == "\\bibitem") {  // ale970302
1267                 if (!par->bibkey) {
1268                         InsetCommandParams p("bibitem", "dummy");
1269                         par->bibkey = new InsetBibKey(p);
1270                 }
1271                 par->bibkey->read(this, lex);
1272         } else if (token == "\\the_end") {
1273 #ifndef NO_COMPABILITY
1274                 // If we still have some ert active here we have to insert
1275                 // it so we don't loose it. (Lgb)
1276                 insertErtContents(par, pos);
1277 #endif
1278                 the_end_read = true;
1279 #ifndef NO_COMPABILITY
1280 #ifndef NO_PEXTRA_REALLY
1281                 if (minipar == par)
1282                         par = 0;
1283                 minipar = parBeforeMinipage = 0;
1284 #endif
1285 #endif
1286         } else {
1287 #ifndef NO_COMPABILITY
1288                 if (ert_comp.active) {
1289                         ert_comp.contents += token;
1290                 } else {
1291 #endif
1292                 // This should be insurance for the future: (Asger)
1293                 ++unknown_tokens;
1294                 lex.eatLine();
1295                 string const s = _("Unknown token: ") + token
1296                         + " " + lex.text()  + "\n";
1297                 // we can do this here this way because we're actually reading
1298                 // the buffer and don't care about LyXText right now.
1299                 InsetError * new_inset = new InsetError(s);
1300                 par->insertInset(pos, new_inset, LyXFont(LyXFont::ALL_INHERIT,
1301                                  params.language));
1302
1303 #ifndef NO_COMPABILITY
1304                 }
1305 #endif
1306         }
1307
1308 #ifndef NO_COMPABILITY
1309 #ifndef NO_PEXTRA_REALLY
1310         // I wonder if we could use this blanket fix for all the
1311         // checkminipage cases...
1312         // don't forget about ert paragraphs and compatibility read for'em
1313         if (par && (par->size() || !ert_comp.contents.empty())) {
1314                 // It is possible that this will check to often,
1315                 // but that should not be an correctness issue.
1316                 // Only a speed issue.
1317                 checkminipage = true;
1318         }
1319
1320         // now check if we have a minipage paragraph as at this
1321         // point we already read all the necessary data!
1322         // this cannot be done in layout because there we did
1323         // not read yet the paragraph PEXTRA-params (Jug)
1324         //
1325         // BEGIN pextra_minipage compability
1326         // This should be removed in 1.3.x (Lgb)
1327         // I don't think we should remove this so fast (Jug)
1328
1329         // This compability code is not perfect. In a couple
1330         // of rand cases it fails. When the minipage par is
1331         // the first par in the document, and when there are
1332         // none or only one regular paragraphs after the
1333         // minipage. Currently I am not investing any effort
1334         // in fixing those cases.
1335
1336 //      lyxerr << "Call depth: " << call_depth << endl;
1337 //      lyxerr << "Checkminipage: " << checkminipage << endl;
1338
1339         if (checkminipage && (call_depth == 1)) {
1340                 checkminipage = false;
1341                 if (minipar && (minipar != par) &&
1342                     (par->params().pextraType() == Paragraph::PEXTRA_MINIPAGE)) {
1343                         lyxerr << "minipages in a row" << endl;
1344                         if (par->params().pextraStartMinipage()) {
1345                                 lyxerr << "start new minipage" << endl;
1346                                 // minipages in a row
1347                                 par->previous()->next(0);
1348                                 par->previous(0);
1349
1350                                 Paragraph * tmp = minipar;
1351                                 while (tmp) {
1352                                         tmp->params().pextraType(0);
1353                                         tmp->params().pextraWidth(string());
1354                                         tmp->params().pextraWidthp(string());
1355                                         tmp->params().pextraAlignment(0);
1356                                         tmp->params().pextraHfill(false);
1357                                         tmp->params().pextraStartMinipage(false);
1358                                         tmp = tmp->next();
1359                                 }
1360                                 // create a new paragraph to insert the
1361                                 // minipages in the following case
1362                                 if (par->params().pextraStartMinipage() &&
1363                                     !par->params().pextraHfill()) {
1364                                         Paragraph * p = new Paragraph;
1365                                         p->layout(textclasslist[params.textclass].defaultLayoutName());
1366
1367                                         p->previous(parBeforeMinipage);
1368                                         parBeforeMinipage->next(p);
1369                                         p->next(0);
1370                                         p->params().depth(parBeforeMinipage->params().depth());
1371                                         parBeforeMinipage = p;
1372                                 }
1373                                 InsetMinipage * mini = new InsetMinipage(params);
1374                                 mini->pos(static_cast<InsetMinipage::Position>(par->params().pextraAlignment()));
1375                                 mini->pageWidth(LyXLength(par->params().pextraWidth()));
1376                                 if (!par->params().pextraWidthp().empty()) {
1377                                         lyxerr << "WP:" << mini->pageWidth().asString() << endl;
1378                                         mini->pageWidth(LyXLength((par->params().pextraWidthp())+"col%"));
1379                                 }
1380                                 Paragraph * op = mini->firstParagraph();
1381                                 mini->inset.paragraph(par);
1382                                 //
1383                                 // and free the old ones!
1384                                 //
1385                                 while(op) {
1386                                         Paragraph * pp = op->next();
1387                                         delete op;
1388                                         op = pp;
1389                                 }
1390                                 // Insert the minipage last in the
1391                                 // previous paragraph.
1392                                 if (par->params().pextraHfill()) {
1393                                         parBeforeMinipage->insertChar
1394                                                 (parBeforeMinipage->size(),
1395                                                  Paragraph::META_HFILL, font);
1396                                 }
1397                                 parBeforeMinipage->insertInset
1398                                         (parBeforeMinipage->size(), mini, font);
1399
1400                                 minipar = par;
1401                         } else {
1402                                 lyxerr << "new minipage par" << endl;
1403                                 //nothing to do just continue reading
1404                         }
1405
1406                 } else if (minipar && (minipar != par)) {
1407                         lyxerr << "last minipage par read" << endl;
1408                         // The last paragraph read was not part of a
1409                         // minipage but the par linked list is...
1410                         // So we need to remove the last par from the
1411                         // rest
1412                         if (par->previous())
1413                                 par->previous()->next(0);
1414                         par->previous(parBeforeMinipage);
1415                         parBeforeMinipage->next(par);
1416                         Paragraph * tmp = minipar;
1417                         while (tmp) {
1418                                 tmp->params().pextraType(0);
1419                                 tmp->params().pextraWidth(string());
1420                                 tmp->params().pextraWidthp(string());
1421                                 tmp->params().pextraAlignment(0);
1422                                 tmp->params().pextraHfill(false);
1423                                 tmp->params().pextraStartMinipage(false);
1424                                 tmp = tmp->next();
1425                         }
1426                         depth = parBeforeMinipage->params().depth();
1427                         // and set this depth on the par as it has not been set already
1428                         par->params().depth(depth);
1429                         minipar = parBeforeMinipage = 0;
1430                 } else if (!minipar &&
1431                            (par->params().pextraType() == Paragraph::PEXTRA_MINIPAGE)) {
1432                         // par is the first paragraph in a minipage
1433                         lyxerr << "begin minipage" << endl;
1434                         // To minimize problems for
1435                         // the users we will insert
1436                         // the first minipage in
1437                         // a sequence of minipages
1438                         // in its own paragraph.
1439                         Paragraph * p = new Paragraph;
1440                         p->layout(textclasslist[params.textclass].defaultLayoutName());
1441                         p->previous(par->previous());
1442                         p->next(0);
1443                         p->params().depth(depth);
1444                         par->params().depth(0);
1445                         depth = 0;
1446                         if (par->previous())
1447                                 par->previous()->next(p);
1448                         par->previous(0);
1449                         parBeforeMinipage = p;
1450                         minipar = par;
1451                         if (!first_par || (first_par == par))
1452                                 first_par = p;
1453
1454                         InsetMinipage * mini = new InsetMinipage(params);
1455                         mini->pos(static_cast<InsetMinipage::Position>(minipar->params().pextraAlignment()));
1456                         mini->pageWidth(LyXLength(minipar->params().pextraWidth()));
1457                         if (!par->params().pextraWidthp().empty()) {
1458                                 lyxerr << "WP:" << mini->pageWidth().asString() << endl;
1459                                 mini->pageWidth(LyXLength((par->params().pextraWidthp())+"col%"));
1460                         }
1461
1462                         Paragraph * op = mini->firstParagraph();
1463                         mini->inset.paragraph(minipar);
1464                         //
1465                         // and free the old ones!
1466                         //
1467                         while(op) {
1468                                 Paragraph * pp = op->next();
1469                                 delete op;
1470                                 op = pp;
1471                         }
1472
1473                         // Insert the minipage last in the
1474                         // previous paragraph.
1475                         if (minipar->params().pextraHfill()) {
1476                                 parBeforeMinipage->insertChar
1477                                         (parBeforeMinipage->size(),
1478                                          Paragraph::META_HFILL, font);
1479                         }
1480                         parBeforeMinipage->insertInset
1481                                 (parBeforeMinipage->size(), mini, font);
1482                 } else if (par->params().pextraType() == Paragraph::PEXTRA_INDENT) {
1483                         par->params().leftIndent(LyXLength(par->params().pextraWidth()));
1484                         if (!par->params().pextraWidthp().empty()) {
1485                                 par->params().leftIndent(LyXLength((par->params().pextraWidthp())+"col%"));
1486                         }
1487                 }
1488         }
1489         // End of pextra_minipage compability
1490         --call_depth;
1491 #endif
1492 #endif
1493         return the_end_read;
1494 }
1495
1496 // needed to insert the selection
1497 void Buffer::insertStringAsLines(Paragraph *& par, pos_type & pos,
1498                                  LyXFont const & fn,string const & str) const
1499 {
1500         LyXLayout_ptr const & layout = par->layout();
1501
1502         LyXFont font = fn;
1503
1504         par->checkInsertChar(font);
1505         // insert the string, don't insert doublespace
1506         bool space_inserted = true;
1507         bool autobreakrows = !par->inInset() ||
1508                 static_cast<InsetText *>(par->inInset())->getAutoBreakRows();
1509         for(string::const_iterator cit = str.begin();
1510             cit != str.end(); ++cit) {
1511                 if (*cit == '\n') {
1512                         if (autobreakrows && (par->size() || layout->keepempty)) {
1513                                 par->breakParagraph(params, pos,
1514                                                     layout->isEnvironment());
1515                                 par = par->next();
1516                                 pos = 0;
1517                                 space_inserted = true;
1518                         } else {
1519                                 continue;
1520                         }
1521                         // do not insert consecutive spaces if !free_spacing
1522                 } else if ((*cit == ' ' || *cit == '\t') &&
1523                            space_inserted && !layout->free_spacing &&
1524                                    !par->isFreeSpacing())
1525                 {
1526                         continue;
1527                 } else if (*cit == '\t') {
1528                         if (!layout->free_spacing && !par->isFreeSpacing()) {
1529                                 // tabs are like spaces here
1530                                 par->insertChar(pos, ' ', font);
1531                                 ++pos;
1532                                 space_inserted = true;
1533                         } else {
1534                                 const pos_type nb = 8 - pos % 8;
1535                                 for (pos_type a = 0; a < nb ; ++a) {
1536                                         par->insertChar(pos, ' ', font);
1537                                         ++pos;
1538                                 }
1539                                 space_inserted = true;
1540                         }
1541                 } else if (!IsPrintable(*cit)) {
1542                         // Ignore unprintables
1543                         continue;
1544                 } else {
1545                         // just insert the character
1546                         par->insertChar(pos, *cit, font);
1547                         ++pos;
1548                         space_inserted = (*cit == ' ');
1549                 }
1550
1551         }
1552 }
1553
1554
1555 void Buffer::readInset(LyXLex & lex, Paragraph *& par,
1556                        int & pos, LyXFont & font)
1557 {
1558         // consistency check
1559         if (lex.getString() != "\\begin_inset") {
1560                 lyxerr << "Buffer::readInset: Consistency check failed."
1561                        << endl;
1562         }
1563
1564         Inset * inset = 0;
1565
1566         lex.next();
1567         string const tmptok = lex.getString();
1568         last_inset_read = tmptok;
1569
1570         // test the different insets
1571         if (tmptok == "LatexCommand") {
1572                 InsetCommandParams inscmd;
1573                 inscmd.read(lex);
1574
1575                 string const cmdName = inscmd.getCmdName();
1576
1577                 // This strange command allows LyX to recognize "natbib" style
1578                 // citations: citet, citep, Citet etc.
1579                 if (compare_no_case(cmdName, "cite", 4) == 0) {
1580                         inset = new InsetCitation(inscmd);
1581                 } else if (cmdName == "bibitem") {
1582                         lex.printError("Wrong place for bibitem");
1583                         inset = new InsetBibKey(inscmd);
1584                 } else if (cmdName == "BibTeX") {
1585                         inset = new InsetBibtex(inscmd);
1586                 } else if (cmdName == "index") {
1587                         inset = new InsetIndex(inscmd);
1588                 } else if (cmdName == "include") {
1589                         inset = new InsetInclude(inscmd, *this);
1590                 } else if (cmdName == "label") {
1591                         inset = new InsetLabel(inscmd);
1592                 } else if (cmdName == "url"
1593                            || cmdName == "htmlurl") {
1594                         inset = new InsetUrl(inscmd);
1595                 } else if (cmdName == "ref"
1596                            || cmdName == "pageref"
1597                            || cmdName == "vref"
1598                            || cmdName == "vpageref"
1599                            || cmdName == "prettyref") {
1600                         if (!inscmd.getOptions().empty()
1601                             || !inscmd.getContents().empty()) {
1602                                 inset = new InsetRef(inscmd, *this);
1603                         }
1604                 } else if (cmdName == "tableofcontents") {
1605                         inset = new InsetTOC(inscmd);
1606                 } else if (cmdName == "listofalgorithms") {
1607                         inset = new InsetFloatList("algorithm");
1608                 } else if (cmdName == "listoffigures") {
1609                         inset = new InsetFloatList("figure");
1610                 } else if (cmdName == "listoftables") {
1611                         inset = new InsetFloatList("table");
1612                 } else if (cmdName == "printindex") {
1613                         inset = new InsetPrintIndex(inscmd);
1614                 } else if (cmdName == "lyxparent") {
1615                         inset = new InsetParent(inscmd, *this);
1616                 }
1617         } else {
1618                 bool alreadyread = false;
1619                 if (tmptok == "Quotes") {
1620                         inset = new InsetQuotes;
1621                 } else if (tmptok == "External") {
1622                         inset = new InsetExternal;
1623                 } else if (tmptok == "FormulaMacro") {
1624                         inset = new InsetFormulaMacro;
1625                 } else if (tmptok == "Formula") {
1626                         inset = new InsetFormula;
1627                 } else if (tmptok == "Figure") { // Backward compatibility
1628 //                      inset = new InsetFig(100, 100, *this);
1629                         inset = new InsetGraphics;
1630                 } else if (tmptok == "Graphics") {
1631                         inset = new InsetGraphics;
1632                 } else if (tmptok == "Info") {// backwards compatibility
1633                         inset = new InsetNote(this,
1634                                               lex.getLongString("\\end_inset"),
1635                                               true);
1636                         alreadyread = true;
1637                 } else if (tmptok == "Note") {
1638                         inset = new InsetNote(params);
1639                 } else if (tmptok == "Include") {
1640                         InsetCommandParams p("Include");
1641                         inset = new InsetInclude(p, *this);
1642                 } else if (tmptok == "ERT") {
1643                         inset = new InsetERT(params);
1644                 } else if (tmptok == "Tabular") {
1645                         inset = new InsetTabular(*this);
1646                 } else if (tmptok == "Text") {
1647                         inset = new InsetText(params);
1648                 } else if (tmptok == "Foot") {
1649                         inset = new InsetFoot(params);
1650                 } else if (tmptok == "Marginal") {
1651                         inset = new InsetMarginal(params);
1652                 } else if (tmptok == "Minipage") {
1653                         inset = new InsetMinipage(params);
1654                 } else if (tmptok == "Float") {
1655                         lex.next();
1656                         string tmptok = lex.getString();
1657                         inset = new InsetFloat(params, tmptok);
1658 #if 0
1659                 } else if (tmptok == "List") {
1660                         inset = new InsetList;
1661                 } else if (tmptok == "Theorem") {
1662                         inset = new InsetList;
1663 #endif
1664                 } else if (tmptok == "Caption") {
1665                         inset = new InsetCaption(params);
1666                 } else if (tmptok == "FloatList") {
1667                         inset = new InsetFloatList;
1668                 }
1669
1670                 if (inset && !alreadyread) inset->read(this, lex);
1671         }
1672
1673         if (inset) {
1674                 par->insertInset(pos, inset, font);
1675                 ++pos;
1676         }
1677 }
1678
1679
1680 bool Buffer::readFile(LyXLex & lex, Paragraph * par)
1681 {
1682         if (lex.isOK()) {
1683                 lex.next();
1684                 string const token(lex.getString());
1685                 if (token == "\\lyxformat") { // the first token _must_ be...
1686                         lex.eatLine();
1687                         string tmp_format = lex.getString();
1688                         //lyxerr << "LyX Format: `" << tmp_format << "'" << endl;
1689                         // if present remove ".," from string.
1690                         string::size_type dot = tmp_format.find_first_of(".,");
1691                         //lyxerr << "           dot found at " << dot << endl;
1692                         if (dot != string::npos)
1693                                 tmp_format.erase(dot, 1);
1694                         file_format = strToInt(tmp_format);
1695                         if (file_format == LYX_FORMAT) {
1696                                 // current format
1697                         } else if (file_format > LYX_FORMAT) {
1698                                 // future format
1699                                 Alert::alert(_("Warning!"),
1700                                            _("LyX file format is newer that what"),
1701                                            _("is supported in this LyX version. Expect some problems."));
1702
1703                         } else if (file_format < LYX_FORMAT) {
1704                                 // old formats
1705                                 if (file_format < 200) {
1706                                         Alert::alert(_("ERROR!"),
1707                                                    _("Old LyX file format found. "
1708                                                      "Use LyX 0.10.x to read this!"));
1709                                         return false;
1710                                 } else if (file_format < 220) {
1711                                         Alert::alert(_("ERROR!"),
1712                                                      _("Old LyX file format found. "
1713                                                        "Use LyX 1.2.x to read this!"));
1714                                         return false;
1715                                 }
1716                         }
1717                         bool the_end = readLyXformat2(lex, par);
1718                         params.setPaperStuff();
1719
1720 #if 0
1721                         // the_end was added in 213
1722                         if (file_format < 213)
1723                                 the_end = true;
1724 #endif
1725
1726                         if (!the_end) {
1727                                 Alert::alert(_("Warning!"),
1728                                            _("Reading of document is not complete"),
1729                                            _("Maybe the document is truncated"));
1730                         }
1731                         return true;
1732                 } else { // "\\lyxformat" not found
1733                         Alert::alert(_("ERROR!"), _("Not a LyX file!"));
1734                 }
1735         } else
1736                 Alert::alert(_("ERROR!"), _("Unable to read file!"));
1737         return false;
1738 }
1739
1740
1741 // Should probably be moved to somewhere else: BufferView? LyXView?
1742 bool Buffer::save() const
1743 {
1744         // We don't need autosaves in the immediate future. (Asger)
1745         resetAutosaveTimers();
1746
1747         // make a backup
1748         string s;
1749         if (lyxrc.make_backup) {
1750                 s = fileName() + '~';
1751                 if (!lyxrc.backupdir_path.empty())
1752                         s = AddName(lyxrc.backupdir_path,
1753                                     subst(os::slashify_path(s),'/','!'));
1754
1755                 // Rename is the wrong way of making a backup,
1756                 // this is the correct way.
1757                 /* truss cp fil fil2:
1758                    lstat("LyXVC3.lyx", 0xEFFFF898)                 Err#2 ENOENT
1759                    stat("LyXVC.lyx", 0xEFFFF688)                   = 0
1760                    open("LyXVC.lyx", O_RDONLY)                     = 3
1761                    open("LyXVC3.lyx", O_WRONLY|O_CREAT|O_TRUNC, 0600) = 4
1762                    fstat(4, 0xEFFFF508)                            = 0
1763                    fstat(3, 0xEFFFF508)                            = 0
1764                    read(3, " # T h i s   f i l e   w".., 8192)     = 5579
1765                    write(4, " # T h i s   f i l e   w".., 5579)    = 5579
1766                    read(3, 0xEFFFD4A0, 8192)                       = 0
1767                    close(4)                                        = 0
1768                    close(3)                                        = 0
1769                    chmod("LyXVC3.lyx", 0100644)                    = 0
1770                    lseek(0, 0, SEEK_CUR)                           = 46440
1771                    _exit(0)
1772                 */
1773
1774                 // Should probably have some more error checking here.
1775                 // Doing it this way, also makes the inodes stay the same.
1776                 // This is still not a very good solution, in particular we
1777                 // might loose the owner of the backup.
1778                 FileInfo finfo(fileName());
1779                 if (finfo.exist()) {
1780                         mode_t fmode = finfo.getMode();
1781                         struct utimbuf times = {
1782                                 finfo.getAccessTime(),
1783                                 finfo.getModificationTime() };
1784
1785                         ifstream ifs(fileName().c_str());
1786                         ofstream ofs(s.c_str(), ios::out|ios::trunc);
1787                         if (ifs && ofs) {
1788                                 ofs << ifs.rdbuf();
1789                                 ifs.close();
1790                                 ofs.close();
1791                                 ::chmod(s.c_str(), fmode);
1792
1793                                 if (::utime(s.c_str(), &times)) {
1794                                         lyxerr << "utime error." << endl;
1795                                 }
1796                         } else {
1797                                 lyxerr << "LyX was not able to make "
1798                                         "backup copy. Beware." << endl;
1799                         }
1800                 }
1801         }
1802
1803         if (writeFile(fileName(), false)) {
1804                 markLyxClean();
1805                 removeAutosaveFile(fileName());
1806         } else {
1807                 // Saving failed, so backup is not backup
1808                 if (lyxrc.make_backup) {
1809                         lyx::rename(s, fileName());
1810                 }
1811                 return false;
1812         }
1813         return true;
1814 }
1815
1816
1817 // Returns false if unsuccesful
1818 bool Buffer::writeFile(string const & fname, bool flag) const
1819 {
1820         // if flag is false writeFile will not create any GUI
1821         // warnings, only cerr.
1822         // Needed for autosave in background or panic save (Matthias 120496)
1823
1824         if (read_only && (fname == fileName())) {
1825                 // Here we should come with a question if we should
1826                 // perform the write anyway.
1827                 if (flag)
1828                         lyxerr << _("Error! Document is read-only: ")
1829                                << fname << endl;
1830                 else
1831                         Alert::alert(_("Error! Document is read-only: "),
1832                                    fname);
1833                 return false;
1834         }
1835
1836         FileInfo finfo(fname);
1837         if (finfo.exist() && !finfo.writable()) {
1838                 // Here we should come with a question if we should
1839                 // try to do the save anyway. (i.e. do a chmod first)
1840                 if (flag)
1841                         lyxerr << _("Error! Cannot write file: ")
1842                                << fname << endl;
1843                 else
1844                         Alert::err_alert(_("Error! Cannot write file: "),
1845                                      fname);
1846                 return false;
1847         }
1848
1849         ofstream ofs(fname.c_str());
1850         if (!ofs) {
1851                 if (flag)
1852                         lyxerr << _("Error! Cannot open file: ")
1853                                << fname << endl;
1854                 else
1855                         Alert::err_alert(_("Error! Cannot open file: "),
1856                                      fname);
1857                 return false;
1858         }
1859
1860 #ifdef HAVE_LOCALE
1861         // Use the standard "C" locale for file output.
1862         ofs.imbue(std::locale::classic());
1863 #endif
1864
1865         // The top of the file should not be written by params.
1866
1867         // write out a comment in the top of the file
1868         ofs << '#' << lyx_docversion
1869             << " created this file. For more info see http://www.lyx.org/\n"
1870             << "\\lyxformat " << LYX_FORMAT << "\n";
1871
1872         // now write out the buffer paramters.
1873         params.writeFile(ofs);
1874
1875         Paragraph::depth_type depth = 0;
1876
1877         // this will write out all the paragraphs
1878         // using recursive descent.
1879         paragraph->writeFile(this, ofs, params, depth);
1880
1881         // Write marker that shows file is complete
1882         ofs << "\n\\the_end" << endl;
1883
1884         ofs.close();
1885
1886         // how to check if close went ok?
1887         // Following is an attempt... (BE 20001011)
1888
1889         // good() returns false if any error occured, including some
1890         //        formatting error.
1891         // bad()  returns true if something bad happened in the buffer,
1892         //        which should include file system full errors.
1893
1894         bool status = true;
1895         if (!ofs.good()) {
1896                 status = false;
1897 #if 0
1898                 if (ofs.bad()) {
1899                         lyxerr << "Buffer::writeFile: BAD ERROR!" << endl;
1900                 } else {
1901                         lyxerr << "Buffer::writeFile: NOT SO BAD ERROR!"
1902                                << endl;
1903                 }
1904 #endif
1905         }
1906
1907         return status;
1908 }
1909
1910
1911 namespace {
1912
1913 pair<int, string> const addDepth(int depth, int ldepth)
1914 {
1915         int d = depth * 2;
1916         if (ldepth > depth)
1917                 d += (ldepth - depth) * 2;
1918         return make_pair(d, string(d, ' '));
1919 }
1920
1921 }
1922
1923
1924 string const Buffer::asciiParagraph(Paragraph const * par,
1925                                     unsigned int linelen,
1926                                     bool noparbreak) const
1927 {
1928         ostringstream buffer;
1929         Paragraph::depth_type depth = 0;
1930         int ltype = 0;
1931         Paragraph::depth_type ltype_depth = 0;
1932         bool ref_printed = false;
1933 //      if (!par->previous()) {
1934 #if 0
1935         // begins or ends a deeper area ?
1936         if (depth != par->params().depth()) {
1937                 if (par->params().depth() > depth) {
1938                         while (par->params().depth() > depth) {
1939                                 ++depth;
1940                         }
1941                 } else {
1942                         while (par->params().depth() < depth) {
1943                                 --depth;
1944                         }
1945                 }
1946         }
1947 #else
1948         depth = par->params().depth();
1949 #endif
1950
1951         // First write the layout
1952         string const & tmp = par->layout()->name();
1953         if (compare_no_case(tmp, "itemize") == 0) {
1954                 ltype = 1;
1955                 ltype_depth = depth + 1;
1956         } else if (compare_no_case(tmp, "enumerate") == 0) {
1957                 ltype = 2;
1958                 ltype_depth = depth + 1;
1959         } else if (contains(lowercase(tmp), "ection")) {
1960                 ltype = 3;
1961                 ltype_depth = depth + 1;
1962         } else if (contains(lowercase(tmp), "aragraph")) {
1963                 ltype = 4;
1964                 ltype_depth = depth + 1;
1965         } else if (compare_no_case(tmp, "description") == 0) {
1966                 ltype = 5;
1967                 ltype_depth = depth + 1;
1968         } else if (compare_no_case(tmp, "abstract") == 0) {
1969                 ltype = 6;
1970                 ltype_depth = 0;
1971         } else if (compare_no_case(tmp, "bibliography") == 0) {
1972                 ltype = 7;
1973                 ltype_depth = 0;
1974         } else {
1975                 ltype = 0;
1976                 ltype_depth = 0;
1977         }
1978
1979         /* maybe some vertical spaces */
1980
1981         /* the labelwidthstring used in lists */
1982
1983         /* some lines? */
1984
1985         /* some pagebreaks? */
1986
1987         /* noindent ? */
1988
1989         /* what about the alignment */
1990 //      } else {
1991 //              lyxerr << "Should this ever happen?" << endl;
1992 //      }
1993
1994         // linelen <= 0 is special and means we don't have pargraph breaks
1995
1996         string::size_type currlinelen = 0;
1997
1998         if (!noparbreak) {
1999                 if (linelen > 0)
2000                         buffer << "\n\n";
2001
2002                 buffer << string(depth * 2, ' ');
2003                 currlinelen += depth * 2;
2004
2005                 //--
2006                 // we should probably change to the paragraph language in the
2007                 // gettext here (if possible) so that strings are outputted in
2008                 // the correct language! (20012712 Jug)
2009                 //--
2010                 switch (ltype) {
2011                 case 0: // Standard
2012                 case 4: // (Sub)Paragraph
2013                 case 5: // Description
2014                         break;
2015                 case 6: // Abstract
2016                         if (linelen > 0) {
2017                                 buffer << _("Abstract") << "\n\n";
2018                                 currlinelen = 0;
2019                         } else {
2020                                 string const abst = _("Abstract: ");
2021                                 buffer << abst;
2022                                 currlinelen += abst.length();
2023                         }
2024                         break;
2025                 case 7: // Bibliography
2026                         if (!ref_printed) {
2027                                 if (linelen > 0) {
2028                                         buffer << _("References") << "\n\n";
2029                                         currlinelen = 0;
2030                                 } else {
2031                                         string const refs = _("References: ");
2032                                         buffer << refs;
2033                                         currlinelen += refs.length();
2034                                 }
2035
2036                                 ref_printed = true;
2037                         }
2038                         break;
2039                 default:
2040                 {
2041                         string const parlab = par->params().labelString();
2042                         buffer << parlab << " ";
2043                         currlinelen += parlab.length() + 1;
2044                 }
2045                 break;
2046
2047                 }
2048         }
2049
2050         if (!currlinelen) {
2051                 pair<int, string> p = addDepth(depth, ltype_depth);
2052                 buffer << p.second;
2053                 currlinelen += p.first;
2054         }
2055
2056         // this is to change the linebreak to do it by word a bit more
2057         // intelligent hopefully! (only in the case where we have a
2058         // max linelenght!) (Jug)
2059
2060         string word;
2061
2062         for (pos_type i = 0; i < par->size(); ++i) {
2063                 char c = par->getUChar(params, i);
2064                 switch (c) {
2065                 case Paragraph::META_INSET:
2066                 {
2067                         Inset const * inset = par->getInset(i);
2068                         if (inset) {
2069                                 if (linelen > 0) {
2070                                         buffer << word;
2071                                         currlinelen += word.length();
2072                                         word.erase();
2073                                 }
2074                                 if (inset->ascii(this, buffer, linelen)) {
2075                                         // to be sure it breaks paragraph
2076                                         currlinelen += linelen;
2077                                 }
2078                         }
2079                 }
2080                 break;
2081
2082                 case Paragraph::META_NEWLINE:
2083                         if (linelen > 0) {
2084                                 buffer << word << "\n";
2085                                 word.erase();
2086
2087                                 pair<int, string> p = addDepth(depth,
2088                                                                ltype_depth);
2089                                 buffer << p.second;
2090                                 currlinelen = p.first;
2091                         }
2092                         break;
2093
2094                 case Paragraph::META_HFILL:
2095                         buffer << word << "\t";
2096                         currlinelen += word.length() + 1;
2097                         word.erase();
2098                         break;
2099
2100                 default:
2101                         if (c == ' ') {
2102                                 if (linelen > 0 &&
2103                                     currlinelen + word.length() > linelen - 10) {
2104                                         buffer << "\n";
2105                                         pair<int, string> p =
2106                                                 addDepth(depth, ltype_depth);
2107                                         buffer << p.second;
2108                                         currlinelen = p.first;
2109                                 }
2110
2111                                 buffer << word << ' ';
2112                                 currlinelen += word.length() + 1;
2113                                 word.erase();
2114
2115                         } else {
2116                                 if (c != '\0') {
2117                                         word += c;
2118                                 } else {
2119                                         lyxerr[Debug::INFO] <<
2120                                                 "writeAsciiFile: NULL char in structure." << endl;
2121                                 }
2122                                 if ((linelen > 0) &&
2123                                         (currlinelen + word.length()) > linelen)
2124                                 {
2125                                         buffer << "\n";
2126
2127                                         pair<int, string> p =
2128                                                 addDepth(depth, ltype_depth);
2129                                         buffer << p.second;
2130                                         currlinelen = p.first;
2131                                 }
2132                         }
2133                         break;
2134                 }
2135         }
2136         buffer << word;
2137         return buffer.str().c_str();
2138 }
2139
2140
2141 void Buffer::writeFileAscii(string const & fname, int linelen)
2142 {
2143         ofstream ofs(fname.c_str());
2144         if (!ofs) {
2145                 Alert::err_alert(_("Error: Cannot write file:"), fname);
2146                 return;
2147         }
2148         writeFileAscii(ofs, linelen);
2149 }
2150
2151
2152 void Buffer::writeFileAscii(ostream & ofs, int linelen)
2153 {
2154         Paragraph * par = paragraph;
2155         while (par) {
2156                 ofs << asciiParagraph(par, linelen, par->previous() == 0);
2157                 par = par->next();
2158         }
2159         ofs << "\n";
2160 }
2161
2162
2163 bool use_babel;
2164
2165
2166 void Buffer::makeLaTeXFile(string const & fname,
2167                            string const & original_path,
2168                            bool nice, bool only_body)
2169 {
2170         lyxerr[Debug::LATEX] << "makeLaTeXFile..." << endl;
2171
2172         ofstream ofs(fname.c_str());
2173         if (!ofs) {
2174                 Alert::err_alert(_("Error: Cannot open file: "), fname);
2175                 return;
2176         }
2177
2178         niceFile = nice; // this will be used by Insetincludes.
2179
2180         tex_code_break_column = lyxrc.ascii_linelen;
2181
2182         // validate the buffer.
2183         lyxerr[Debug::LATEX] << "  Validating buffer..." << endl;
2184         LaTeXFeatures features(params);
2185         validate(features);
2186         lyxerr[Debug::LATEX] << "  Buffer validation done." << endl;
2187
2188         texrow.reset();
2189         // The starting paragraph of the coming rows is the
2190         // first paragraph of the document. (Asger)
2191         texrow.start(paragraph, 0);
2192
2193         if (!only_body && nice) {
2194                 ofs << "%% " << lyx_docversion << " created this file.  "
2195                         "For more info, see http://www.lyx.org/.\n"
2196                         "%% Do not edit unless you really know what "
2197                         "you are doing.\n";
2198                 texrow.newline();
2199                 texrow.newline();
2200         }
2201         lyxerr[Debug::INFO] << "lyx header finished" << endl;
2202         // There are a few differences between nice LaTeX and usual files:
2203         // usual is \batchmode and has a
2204         // special input@path to allow the including of figures
2205         // with either \input or \includegraphics (what figinsets do).
2206         // batchmode is not set if there is a tex_code_break_column.
2207         // In this case somebody is interested in the generated LaTeX,
2208         // so this is OK. input@path is set when the actual parameter
2209         // original_path is set. This is done for usual tex-file, but not
2210         // for nice-latex-file. (Matthias 250696)
2211         if (!only_body) {
2212                 if (!nice) {
2213                         // code for usual, NOT nice-latex-file
2214                         ofs << "\\batchmode\n"; // changed
2215                         // from \nonstopmode
2216                         texrow.newline();
2217                 }
2218                 if (!original_path.empty()) {
2219                         string inputpath = os::external_path(original_path);
2220                         subst(inputpath, "~", "\\string~");
2221                         ofs << "\\makeatletter\n"
2222                             << "\\def\\input@path{{"
2223                             << inputpath << "/}}\n"
2224                             << "\\makeatother\n";
2225                         texrow.newline();
2226                         texrow.newline();
2227                         texrow.newline();
2228                 }
2229
2230                 ofs << "\\documentclass";
2231
2232                 LyXTextClass const & tclass = textclasslist[params.textclass];
2233
2234                 ostringstream options; // the document class options.
2235
2236                 if (tokenPos(tclass.opt_fontsize(),
2237                              '|', params.fontsize) >= 0) {
2238                         // only write if existing in list (and not default)
2239                         options << params.fontsize << "pt,";
2240                 }
2241
2242
2243                 if (!params.use_geometry &&
2244                     (params.paperpackage == BufferParams::PACKAGE_NONE)) {
2245                         switch (params.papersize) {
2246                         case BufferParams::PAPER_A4PAPER:
2247                                 options << "a4paper,";
2248                                 break;
2249                         case BufferParams::PAPER_USLETTER:
2250                                 options << "letterpaper,";
2251                                 break;
2252                         case BufferParams::PAPER_A5PAPER:
2253                                 options << "a5paper,";
2254                                 break;
2255                         case BufferParams::PAPER_B5PAPER:
2256                                 options << "b5paper,";
2257                                 break;
2258                         case BufferParams::PAPER_EXECUTIVEPAPER:
2259                                 options << "executivepaper,";
2260                                 break;
2261                         case BufferParams::PAPER_LEGALPAPER:
2262                                 options << "legalpaper,";
2263                                 break;
2264                         }
2265                 }
2266
2267                 // if needed
2268                 if (params.sides != tclass.sides()) {
2269                         switch (params.sides) {
2270                         case LyXTextClass::OneSide:
2271                                 options << "oneside,";
2272                                 break;
2273                         case LyXTextClass::TwoSides:
2274                                 options << "twoside,";
2275                                 break;
2276                         }
2277                 }
2278
2279                 // if needed
2280                 if (params.columns != tclass.columns()) {
2281                         if (params.columns == 2)
2282                                 options << "twocolumn,";
2283                         else
2284                                 options << "onecolumn,";
2285                 }
2286
2287                 if (!params.use_geometry
2288                     && params.orientation == BufferParams::ORIENTATION_LANDSCAPE)
2289                         options << "landscape,";
2290
2291                 // language should be a parameter to \documentclass
2292                 use_babel = false;
2293                 ostringstream language_options;
2294                 if (params.language->babel() == "hebrew"
2295                     && default_language->babel() != "hebrew")
2296                          // This seems necessary
2297                         features.useLanguage(default_language);
2298
2299                 if (lyxrc.language_use_babel ||
2300                     params.language->lang() != lyxrc.default_language ||
2301                     features.hasLanguages()) {
2302                         use_babel = true;
2303                         language_options << features.getLanguages();
2304                         language_options << params.language->babel();
2305                         if (lyxrc.language_global_options)
2306                                 options << language_options.str() << ',';
2307                 }
2308
2309                 // the user-defined options
2310                 if (!params.options.empty()) {
2311                         options << params.options << ',';
2312                 }
2313
2314                 string strOptions(options.str().c_str());
2315                 if (!strOptions.empty()) {
2316                         strOptions = strip(strOptions, ',');
2317                         ofs << '[' << strOptions << ']';
2318                 }
2319
2320                 ofs << '{' << tclass.latexname() << "}\n";
2321                 texrow.newline();
2322                 // end of \documentclass defs
2323
2324                 // font selection must be done before loading fontenc.sty
2325                 // The ae package is not needed when using OT1 font encoding.
2326                 if (params.fonts != "default" &&
2327                     (params.fonts != "ae" || lyxrc.fontenc != "default")) {
2328                         ofs << "\\usepackage{" << params.fonts << "}\n";
2329                         texrow.newline();
2330                         if (params.fonts == "ae") {
2331                                 ofs << "\\usepackage{aecompl}\n";
2332                                 texrow.newline();
2333                         }
2334                 }
2335                 // this one is not per buffer
2336                 if (lyxrc.fontenc != "default") {
2337                         ofs << "\\usepackage[" << lyxrc.fontenc
2338                             << "]{fontenc}\n";
2339                         texrow.newline();
2340                 }
2341
2342                 if (params.inputenc == "auto") {
2343                         string const doc_encoding =
2344                                 params.language->encoding()->LatexName();
2345
2346                         // Create a list with all the input encodings used
2347                         // in the document
2348                         set<string> encodings = features.getEncodingSet(doc_encoding);
2349
2350                         ofs << "\\usepackage[";
2351                         std::copy(encodings.begin(), encodings.end(),
2352                                   std::ostream_iterator<string>(ofs, ","));
2353                         ofs << doc_encoding << "]{inputenc}\n";
2354                         texrow.newline();
2355                 } else if (params.inputenc != "default") {
2356                         ofs << "\\usepackage[" << params.inputenc
2357                             << "]{inputenc}\n";
2358                         texrow.newline();
2359                 }
2360
2361                 // At the very beginning the text parameters.
2362                 if (params.paperpackage != BufferParams::PACKAGE_NONE) {
2363                         switch (params.paperpackage) {
2364                         case BufferParams::PACKAGE_A4:
2365                                 ofs << "\\usepackage{a4}\n";
2366                                 texrow.newline();
2367                                 break;
2368                         case BufferParams::PACKAGE_A4WIDE:
2369                                 ofs << "\\usepackage{a4wide}\n";
2370                                 texrow.newline();
2371                                 break;
2372                         case BufferParams::PACKAGE_WIDEMARGINSA4:
2373                                 ofs << "\\usepackage[widemargins]{a4}\n";
2374                                 texrow.newline();
2375                                 break;
2376                         }
2377                 }
2378                 if (params.use_geometry) {
2379                         ofs << "\\usepackage{geometry}\n";
2380                         texrow.newline();
2381                         ofs << "\\geometry{verbose";
2382                         if (params.orientation == BufferParams::ORIENTATION_LANDSCAPE)
2383                                 ofs << ",landscape";
2384                         switch (params.papersize2) {
2385                         case BufferParams::VM_PAPER_CUSTOM:
2386                                 if (!params.paperwidth.empty())
2387                                         ofs << ",paperwidth="
2388                                             << params.paperwidth;
2389                                 if (!params.paperheight.empty())
2390                                         ofs << ",paperheight="
2391                                             << params.paperheight;
2392                                 break;
2393                         case BufferParams::VM_PAPER_USLETTER:
2394                                 ofs << ",letterpaper";
2395                                 break;
2396                         case BufferParams::VM_PAPER_USLEGAL:
2397                                 ofs << ",legalpaper";
2398                                 break;
2399                         case BufferParams::VM_PAPER_USEXECUTIVE:
2400                                 ofs << ",executivepaper";
2401                                 break;
2402                         case BufferParams::VM_PAPER_A3:
2403                                 ofs << ",a3paper";
2404                                 break;
2405                         case BufferParams::VM_PAPER_A4:
2406                                 ofs << ",a4paper";
2407                                 break;
2408                         case BufferParams::VM_PAPER_A5:
2409                                 ofs << ",a5paper";
2410                                 break;
2411                         case BufferParams::VM_PAPER_B3:
2412                                 ofs << ",b3paper";
2413                                 break;
2414                         case BufferParams::VM_PAPER_B4:
2415                                 ofs << ",b4paper";
2416                                 break;
2417                         case BufferParams::VM_PAPER_B5:
2418                                 ofs << ",b5paper";
2419                                 break;
2420                         default:
2421                                 // default papersize ie BufferParams::VM_PAPER_DEFAULT
2422                                 switch (lyxrc.default_papersize) {
2423                                 case BufferParams::PAPER_DEFAULT: // keep compiler happy
2424                                 case BufferParams::PAPER_USLETTER:
2425                                         ofs << ",letterpaper";
2426                                         break;
2427                                 case BufferParams::PAPER_LEGALPAPER:
2428                                         ofs << ",legalpaper";
2429                                         break;
2430                                 case BufferParams::PAPER_EXECUTIVEPAPER:
2431                                         ofs << ",executivepaper";
2432                                         break;
2433                                 case BufferParams::PAPER_A3PAPER:
2434                                         ofs << ",a3paper";
2435                                         break;
2436                                 case BufferParams::PAPER_A4PAPER:
2437                                         ofs << ",a4paper";
2438                                         break;
2439                                 case BufferParams::PAPER_A5PAPER:
2440                                         ofs << ",a5paper";
2441                                         break;
2442                                 case BufferParams::PAPER_B5PAPER:
2443                                         ofs << ",b5paper";
2444                                         break;
2445                                 }
2446                         }
2447                         if (!params.topmargin.empty())
2448                                 ofs << ",tmargin=" << params.topmargin;
2449                         if (!params.bottommargin.empty())
2450                                 ofs << ",bmargin=" << params.bottommargin;
2451                         if (!params.leftmargin.empty())
2452                                 ofs << ",lmargin=" << params.leftmargin;
2453                         if (!params.rightmargin.empty())
2454                                 ofs << ",rmargin=" << params.rightmargin;
2455                         if (!params.headheight.empty())
2456                                 ofs << ",headheight=" << params.headheight;
2457                         if (!params.headsep.empty())
2458                                 ofs << ",headsep=" << params.headsep;
2459                         if (!params.footskip.empty())
2460                                 ofs << ",footskip=" << params.footskip;
2461                         ofs << "}\n";
2462                         texrow.newline();
2463                 }
2464
2465                 if (tokenPos(tclass.opt_pagestyle(),
2466                              '|', params.pagestyle) >= 0) {
2467                         if (params.pagestyle == "fancy") {
2468                                 ofs << "\\usepackage{fancyhdr}\n";
2469                                 texrow.newline();
2470                         }
2471                         ofs << "\\pagestyle{" << params.pagestyle << "}\n";
2472                         texrow.newline();
2473                 }
2474
2475                 if (params.secnumdepth != tclass.secnumdepth()) {
2476                         ofs << "\\setcounter{secnumdepth}{"
2477                             << params.secnumdepth
2478                             << "}\n";
2479                         texrow.newline();
2480                 }
2481                 if (params.tocdepth != tclass.tocdepth()) {
2482                         ofs << "\\setcounter{tocdepth}{"
2483                             << params.tocdepth
2484                             << "}\n";
2485                         texrow.newline();
2486                 }
2487
2488                 if (params.paragraph_separation) {
2489                         switch (params.defskip.kind()) {
2490                         case VSpace::SMALLSKIP:
2491                                 ofs << "\\setlength\\parskip{\\smallskipamount}\n";
2492                                 break;
2493                         case VSpace::MEDSKIP:
2494                                 ofs << "\\setlength\\parskip{\\medskipamount}\n";
2495                                 break;
2496                         case VSpace::BIGSKIP:
2497                                 ofs << "\\setlength\\parskip{\\bigskipamount}\n";
2498                                 break;
2499                         case VSpace::LENGTH:
2500                                 ofs << "\\setlength\\parskip{"
2501                                     << params.defskip.length().asLatexString()
2502                                     << "}\n";
2503                                 break;
2504                         default: // should never happen // Then delete it.
2505                                 ofs << "\\setlength\\parskip{\\medskipamount}\n";
2506                                 break;
2507                         }
2508                         texrow.newline();
2509
2510                         ofs << "\\setlength\\parindent{0pt}\n";
2511                         texrow.newline();
2512                 }
2513
2514                 // Now insert the LyX specific LaTeX commands...
2515
2516                 // The optional packages;
2517                 string preamble(features.getPackages());
2518
2519                 // this might be useful...
2520                 preamble += "\n\\makeatletter\n";
2521
2522                 // Some macros LyX will need
2523                 string tmppreamble(features.getMacros());
2524
2525                 if (!tmppreamble.empty()) {
2526                         preamble += "\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% "
2527                                 "LyX specific LaTeX commands.\n"
2528                                 + tmppreamble + '\n';
2529                 }
2530
2531                 // the text class specific preamble
2532                 tmppreamble = features.getTClassPreamble();
2533                 if (!tmppreamble.empty()) {
2534                         preamble += "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% "
2535                                 "Textclass specific LaTeX commands.\n"
2536                                 + tmppreamble + '\n';
2537                 }
2538
2539                 /* the user-defined preamble */
2540                 if (!params.preamble.empty()) {
2541                         preamble += "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% "
2542                                 "User specified LaTeX commands.\n"
2543                                 + params.preamble + '\n';
2544                 }
2545
2546                 // Itemize bullet settings need to be last in case the user
2547                 // defines their own bullets that use a package included
2548                 // in the user-defined preamble -- ARRae
2549                 // Actually it has to be done much later than that
2550                 // since some packages like frenchb make modifications
2551                 // at \begin{document} time -- JMarc
2552                 string bullets_def;
2553                 for (int i = 0; i < 4; ++i) {
2554                         if (params.user_defined_bullets[i] != ITEMIZE_DEFAULTS[i]) {
2555                                 if (bullets_def.empty())
2556                                         bullets_def="\\AtBeginDocument{\n";
2557                                 bullets_def += "  \\renewcommand{\\labelitemi";
2558                                 switch (i) {
2559                                 // `i' is one less than the item to modify
2560                                 case 0:
2561                                         break;
2562                                 case 1:
2563                                         bullets_def += 'i';
2564                                         break;
2565                                 case 2:
2566                                         bullets_def += "ii";
2567                                         break;
2568                                 case 3:
2569                                         bullets_def += 'v';
2570                                         break;
2571                                 }
2572                                 bullets_def += "}{" +
2573                                   params.user_defined_bullets[i].getText()
2574                                   + "}\n";
2575                         }
2576                 }
2577
2578                 if (!bullets_def.empty())
2579                   preamble += bullets_def + "}\n\n";
2580
2581                 int const nlines =
2582                         int(lyx::count(preamble.begin(), preamble.end(), '\n'));
2583                 for (int j = 0; j != nlines; ++j) {
2584                         texrow.newline();
2585                 }
2586
2587                 // We try to load babel late, in case it interferes
2588                 // with other packages.
2589                 if (use_babel) {
2590                         string tmp = lyxrc.language_package;
2591                         if (!lyxrc.language_global_options
2592                             && tmp == "\\usepackage{babel}")
2593                                 tmp = string("\\usepackage[") +
2594                                         language_options.str().c_str() +
2595                                         "]{babel}";
2596                         preamble += tmp + "\n";
2597                         preamble += features.getBabelOptions();
2598                 }
2599
2600                 preamble += "\\makeatother\n";
2601
2602                 ofs << preamble;
2603
2604                 // make the body.
2605                 ofs << "\\begin{document}\n";
2606                 texrow.newline();
2607         } // only_body
2608         lyxerr[Debug::INFO] << "preamble finished, now the body." << endl;
2609
2610         if (!lyxrc.language_auto_begin) {
2611                 ofs << subst(lyxrc.language_command_begin, "$$lang",
2612                              params.language->babel())
2613                     << endl;
2614                 texrow.newline();
2615         }
2616
2617         latexParagraphs(ofs, paragraph, 0, texrow);
2618
2619         // add this just in case after all the paragraphs
2620         ofs << endl;
2621         texrow.newline();
2622
2623         if (!lyxrc.language_auto_end) {
2624                 ofs << subst(lyxrc.language_command_end, "$$lang",
2625                              params.language->babel())
2626                     << endl;
2627                 texrow.newline();
2628         }
2629
2630         if (!only_body) {
2631                 ofs << "\\end{document}\n";
2632                 texrow.newline();
2633
2634                 lyxerr[Debug::LATEX] << "makeLaTeXFile...done" << endl;
2635         } else {
2636                 lyxerr[Debug::LATEX] << "LaTeXFile for inclusion made."
2637                                      << endl;
2638         }
2639
2640         // Just to be sure. (Asger)
2641         texrow.newline();
2642
2643         // tex_code_break_column's value is used to decide
2644         // if we are in batchmode or not (within mathed_write()
2645         // in math_write.C) so we must set it to a non-zero
2646         // value when we leave otherwise we save incorrect .lyx files.
2647         tex_code_break_column = lyxrc.ascii_linelen;
2648
2649         ofs.close();
2650         if (ofs.fail()) {
2651                 lyxerr << "File was not closed properly." << endl;
2652         }
2653
2654         lyxerr[Debug::INFO] << "Finished making latex file." << endl;
2655         lyxerr[Debug::INFO] << "Row count was " << texrow.rows()-1 << "." << endl;
2656
2657         // we want this to be true outside previews (for insetexternal)
2658         niceFile = true;
2659 }
2660
2661
2662 //
2663 // LaTeX all paragraphs from par to endpar, if endpar == 0 then to the end
2664 //
2665 void Buffer::latexParagraphs(ostream & ofs, Paragraph * par,
2666                              Paragraph * endpar, TexRow & texrow,
2667                              bool moving_arg) const
2668 {
2669         bool was_title = false;
2670         bool already_title = false;
2671
2672         // if only_body
2673         while (par != endpar) {
2674                 Inset * in = par->inInset();
2675                 // well we have to check if we are in an inset with unlimited
2676                 // lenght (all in one row) if that is true then we don't allow
2677                 // any special options in the paragraph and also we don't allow
2678                 // any environment other then "Standard" to be valid!
2679                 if ((in == 0) || !in->forceDefaultParagraphs(in)) {
2680                         LyXLayout_ptr const & layout = par->layout();
2681
2682                         if (layout->intitle) {
2683                                 if (already_title) {
2684                                         lyxerr <<"Error in latexParagraphs: You"
2685                                                 " should not mix title layouts"
2686                                                 " with normal ones." << endl;
2687                                 } else
2688                                         was_title = true;
2689                         } else if (was_title && !already_title) {
2690                                 ofs << "\\maketitle\n";
2691                                 texrow.newline();
2692                                 already_title = true;
2693                                 was_title = false;
2694                         }
2695
2696                         if (layout->isEnvironment() ||
2697                                 !par->params().leftIndent().zero())
2698                         {
2699                                 par = par->TeXEnvironment(this, params, ofs, texrow);
2700                         } else {
2701                                 par = par->TeXOnePar(this, params, ofs, texrow, moving_arg);
2702                         }
2703                 } else {
2704                         par = par->TeXOnePar(this, params, ofs, texrow, moving_arg);
2705                 }
2706         }
2707         // It might be that we only have a title in this document
2708         if (was_title && !already_title) {
2709                 ofs << "\\maketitle\n";
2710                 texrow.newline();
2711         }
2712 }
2713
2714
2715 bool Buffer::isLatex() const
2716 {
2717         return textclasslist[params.textclass].outputType() == LATEX;
2718 }
2719
2720
2721 bool Buffer::isLinuxDoc() const
2722 {
2723         return textclasslist[params.textclass].outputType() == LINUXDOC;
2724 }
2725
2726
2727 bool Buffer::isLiterate() const
2728 {
2729         return textclasslist[params.textclass].outputType() == LITERATE;
2730 }
2731
2732
2733 bool Buffer::isDocBook() const
2734 {
2735         return textclasslist[params.textclass].outputType() == DOCBOOK;
2736 }
2737
2738
2739 bool Buffer::isSGML() const
2740 {
2741         LyXTextClass const & tclass = textclasslist[params.textclass];
2742
2743         return tclass.outputType() == LINUXDOC ||
2744                tclass.outputType() == DOCBOOK;
2745 }
2746
2747
2748 int Buffer::sgmlOpenTag(ostream & os, Paragraph::depth_type depth, bool mixcont,
2749                          string const & latexname) const
2750 {
2751         if (!latexname.empty() && latexname != "!-- --") {
2752                 if (!mixcont)
2753                         os << string(" ",depth);
2754                 os << "<" << latexname << ">";
2755         }
2756
2757         if (!mixcont)
2758                 os << endl;
2759
2760         return mixcont?0:1;
2761 }
2762
2763
2764 int Buffer::sgmlCloseTag(ostream & os, Paragraph::depth_type depth, bool mixcont,
2765                           string const & latexname) const
2766 {
2767         if (!latexname.empty() && latexname != "!-- --") {
2768                 if (!mixcont)
2769                         os << endl << string(" ",depth);
2770                 os << "</" << latexname << ">";
2771         }
2772
2773         if (!mixcont)
2774                 os << endl;
2775
2776         return mixcont?0:1;
2777 }
2778
2779
2780 void Buffer::makeLinuxDocFile(string const & fname, bool nice, bool body_only)
2781 {
2782         ofstream ofs(fname.c_str());
2783
2784         if (!ofs) {
2785                 Alert::alert(_("LYX_ERROR:"), _("Cannot write file"), fname);
2786                 return;
2787         }
2788
2789         niceFile = nice; // this will be used by included files.
2790
2791         LaTeXFeatures features(params);
2792
2793         validate(features);
2794
2795         texrow.reset();
2796
2797         LyXTextClass const & tclass = textclasslist[params.textclass];
2798
2799         string top_element = tclass.latexname();
2800
2801         if (!body_only) {
2802                 ofs << "<!doctype linuxdoc system";
2803
2804                 string preamble = params.preamble;
2805                 const string name = nice ? ChangeExtension(filename_, ".sgml")
2806                          : fname;
2807                 preamble += features.getIncludedFiles(name);
2808                 preamble += features.getLyXSGMLEntities();
2809
2810                 if (!preamble.empty()) {
2811                         ofs << " [ " << preamble << " ]";
2812                 }
2813                 ofs << ">\n\n";
2814
2815                 if (params.options.empty())
2816                         sgmlOpenTag(ofs, 0, false, top_element);
2817                 else {
2818                         string top = top_element;
2819                         top += " ";
2820                         top += params.options;
2821                         sgmlOpenTag(ofs, 0, false, top);
2822                 }
2823         }
2824
2825         ofs << "<!-- "  << lyx_docversion
2826             << " created this file. For more info see http://www.lyx.org/"
2827             << " -->\n";
2828
2829         Paragraph::depth_type depth = 0; // paragraph depth
2830         Paragraph * par = paragraph;
2831         string item_name;
2832         vector<string> environment_stack(5);
2833
2834         while (par) {
2835                 LyXLayout_ptr const & style = par->layout();
2836                 // treat <toc> as a special case for compatibility with old code
2837                 if (par->isInset(0)) {
2838                         Inset * inset = par->getInset(0);
2839                         Inset::Code lyx_code = inset->lyxCode();
2840                         if (lyx_code == Inset::TOC_CODE) {
2841                                 string const temp = "toc";
2842                                 sgmlOpenTag(ofs, depth, false, temp);
2843
2844                                 par = par->next();
2845                                 continue;
2846                         }
2847                 }
2848
2849                 // environment tag closing
2850                 for (; depth > par->params().depth(); --depth) {
2851                         sgmlCloseTag(ofs, depth, false, environment_stack[depth]);
2852                         environment_stack[depth].erase();
2853                 }
2854
2855                 // write opening SGML tags
2856                 switch (style->latextype) {
2857                 case LATEX_PARAGRAPH:
2858                         if (depth == par->params().depth()
2859                            && !environment_stack[depth].empty()) {
2860                                 sgmlCloseTag(ofs, depth, false, environment_stack[depth]);
2861                                 environment_stack[depth].erase();
2862                                 if (depth)
2863                                         --depth;
2864                                 else
2865                                         ofs << "</p>";
2866                         }
2867                         sgmlOpenTag(ofs, depth, false, style->latexname());
2868                         break;
2869
2870                 case LATEX_COMMAND:
2871                         if (depth!= 0)
2872                                 sgmlError(par, 0,
2873                                           _("Error : Wrong depth for"
2874                                             " LatexType Command.\n"));
2875
2876                         if (!environment_stack[depth].empty()) {
2877                                 sgmlCloseTag(ofs, depth, false, environment_stack[depth]);
2878                                 ofs << "</p>";
2879                         }
2880
2881                         environment_stack[depth].erase();
2882                         sgmlOpenTag(ofs, depth, false, style->latexname());
2883                         break;
2884
2885                 case LATEX_ENVIRONMENT:
2886                 case LATEX_ITEM_ENVIRONMENT:
2887                 {
2888                         string const & latexname = style->latexname();
2889
2890                         if (depth == par->params().depth()
2891                             && environment_stack[depth] != latexname) {
2892                                 sgmlCloseTag(ofs, depth, false,
2893                                              environment_stack[depth]);
2894                                 environment_stack[depth].erase();
2895                         }
2896                         if (depth < par->params().depth()) {
2897                                depth = par->params().depth();
2898                                environment_stack[depth].erase();
2899                         }
2900                         if (environment_stack[depth] != latexname) {
2901                                 if (depth == 0) {
2902                                         sgmlOpenTag(ofs, depth, false, "p");
2903                                 }
2904                                 sgmlOpenTag(ofs, depth, false, latexname);
2905
2906                                 if (environment_stack.size() == depth + 1)
2907                                         environment_stack.push_back("!-- --");
2908                                 environment_stack[depth] = latexname;
2909                         }
2910
2911                         if (style->latexparam() == "CDATA")
2912                                 ofs << "<![CDATA[";
2913
2914                         if (style->latextype == LATEX_ENVIRONMENT) break;
2915
2916                         if (style->labeltype == LABEL_MANUAL)
2917                                 item_name = "tag";
2918                         else
2919                                 item_name = "item";
2920
2921                         sgmlOpenTag(ofs, depth + 1, false, item_name);
2922                 }
2923                 break;
2924
2925                 default:
2926                         sgmlOpenTag(ofs, depth, false, style->latexname());
2927                         break;
2928                 }
2929
2930                 simpleLinuxDocOnePar(ofs, par, depth);
2931
2932                 par = par->next();
2933
2934                 ofs << "\n";
2935                 // write closing SGML tags
2936                 switch (style->latextype) {
2937                 case LATEX_COMMAND:
2938                         break;
2939                 case LATEX_ENVIRONMENT:
2940                 case LATEX_ITEM_ENVIRONMENT:
2941                         if (style->latexparam() == "CDATA")
2942                                 ofs << "]]>";
2943                         break;
2944                 default:
2945                         sgmlCloseTag(ofs, depth, false, style->latexname());
2946                         break;
2947                 }
2948         }
2949
2950         // Close open tags
2951         for (int i = depth; i >= 0; --i)
2952                 sgmlCloseTag(ofs, depth, false, environment_stack[i]);
2953
2954         if (!body_only) {
2955                 ofs << "\n\n";
2956                 sgmlCloseTag(ofs, 0, false, top_element);
2957         }
2958
2959         ofs.close();
2960         // How to check for successful close
2961
2962         // we want this to be true outside previews (for insetexternal)
2963         niceFile = true;
2964 }
2965
2966
2967 // checks, if newcol chars should be put into this line
2968 // writes newline, if necessary.
2969 namespace {
2970
2971 void sgmlLineBreak(ostream & os, string::size_type & colcount,
2972                           string::size_type newcol)
2973 {
2974         colcount += newcol;
2975         if (colcount > lyxrc.ascii_linelen) {
2976                 os << "\n";
2977                 colcount = newcol; // assume write after this call
2978         }
2979 }
2980
2981 enum PAR_TAG {
2982         NONE=0,
2983         TT = 1,
2984         SF = 2,
2985         BF = 4,
2986         IT = 8,
2987         SL = 16,
2988         EM = 32
2989 };
2990
2991
2992 string tag_name(PAR_TAG const & pt) {
2993         switch (pt) {
2994         case NONE: return "!-- --";
2995         case TT: return "tt";
2996         case SF: return "sf";
2997         case BF: return "bf";
2998         case IT: return "it";
2999         case SL: return "sl";
3000         case EM: return "em";
3001         }
3002         return "";
3003 }
3004
3005
3006 inline
3007 void operator|=(PAR_TAG & p1, PAR_TAG const & p2)
3008 {
3009         p1 = static_cast<PAR_TAG>(p1 | p2);
3010 }
3011
3012
3013 inline
3014 void reset(PAR_TAG & p1, PAR_TAG const & p2)
3015 {
3016         p1 = static_cast<PAR_TAG>(p1 & ~p2);
3017 }
3018
3019 } // anon
3020
3021
3022 // Handle internal paragraph parsing -- layout already processed.
3023 void Buffer::simpleLinuxDocOnePar(ostream & os,
3024         Paragraph * par,
3025         Paragraph::depth_type /*depth*/)
3026 {
3027         LyXLayout_ptr const & style = par->layout();
3028
3029         string::size_type char_line_count = 5;     // Heuristic choice ;-)
3030
3031         // gets paragraph main font
3032         LyXFont font_old;
3033         bool desc_on;
3034         if (style->labeltype == LABEL_MANUAL) {
3035                 font_old = style->labelfont;
3036                 desc_on = true;
3037         } else {
3038                 font_old = style->font;
3039                 desc_on = false;
3040         }
3041
3042         LyXFont::FONT_FAMILY family_type = LyXFont::ROMAN_FAMILY;
3043         LyXFont::FONT_SERIES series_type = LyXFont::MEDIUM_SERIES;
3044         LyXFont::FONT_SHAPE  shape_type  = LyXFont::UP_SHAPE;
3045         bool is_em = false;
3046
3047         stack<PAR_TAG> tag_state;
3048         // parsing main loop
3049         for (pos_type i = 0; i < par->size(); ++i) {
3050
3051                 PAR_TAG tag_close = NONE;
3052                 list < PAR_TAG > tag_open;
3053
3054                 LyXFont const font = par->getFont(params, i);
3055
3056                 if (font_old.family() != font.family()) {
3057                         switch (family_type) {
3058                         case LyXFont::SANS_FAMILY:
3059                                 tag_close |= SF;
3060                                 break;
3061                         case LyXFont::TYPEWRITER_FAMILY:
3062                                 tag_close |= TT;
3063                                 break;
3064                         default:
3065                                 break;
3066                         }
3067
3068                         family_type = font.family();
3069
3070                         switch (family_type) {
3071                         case LyXFont::SANS_FAMILY:
3072                                 tag_open.push_back(SF);
3073                                 break;
3074                         case LyXFont::TYPEWRITER_FAMILY:
3075                                 tag_open.push_back(TT);
3076                                 break;
3077                         default:
3078                                 break;
3079                         }
3080                 }
3081
3082                 if (font_old.series() != font.series()) {
3083                         switch (series_type) {
3084                         case LyXFont::BOLD_SERIES:
3085                                 tag_close |= BF;
3086                                 break;
3087                         default:
3088                                 break;
3089                         }
3090
3091                         series_type = font.series();
3092
3093                         switch (series_type) {
3094                         case LyXFont::BOLD_SERIES:
3095                                 tag_open.push_back(BF);
3096                                 break;
3097                         default:
3098                                 break;
3099                         }
3100
3101                 }
3102
3103                 if (font_old.shape() != font.shape()) {
3104                         switch (shape_type) {
3105                         case LyXFont::ITALIC_SHAPE:
3106                                 tag_close |= IT;
3107                                 break;
3108                         case LyXFont::SLANTED_SHAPE:
3109                                 tag_close |= SL;
3110                                 break;
3111                         default:
3112                                 break;
3113                         }
3114
3115                         shape_type = font.shape();
3116
3117                         switch (shape_type) {
3118                         case LyXFont::ITALIC_SHAPE:
3119                                 tag_open.push_back(IT);
3120                                 break;
3121                         case LyXFont::SLANTED_SHAPE:
3122                                 tag_open.push_back(SL);
3123                                 break;
3124                         default:
3125                                 break;
3126                         }
3127                 }
3128                 // handle <em> tag
3129                 if (font_old.emph() != font.emph()) {
3130                         if (font.emph() == LyXFont::ON) {
3131                                 tag_open.push_back(EM);
3132                                 is_em = true;
3133                         }
3134                         else if (is_em) {
3135                                 tag_close |= EM;
3136                                 is_em = false;
3137                         }
3138                 }
3139
3140                 list < PAR_TAG > temp;
3141                 while (!tag_state.empty() && tag_close) {
3142                         PAR_TAG k =  tag_state.top();
3143                         tag_state.pop();
3144                         os << "</" << tag_name(k) << ">";
3145                         if (tag_close & k)
3146                                 reset(tag_close,k);
3147                         else
3148                                 temp.push_back(k);
3149                 }
3150
3151                 for(list< PAR_TAG >::const_iterator j = temp.begin();
3152                     j != temp.end(); ++j) {
3153                         tag_state.push(*j);
3154                         os << "<" << tag_name(*j) << ">";
3155                 }
3156
3157                 for(list< PAR_TAG >::const_iterator j = tag_open.begin();
3158                     j != tag_open.end(); ++j) {
3159                         tag_state.push(*j);
3160                         os << "<" << tag_name(*j) << ">";
3161                 }
3162
3163                 char c = par->getChar(i);
3164
3165                 if (c == Paragraph::META_INSET) {
3166                         Inset * inset = par->getInset(i);
3167                         inset->linuxdoc(this, os);
3168                         font_old = font;
3169                         continue;
3170                 }
3171
3172                 if (style->latexparam() == "CDATA") {
3173                         // "TeX"-Mode on == > SGML-Mode on.
3174                         if (c != '\0')
3175                                 os << c;
3176                         ++char_line_count;
3177                 } else {
3178                         string sgml_string;
3179                         if (par->sgmlConvertChar(c, sgml_string)
3180                             && !style->free_spacing && !par->isFreeSpacing())
3181                         {
3182                                 // in freespacing mode, spaces are
3183                                 // non-breaking characters
3184                                 if (desc_on) {// if char is ' ' then...
3185
3186                                         ++char_line_count;
3187                                         sgmlLineBreak(os, char_line_count, 6);
3188                                         os << "</tag>";
3189                                         desc_on = false;
3190                                 } else  {
3191                                         sgmlLineBreak(os, char_line_count, 1);
3192                                         os << c;
3193                                 }
3194                         } else {
3195                                 os << sgml_string;
3196                                 char_line_count += sgml_string.length();
3197                         }
3198                 }
3199                 font_old = font;
3200         }
3201
3202         while (!tag_state.empty()) {
3203                 os << "</" << tag_name(tag_state.top()) << ">";
3204                 tag_state.pop();
3205         }
3206
3207         // resets description flag correctly
3208         if (desc_on) {
3209                 // <tag> not closed...
3210                 sgmlLineBreak(os, char_line_count, 6);
3211                 os << "</tag>";
3212         }
3213 }
3214
3215
3216 // Print an error message.
3217 void Buffer::sgmlError(Paragraph * /*par*/, int /*pos*/,
3218         string const & /*message*/) const
3219 {
3220 #ifdef WITH_WARNINGS
3221 #warning This is wrong we cannot insert an inset like this!!!
3222         // I guess this was Jose' so I explain you more or less why this
3223         // is wrong. This way you insert something in the paragraph and
3224         // don't tell it to LyXText (row rebreaking and undo handling!!!)
3225         // I deactivate this code, have a look at BufferView::insertErrors
3226         // how you should do this correctly! (Jug 20020315)
3227 #endif
3228 #if 0
3229         // insert an error marker in text
3230         InsetError * new_inset = new InsetError(message);
3231         par->insertInset(pos, new_inset, LyXFont(LyXFont::ALL_INHERIT,
3232                          params.language));
3233 #endif
3234 }
3235
3236
3237 void Buffer::makeDocBookFile(string const & fname, bool nice, bool only_body)
3238 {
3239         ofstream ofs(fname.c_str());
3240         if (!ofs) {
3241                 Alert::alert(_("LYX_ERROR:"), _("Cannot write file"), fname);
3242                 return;
3243         }
3244
3245         Paragraph * par = paragraph;
3246
3247         niceFile = nice; // this will be used by Insetincludes.
3248
3249         LaTeXFeatures features(params);
3250         validate(features);
3251
3252         texrow.reset();
3253
3254         LyXTextClass const & tclass = textclasslist[params.textclass];
3255         string top_element = tclass.latexname();
3256
3257         if (!only_body) {
3258                 ofs << "<!DOCTYPE " << top_element
3259                     << "  PUBLIC \"-//OASIS//DTD DocBook V4.1//EN\"";
3260
3261                 string preamble = params.preamble;
3262                 const string name = nice ? ChangeExtension(filename_, ".sgml")
3263                          : fname;
3264                 preamble += features.getIncludedFiles(name);
3265                 preamble += features.getLyXSGMLEntities();
3266
3267                 if (!preamble.empty()) {
3268                         ofs << "\n [ " << preamble << " ]";
3269                 }
3270                 ofs << ">\n\n";
3271         }
3272
3273         string top = top_element;
3274         top += " lang=\"";
3275         top += params.language->code();
3276         top += "\"";
3277
3278         if (!params.options.empty()) {
3279                 top += " ";
3280                 top += params.options;
3281         }
3282         sgmlOpenTag(ofs, 0, false, top);
3283
3284         ofs << "<!-- DocBook file was created by " << lyx_docversion
3285             << "\n  See http://www.lyx.org/ for more information -->\n";
3286
3287         vector<string> environment_stack(10);
3288         vector<string> environment_inner(10);
3289         vector<string> command_stack(10);
3290
3291         bool command_flag = false;
3292         Paragraph::depth_type command_depth = 0;
3293         Paragraph::depth_type command_base = 0;
3294         Paragraph::depth_type cmd_depth = 0;
3295         Paragraph::depth_type depth = 0; // paragraph depth
3296
3297         string item_name;
3298         string command_name;
3299
3300         while (par) {
3301                 string sgmlparam;
3302                 string c_depth;
3303                 string c_params;
3304                 int desc_on = 0; // description mode
3305
3306                 LyXLayout_ptr const & style = par->layout();
3307
3308                 // environment tag closing
3309                 for (; depth > par->params().depth(); --depth) {
3310                         if (environment_inner[depth] != "!-- --") {
3311                                 item_name = "listitem";
3312                                 sgmlCloseTag(ofs, command_depth + depth, false, item_name);
3313                                 if (environment_inner[depth] == "varlistentry")
3314                                         sgmlCloseTag(ofs, depth+command_depth, false, environment_inner[depth]);
3315                         }
3316                         sgmlCloseTag(ofs, depth + command_depth, false, environment_stack[depth]);
3317                         environment_stack[depth].erase();
3318                         environment_inner[depth].erase();
3319                 }
3320
3321                 if (depth == par->params().depth()
3322                    && environment_stack[depth] != style->latexname()
3323                    && !environment_stack[depth].empty()) {
3324                         if (environment_inner[depth] != "!-- --") {
3325                                 item_name= "listitem";
3326                                 sgmlCloseTag(ofs, command_depth+depth, false, item_name);
3327                                 if (environment_inner[depth] == "varlistentry")
3328                                         sgmlCloseTag(ofs, depth + command_depth, false, environment_inner[depth]);
3329                         }
3330
3331                         sgmlCloseTag(ofs, depth + command_depth, false, environment_stack[depth]);
3332
3333                         environment_stack[depth].erase();
3334                         environment_inner[depth].erase();
3335                 }
3336
3337                 // Write opening SGML tags.
3338                 switch (style->latextype) {
3339                 case LATEX_PARAGRAPH:
3340                         sgmlOpenTag(ofs, depth + command_depth,
3341                                     false, style->latexname());
3342                         break;
3343
3344                 case LATEX_COMMAND:
3345                         if (depth != 0)
3346                                 sgmlError(par, 0,
3347                                           _("Error : Wrong depth for "
3348                                             "LatexType Command.\n"));
3349
3350                         command_name = style->latexname();
3351
3352                         sgmlparam = style->latexparam();
3353                         c_params = split(sgmlparam, c_depth,'|');
3354
3355                         cmd_depth = lyx::atoi(c_depth);
3356
3357                         if (command_flag) {
3358                                 if (cmd_depth < command_base) {
3359                                         for (Paragraph::depth_type j = command_depth;
3360                                              j >= command_base; --j) {
3361                                                 sgmlCloseTag(ofs, j, false, command_stack[j]);
3362                                                 ofs << endl;
3363                                         }
3364                                         command_depth = command_base = cmd_depth;
3365                                 } else if (cmd_depth <= command_depth) {
3366                                         for (int j = command_depth;
3367                                              j >= int(cmd_depth); --j) {
3368                                                 sgmlCloseTag(ofs, j, false, command_stack[j]);
3369                                                 ofs << endl;
3370                                         }
3371                                         command_depth = cmd_depth;
3372                                 } else
3373                                         command_depth = cmd_depth;
3374                         } else {
3375                                 command_depth = command_base = cmd_depth;
3376                                 command_flag = true;
3377                         }
3378                         if (command_stack.size() == command_depth + 1)
3379                                 command_stack.push_back(string());
3380                         command_stack[command_depth] = command_name;
3381
3382                         // treat label as a special case for
3383                         // more WYSIWYM handling.
3384                         // This is a hack while paragraphs can't have
3385                         // attributes, like id in this case.
3386                         if (par->isInset(0)) {
3387                                 Inset * inset = par->getInset(0);
3388                                 Inset::Code lyx_code = inset->lyxCode();
3389                                 if (lyx_code == Inset::LABEL_CODE) {
3390                                         command_name += " id=\"";
3391                                         command_name += (static_cast<InsetCommand *>(inset))->getContents();
3392                                         command_name += "\"";
3393                                         desc_on = 3;
3394                                 }
3395                         }
3396
3397                         sgmlOpenTag(ofs, depth + command_depth, false, command_name);
3398
3399                         item_name = c_params.empty()?"title":c_params;
3400                         sgmlOpenTag(ofs, depth + 1 + command_depth, false, item_name);
3401                         break;
3402
3403                 case LATEX_ENVIRONMENT:
3404                 case LATEX_ITEM_ENVIRONMENT:
3405                         if (depth < par->params().depth()) {
3406                                 depth = par->params().depth();
3407                                 environment_stack[depth].erase();
3408                         }
3409
3410                         if (environment_stack[depth] != style->latexname()) {
3411                                 if (environment_stack.size() == depth + 1) {
3412                                         environment_stack.push_back("!-- --");
3413                                         environment_inner.push_back("!-- --");
3414                                 }
3415                                 environment_stack[depth] = style->latexname();
3416                                 environment_inner[depth] = "!-- --";
3417                                 sgmlOpenTag(ofs, depth + command_depth, false, environment_stack[depth]);
3418                         } else {
3419                                 if (environment_inner[depth] != "!-- --") {
3420                                         item_name= "listitem";
3421                                         sgmlCloseTag(ofs, command_depth + depth, false, item_name);
3422                                         if (environment_inner[depth] == "varlistentry")
3423                                                 sgmlCloseTag(ofs, depth + command_depth, false, environment_inner[depth]);
3424                                 }
3425                         }
3426
3427                         if (style->latextype == LATEX_ENVIRONMENT) {
3428                                 if (!style->latexparam().empty()) {
3429                                         if (style->latexparam() == "CDATA")
3430                                                 ofs << "<![CDATA[";
3431                                         else
3432                                                 sgmlOpenTag(ofs, depth + command_depth, false, style->latexparam());
3433                                 }
3434                                 break;
3435                         }
3436
3437                         desc_on = (style->labeltype == LABEL_MANUAL);
3438
3439                         environment_inner[depth] = desc_on ? "varlistentry" : "listitem";
3440                         sgmlOpenTag(ofs, depth + 1 + command_depth,
3441                                     false, environment_inner[depth]);
3442
3443                         item_name = desc_on ? "term" : "para";
3444                         sgmlOpenTag(ofs, depth + 1 + command_depth,
3445                                     false, item_name);
3446                         break;
3447                 default:
3448                         sgmlOpenTag(ofs, depth + command_depth,
3449                                     false, style->latexname());
3450                         break;
3451                 }
3452
3453                 simpleDocBookOnePar(ofs, par, desc_on,
3454                                     depth + 1 + command_depth);
3455                 par = par->next();
3456
3457                 string end_tag;
3458                 // write closing SGML tags
3459                 switch (style->latextype) {
3460                 case LATEX_COMMAND:
3461                         end_tag = c_params.empty() ? "title" : c_params;
3462                         sgmlCloseTag(ofs, depth + command_depth,
3463                                      false, end_tag);
3464                         break;
3465                 case LATEX_ENVIRONMENT:
3466                         if (!style->latexparam().empty()) {
3467                                 if (style->latexparam() == "CDATA")
3468                                         ofs << "]]>";
3469                                 else
3470                                         sgmlCloseTag(ofs, depth + command_depth, false, style->latexparam());
3471                         }
3472                         break;
3473                 case LATEX_ITEM_ENVIRONMENT:
3474                         if (desc_on == 1) break;
3475                         end_tag= "para";
3476                         sgmlCloseTag(ofs, depth + 1 + command_depth, false, end_tag);
3477                         break;
3478                 case LATEX_PARAGRAPH:
3479                         sgmlCloseTag(ofs, depth + command_depth, false, style->latexname());
3480                         break;
3481                 default:
3482                         sgmlCloseTag(ofs, depth + command_depth, false, style->latexname());
3483                         break;
3484                 }
3485         }
3486
3487         // Close open tags
3488         for (int d = depth; d >= 0; --d) {
3489                 if (!environment_stack[depth].empty()) {
3490                         if (environment_inner[depth] != "!-- --") {
3491                                 item_name = "listitem";
3492                                 sgmlCloseTag(ofs, command_depth + depth, false, item_name);
3493                                if (environment_inner[depth] == "varlistentry")
3494                                        sgmlCloseTag(ofs, depth + command_depth, false, environment_inner[depth]);
3495                         }
3496
3497                         sgmlCloseTag(ofs, depth + command_depth, false, environment_stack[depth]);
3498                 }
3499         }
3500
3501         for (int j = command_depth; j >= 0 ; --j)
3502                 if (!command_stack[j].empty()) {
3503                         sgmlCloseTag(ofs, j, false, command_stack[j]);
3504                         ofs << endl;
3505                 }
3506
3507         ofs << "\n\n";
3508         sgmlCloseTag(ofs, 0, false, top_element);
3509
3510         ofs.close();
3511         // How to check for successful close
3512
3513         // we want this to be true outside previews (for insetexternal)
3514         niceFile = true;
3515 }
3516
3517
3518 void Buffer::simpleDocBookOnePar(ostream & os,
3519                                  Paragraph * par, int & desc_on,
3520                                  Paragraph::depth_type depth) const
3521 {
3522         bool emph_flag = false;
3523
3524         LyXLayout_ptr const & style = par->layout();
3525
3526         LyXFont font_old = (style->labeltype == LABEL_MANUAL ? style->labelfont : style->font);
3527
3528         int char_line_count = depth;
3529         //if (!style.free_spacing)
3530         //      os << string(depth,' ');
3531
3532         // parsing main loop
3533         for (pos_type i = 0; i < par->size(); ++i) {
3534                 LyXFont font = par->getFont(params, i);
3535
3536                 // handle <emphasis> tag
3537                 if (font_old.emph() != font.emph()) {
3538                         if (font.emph() == LyXFont::ON) {
3539                                 if (style->latexparam() == "CDATA")
3540                                         os << "]]>";
3541                                 os << "<emphasis>";
3542                                 if (style->latexparam() == "CDATA")
3543                                         os << "<![CDATA[";
3544                                 emph_flag = true;
3545                         } else if (i) {
3546                                 if (style->latexparam() == "CDATA")
3547                                         os << "]]>";
3548                                 os << "</emphasis>";
3549                                 if (style->latexparam() == "CDATA")
3550                                         os << "<![CDATA[";
3551                                 emph_flag = false;
3552                         }
3553                 }
3554
3555
3556                 if (par->isInset(i)) {
3557                         Inset * inset = par->getInset(i);
3558                         // don't print the inset in position 0 if desc_on == 3 (label)
3559                         if (i || desc_on != 3) {
3560                                 if (style->latexparam() == "CDATA")
3561                                         os << "]]>";
3562                                 inset->docbook(this, os, false);
3563                                 if (style->latexparam() == "CDATA")
3564                                         os << "<![CDATA[";
3565                         }
3566                 } else {
3567                         char c = par->getChar(i);
3568                         string sgml_string;
3569                         par->sgmlConvertChar(c, sgml_string);
3570
3571                         if (style->pass_thru) {
3572                                 os << c;
3573                         } else if (style->free_spacing || par->isFreeSpacing() || c != ' ') {
3574                                         os << sgml_string;
3575                         } else if (desc_on ==1) {
3576                                 ++char_line_count;
3577                                 os << "\n</term><listitem><para>";
3578                                 desc_on = 2;
3579                         } else {
3580                                 os << ' ';
3581                         }
3582                 }
3583                 font_old = font;
3584         }
3585
3586         if (emph_flag) {
3587                 if (style->latexparam() == "CDATA")
3588                         os << "]]>";
3589                 os << "</emphasis>";
3590                 if (style->latexparam() == "CDATA")
3591                         os << "<![CDATA[";
3592         }
3593
3594         // resets description flag correctly
3595         if (desc_on == 1) {
3596                 // <term> not closed...
3597                 os << "</term>\n<listitem><para>&nbsp;</para>";
3598         }
3599         if (style->free_spacing)
3600                 os << '\n';
3601 }
3602
3603
3604 // chktex should be run with these flags disabled: 3, 22, 25, 30, 38(?)
3605 // Other flags: -wall -v0 -x
3606 int Buffer::runChktex()
3607 {
3608         if (!users->text) return 0;
3609
3610         users->owner()->prohibitInput();
3611
3612         // get LaTeX-Filename
3613         string const name = getLatexName();
3614         string path = filePath();
3615
3616         string const org_path = path;
3617         if (lyxrc.use_tempdir || !IsDirWriteable(path)) {
3618                 path = tmppath;
3619         }
3620
3621         Path p(path); // path to LaTeX file
3622         users->owner()->message(_("Running chktex..."));
3623
3624         // Remove all error insets
3625         bool const removedErrorInsets = users->removeAutoInsets();
3626
3627         // Generate the LaTeX file if neccessary
3628         makeLaTeXFile(name, org_path, false);
3629
3630         TeXErrors terr;
3631         Chktex chktex(lyxrc.chktex_command, name, filePath());
3632         int res = chktex.run(terr); // run chktex
3633
3634         if (res == -1) {
3635                 Alert::alert(_("chktex did not work!"),
3636                            _("Could not run with file:"), name);
3637         } else if (res > 0) {
3638                 // Insert all errors as errors boxes
3639                 users->insertErrors(terr);
3640         }
3641
3642         // if we removed error insets before we ran chktex or if we inserted
3643         // error insets after we ran chktex, this must be run:
3644         if (removedErrorInsets || res) {
3645 #warning repaint needed here, or do you mean update() ?
3646                 users->repaint();
3647                 users->fitCursor();
3648         }
3649         users->owner()->allowInput();
3650
3651         return res;
3652 }
3653
3654
3655 void Buffer::validate(LaTeXFeatures & features) const
3656 {
3657         Paragraph * par = paragraph;
3658         LyXTextClass const & tclass = textclasslist[params.textclass];
3659
3660         // AMS Style is at document level
3661         if (params.use_amsmath || tclass.provides(LyXTextClass::amsmath))
3662                 features.require("amsmath");
3663
3664         while (par) {
3665                 // We don't use "lyxerr.debug" because of speed. (Asger)
3666                 if (lyxerr.debugging(Debug::LATEX))
3667                         lyxerr << "Paragraph: " <<  par << endl;
3668
3669                 // Now just follow the list of paragraphs and run
3670                 // validate on each of them.
3671                 par->validate(features);
3672
3673                 // and then the next paragraph
3674                 par = par->next();
3675         }
3676
3677         // the bullet shapes are buffer level not paragraph level
3678         // so they are tested here
3679         for (int i = 0; i < 4; ++i) {
3680                 if (params.user_defined_bullets[i] != ITEMIZE_DEFAULTS[i]) {
3681                         int const font = params.user_defined_bullets[i].getFont();
3682                         if (font == 0) {
3683                                 int const c = params
3684                                         .user_defined_bullets[i]
3685                                         .getCharacter();
3686                                 if (c == 16
3687                                    || c == 17
3688                                    || c == 25
3689                                    || c == 26
3690                                    || c == 31) {
3691                                         features.require("latexsym");
3692                                 }
3693                         } else if (font == 1) {
3694                                 features.require("amssymb");
3695                         } else if ((font >= 2 && font <= 5)) {
3696                                 features.require("pifont");
3697                         }
3698                 }
3699         }
3700
3701         if (lyxerr.debugging(Debug::LATEX)) {
3702                 features.showStruct();
3703         }
3704 }
3705
3706
3707 // This function should be in Buffer because it's a buffer's property (ale)
3708 string const Buffer::getIncludeonlyList(char delim)
3709 {
3710         string lst;
3711         for (inset_iterator it = inset_iterator_begin();
3712             it != inset_iterator_end(); ++it) {
3713                 if ((*it)->lyxCode() == Inset::INCLUDE_CODE) {
3714                         InsetInclude * insetinc =
3715                                 static_cast<InsetInclude *>(*it);
3716                         if (insetinc->isIncludeOnly()) {
3717                                 if (!lst.empty())
3718                                         lst += delim;
3719                                 lst += insetinc->getRelFileBaseName();
3720                         }
3721                 }
3722         }
3723         lyxerr[Debug::INFO] << "Includeonly(" << lst << ')' << endl;
3724         return lst;
3725 }
3726
3727
3728 vector<string> const Buffer::getLabelList()
3729 {
3730         /// if this is a child document and the parent is already loaded
3731         /// Use the parent's list instead  [ale990407]
3732         if (!params.parentname.empty()
3733             && bufferlist.exists(params.parentname)) {
3734                 Buffer * tmp = bufferlist.getBuffer(params.parentname);
3735                 if (tmp)
3736                         return tmp->getLabelList();
3737         }
3738
3739         vector<string> label_list;
3740         for (inset_iterator it = inset_iterator_begin();
3741              it != inset_iterator_end(); ++it) {
3742                 vector<string> const l = (*it)->getLabelList();
3743                 label_list.insert(label_list.end(), l.begin(), l.end());
3744         }
3745         return label_list;
3746 }
3747
3748
3749 Buffer::Lists const Buffer::getLists() const
3750 {
3751         Lists l;
3752         Paragraph * par = paragraph;
3753
3754         LyXTextClass const & textclass = textclasslist[params.textclass];
3755         bool found = textclass.hasLayout("Caption");
3756         string const layout("Caption");
3757
3758         while (par) {
3759 #warning bogus type (Lgb)
3760                 char const labeltype = par->layout()->labeltype;
3761
3762                 if (labeltype >= LABEL_COUNTER_CHAPTER
3763                     && labeltype <= LABEL_COUNTER_CHAPTER + params.tocdepth) {
3764                                 // insert this into the table of contents
3765                         SingleList & item = l["TOC"];
3766                         int depth = max(0,
3767                                         labeltype -
3768                                         textclass.maxcounter());
3769                         item.push_back(TocItem(par, depth, par->asString(this, true)));
3770                 }
3771                 // For each paragrph, traverse its insets and look for
3772                 // FLOAT_CODE
3773
3774                 if (found) {
3775                         Paragraph::inset_iterator it =
3776                                 par->inset_iterator_begin();
3777                         Paragraph::inset_iterator end =
3778                                 par->inset_iterator_end();
3779
3780                         for (; it != end; ++it) {
3781                                 if ((*it)->lyxCode() == Inset::FLOAT_CODE) {
3782                                         InsetFloat * il =
3783                                                 static_cast<InsetFloat*>(*it);
3784
3785                                         string const type = il->type();
3786
3787                                         // Now find the caption in the float...
3788                                         // We now tranverse the paragraphs of
3789                                         // the inset...
3790                                         Paragraph * tmp = il->inset.paragraph();
3791                                         while (tmp) {
3792                                                 if (tmp->layout()->name() == layout) {
3793                                                         SingleList & item = l[type];
3794                                                         string const str =
3795                                                                 tostr(item.size()+1) + ". " + tmp->asString(this, false);
3796                                                         item.push_back(TocItem(tmp, 0 , str));
3797                                                 }
3798                                                 tmp = tmp->next();
3799                                         }
3800                                 }
3801                         }
3802                 } else {
3803                         lyxerr << "Caption not found" << endl;
3804                 }
3805
3806                 par = par->next();
3807         }
3808         return l;
3809 }
3810
3811
3812 // This is also a buffer property (ale)
3813 vector<pair<string, string> > const Buffer::getBibkeyList() const
3814 {
3815         typedef pair<string, string> StringPair;
3816         /// if this is a child document and the parent is already loaded
3817         /// Use the parent's list instead  [ale990412]
3818         if (!params.parentname.empty() && bufferlist.exists(params.parentname)) {
3819                 Buffer const * tmp = bufferlist.getBuffer(params.parentname);
3820                 if (tmp)
3821                         return tmp->getBibkeyList();
3822         }
3823
3824         vector<StringPair> keys;
3825         Paragraph * par = paragraph;
3826         while (par) {
3827                 if (par->bibkey) {
3828                         string const key = par->bibkey->getContents();
3829                         string const opt = par->bibkey->getOptions();
3830                         string const ref = par->asString(this, false);
3831                         string const info = opt + "TheBibliographyRef" + ref;
3832
3833                         keys.push_back(StringPair(key, info));
3834                 }
3835                 par = par->next();
3836         }
3837
3838         // Might be either using bibtex or a child has bibliography
3839         if (keys.empty()) {
3840                 for (inset_iterator it = inset_const_iterator_begin();
3841                         it != inset_const_iterator_end(); ++it) {
3842                         // Search for Bibtex or Include inset
3843                         if ((*it)->lyxCode() == Inset::BIBTEX_CODE) {
3844                                 vector<StringPair> tmp =
3845                                         static_cast<InsetBibtex*>(*it)->getKeys(this);
3846                                 keys.insert(keys.end(), tmp.begin(), tmp.end());
3847                         } else if ((*it)->lyxCode() == Inset::INCLUDE_CODE) {
3848                                 vector<StringPair> const tmp =
3849                                         static_cast<InsetInclude*>(*it)->getKeys();
3850                                 keys.insert(keys.end(), tmp.begin(), tmp.end());
3851                         }
3852                 }
3853         }
3854
3855         return keys;
3856 }
3857
3858
3859 bool Buffer::isDepClean(string const & name) const
3860 {
3861         DEPCLEAN * item = dep_clean;
3862         while (item && item->master != name)
3863                 item = item->next;
3864         if (!item) return true;
3865         return item->clean;
3866 }
3867
3868
3869 void Buffer::markDepClean(string const & name)
3870 {
3871         if (!dep_clean) {
3872                 dep_clean = new DEPCLEAN;
3873                 dep_clean->clean = true;
3874                 dep_clean->master = name;
3875                 dep_clean->next = 0;
3876         } else {
3877                 DEPCLEAN * item = dep_clean;
3878                 while (item && item->master != name)
3879                         item = item->next;
3880                 if (item) {
3881                         item->clean = true;
3882                 } else {
3883                         item = new DEPCLEAN;
3884                         item->clean = true;
3885                         item->master = name;
3886                         item->next = 0;
3887                 }
3888         }
3889 }
3890
3891
3892 bool Buffer::dispatch(string const & command, bool * result)
3893 {
3894         // Split command string into command and argument
3895         string cmd;
3896         string line = frontStrip(command);
3897         string const arg = strip(frontStrip(split(line, cmd, ' ')));
3898
3899         return dispatch(lyxaction.LookupFunc(cmd), arg, result);
3900 }
3901
3902
3903 bool Buffer::dispatch(int action, string const & argument, bool * result)
3904 {
3905         bool dispatched = true;
3906
3907         switch (action) {
3908                 case LFUN_EXPORT: {
3909                         bool const tmp = Exporter::Export(this, argument, false);
3910                         if (result)
3911                                 *result = tmp;
3912                         break;
3913                 }
3914
3915                 default:
3916                         dispatched = false;
3917         }
3918         return dispatched;
3919 }
3920
3921
3922 void Buffer::resizeInsets(BufferView * bv)
3923 {
3924         /// then remove all LyXText in text-insets
3925         Paragraph * par = paragraph;
3926         for (; par; par = par->next()) {
3927             par->resizeInsetsLyXText(bv);
3928         }
3929 }
3930
3931
3932 void Buffer::redraw()
3933 {
3934 #warning repaint needed here, or do you mean update() ?
3935         users->repaint();
3936         users->fitCursor();
3937 }
3938
3939
3940 void Buffer::changeLanguage(Language const * from, Language const * to)
3941 {
3942
3943         ParIterator end = par_iterator_end();
3944         for (ParIterator it = par_iterator_begin(); it != end; ++it)
3945                 (*it)->changeLanguage(params, from, to);
3946 }
3947
3948
3949 bool Buffer::isMultiLingual()
3950 {
3951         ParIterator end = par_iterator_end();
3952         for (ParIterator it = par_iterator_begin(); it != end; ++it)
3953                 if ((*it)->isMultiLingual(params))
3954                         return true;
3955
3956         return false;
3957 }
3958
3959
3960 Buffer::inset_iterator::inset_iterator(Paragraph * paragraph, pos_type pos)
3961         : par(paragraph)
3962 {
3963         it = par->InsetIterator(pos);
3964         if (it == par->inset_iterator_end()) {
3965                 par = par->next();
3966                 setParagraph();
3967         }
3968 }
3969
3970
3971 void Buffer::inset_iterator::setParagraph()
3972 {
3973         while (par) {
3974                 it = par->inset_iterator_begin();
3975                 if (it != par->inset_iterator_end())
3976                         return;
3977                 par = par->next();
3978         }
3979         //it = 0;
3980         // We maintain an invariant that whenever par = 0 then it = 0
3981 }
3982
3983
3984 Inset * Buffer::getInsetFromID(int id_arg) const
3985 {
3986         for (inset_iterator it = inset_const_iterator_begin();
3987                  it != inset_const_iterator_end(); ++it)
3988         {
3989                 if ((*it)->id() == id_arg)
3990                         return *it;
3991                 Inset * in = (*it)->getInsetFromID(id_arg);
3992                 if (in)
3993                         return in;
3994         }
3995         return 0;
3996 }
3997
3998
3999 Paragraph * Buffer::getParFromID(int id) const
4000 {
4001         if (id < 0) return 0;
4002         Paragraph * par = paragraph;
4003         while (par) {
4004                 if (par->id() == id) {
4005                         return par;
4006                 }
4007                 Paragraph * tmp = par->getParFromID(id);
4008                 if (tmp) {
4009                         return tmp;
4010                 }
4011                 par = par->next();
4012         }
4013         return 0;
4014 }
4015
4016
4017 ParIterator Buffer::par_iterator_begin()
4018 {
4019         return ParIterator(paragraph);
4020 }
4021
4022
4023 ParIterator Buffer::par_iterator_end()
4024 {
4025         return ParIterator();
4026 }