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