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