]> git.lyx.org Git - lyx.git/blobdiff - src/buffer.C
Forgot to add this files.
[lyx.git] / src / buffer.C
index eef8cdb79995dfb5ddffbe1e1ea693aa97728fed..7e5395cabc66013c2a5a150d4b2cdef5c53fb3b3 100644 (file)
@@ -56,9 +56,6 @@
 #include "insets/insetindex.h" 
 #include "insets/insetinclude.h"
 #include "insets/insettoc.h"
-#include "insets/insetlof.h"
-#include "insets/insetlot.h"
-#include "insets/insetloa.h"
 #include "insets/insetparent.h"
 #include "insets/insetspecialchar.h"
 #include "insets/figinset.h"
 #include "insets/insetert.h"
 #include "insets/insetgraphics.h"
 #include "insets/insetfoot.h"
+#include "insets/insetmarginal.h"
+#include "insets/insetminipage.h"
+#include "insets/insetfloat.h"
+#include "insets/insetlist.h"
 #include "insets/insettabular.h"
+#include "insets/insettheorem.h"
+#include "insets/insetcaption.h"
 #include "support/filetools.h"
 #include "support/path.h"
 #include "LaTeX.h"
@@ -83,6 +86,7 @@
 #include "language.h"
 #include "lyx_gui_misc.h"      // WarnReadonly()
 #include "frontends/Dialogs.h"
+#include "encoding.h"
 
 using std::ostream;
 using std::ofstream;
@@ -94,6 +98,10 @@ using std::endl;
 using std::pair;
 using std::vector;
 using std::max;
+using std::set;
+#ifdef HAVE_SSTREAM
+using std::istringstream;
+#endif
 
 // all these externs should eventually be removed.
 extern BufferList bufferlist;
@@ -115,10 +123,9 @@ Buffer::Buffer(string const & file, bool ronly)
        paragraph = 0;
        lyx_clean = true;
        bak_clean = true;
-       dvi_clean_orgd = false;  // Heinrich Bauer, 23/03/98
-       dvi_clean_tmpd = false;  // Heinrich Bauer, 23/03/98
        dep_clean = 0;
        read_only = ronly;
+       unnamed = false;
        users = 0;
        lyxvc.buffer(this);
        if (read_only || (lyxrc.use_tempdir)) {
@@ -226,15 +233,15 @@ void Buffer::fileName(string const & newfile)
 // if par = 0 normal behavior
 // else insert behavior
 // Returns false if "\the_end" is not read for formats >= 2.13. (Asger)
-#define USE_PARSE_FUNCTION 1
-//#define USE_TABULAR_INSETS 1
 bool Buffer::readLyXformat2(LyXLex & lex, LyXParagraph * par)
 {
        string tmptok;
        int pos = 0;
        char depth = 0; // signed or unsigned?
+#ifndef NEW_INSETS
        LyXParagraph::footnote_flag footnoteflag = LyXParagraph::NO_FOOTNOTE;
        LyXParagraph::footnote_kind footnotekind = LyXParagraph::FOOTNOTE;
+#endif
        bool the_end_read = false;
 
        LyXParagraph * return_par = 0;
@@ -280,8 +287,12 @@ bool Buffer::readLyXformat2(LyXLex & lex, LyXParagraph * par)
                        continue;
                the_end_read = parseSingleLyXformat2Token(lex, par, return_par,
                                                          token, pos, depth,
-                                                         font, footnoteflag,
-                                                         footnotekind);
+                                                         font
+#ifndef NEW_INSETS
+                                                         , footnoteflag,
+                                                         footnotekind
+#endif
+                       );
        }
    
        if (!return_par)
@@ -293,29 +304,33 @@ bool Buffer::readLyXformat2(LyXLex & lex, LyXParagraph * par)
 }
 
 
+// We'll remove this later. (Lgb)
+static string last_inset_read;
+
+
 bool
 Buffer::parseSingleLyXformat2Token(LyXLex & lex, LyXParagraph *& par,
                                   LyXParagraph *& return_par,
                                   string const & token, int & pos,
-                                  char & depth, LyXFont & font,
-                                  LyXParagraph::footnote_flag & footnoteflag,
-                                  LyXParagraph::footnote_kind & footnotekind)
+                                  char & depth, LyXFont & font
+#ifndef NEW_INSETS
+                                  , LyXParagraph::footnote_flag & footnoteflag,
+                                  LyXParagraph::footnote_kind & footnotekind
+#endif
+       )
 {
        bool the_end_read = false;
-
+       
        if (token[0] != '\\') {
                for (string::const_iterator cit = token.begin();
                     cit != token.end(); ++cit) {
-                       par->InsertChar(pos, (*cit));
-                       par->SetFont(pos, font);
+                       par->InsertChar(pos, (*cit), font);
                        ++pos;
                }
        } else if (token == "\\i") {
                Inset * inset = new InsetLatexAccent;
                inset->Read(this, lex);
-               par->InsertChar(pos, LyXParagraph::META_INSET); 
-               par->InsertInset(pos, inset);
-               par->SetFont(pos, font);
+               par->InsertInset(pos, inset, font);
                ++pos;
        } else if (token == "\\layout") {
                if (!return_par) 
@@ -344,12 +359,15 @@ Buffer::parseSingleLyXformat2Token(LyXLex & lex, LyXParagraph *& par,
                        par->layout = 
                                textclasslist.NumberOfLayout(params.textclass, 
                                                             layout.obsoleted_by()).second;
+#ifndef NEW_INSETS
                par->footnoteflag = footnoteflag;
                par->footnotekind = footnotekind;
+#endif
                par->depth = depth;
                font = LyXFont(LyXFont::ALL_INHERIT, params.language_info);
                if (format < 2.16 && params.language == "hebrew")
                        font.setLanguage(default_language);
+#ifndef NEW_INSETS
        } else if (token == "\\end_float") {
                if (!return_par) 
                        return_par = par;
@@ -375,6 +393,84 @@ Buffer::parseSingleLyXformat2Token(LyXLex & lex, LyXParagraph *& par,
                        footnoteflag = LyXParagraph::CLOSED_FOOTNOTE;
                else 
                        footnoteflag = LyXParagraph::OPEN_FOOTNOTE;
+#else
+       } else if (token == "\\begin_float") {
+               // This is the compability reader, unfinished but tested.
+               // (Lgb)
+               lex.next();
+               string tmptok = lex.GetString();
+               //lyxerr << "old float: " << tmptok << endl;
+               
+               Inset * inset = 0;
+               string old_float;
+               
+               if (tmptok == "footnote") {
+                       inset = new InsetFoot;
+               } else if (tmptok == "margin") {
+                       inset = new InsetMarginal;
+               } else if (tmptok == "fig") {
+                       inset = new InsetFloat("figure");
+                       old_float += "placement htbp\n";
+               } else if (tmptok == "tab") {
+                       inset = new InsetFloat("table");
+                       old_float += "placement htbp\n";
+               } else if (tmptok == "alg") {
+                       inset = new InsetFloat("algorithm");
+                       old_float += "placement htbp\n";
+               } else if (tmptok == "wide-fig") {
+                       InsetFloat * tmp = new InsetFloat("figure");
+                       tmp->wide(true);
+                       inset = tmp;
+                       old_float += "placement htbp\n";
+               } else if (tmptok == "wide-tab") {
+                       InsetFloat * tmp = new InsetFloat("table");
+                       tmp->wide(true);
+                       inset = tmp;
+                       old_float += "placement htbp\n";
+               }
+
+               if (!inset) return false; // no end read yet
+               
+               old_float += "collapsed true\n";
+
+               // Here we need to check for \end_deeper and handle that
+               // before we do the footnote parsing.
+               // This _is_ a hack! (Lgb)
+               while(true) {
+                       lex.next();
+                       string tmp = lex.GetString();
+                       if (tmp == "\\end_deeper") {
+                               lyxerr << "\\end_deeper caught!" << endl;
+                               if (!depth) {
+                                       lex.printError("\\end_deeper: "
+                                                      "depth is already null");
+                               } else
+                                       --depth;
+                               
+                       } else {
+                               old_float += tmp;
+                               old_float += ' ';
+                               break;
+                       }
+               }
+               
+               old_float += lex.getLongString("\\end_float");
+               old_float += "\n\\end_inset\n";
+               //lyxerr << "float body: " << old_float << endl;
+
+#ifdef HAVE_SSTREAM
+               istringstream istr(old_float);
+#else
+               istrstream istr(old_float.c_str());
+#endif
+               
+               LyXLex nylex(0, 0);
+               nylex.setStream(istr);
+               
+               inset->Read(this, nylex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+#endif
        } else if (token == "\\begin_deeper") {
                ++depth;
        } else if (token == "\\end_deeper") {
@@ -393,7 +489,7 @@ Buffer::parseSingleLyXformat2Token(LyXLex & lex, LyXParagraph *& par,
                if (pp.first) {
                        params.textclass = pp.second;
                } else {
-                       lex.printError("Unknown textclass `$$Token'");
+                 lex.printError("Unknown textclass `$$Token'");
                        params.textclass = 0;
                }
                if (!textclasslist.Load(params.textclass)) {
@@ -651,11 +747,6 @@ Buffer::parseSingleLyXformat2Token(LyXLex & lex, LyXParagraph *& par,
        } else if (token == "\\float_placement") {
                lex.nextToken();
                params.float_placement = lex.GetString();
-#if 0
-       } else if (token == "\\cursor") { // obsolete
-               // this is obsolete, so we just skip it.
-               lex.nextToken();
-#endif
        } else if (token == "\\family") { 
                lex.next();
                font.setLyXFamily(lex.GetString());
@@ -751,156 +842,15 @@ Buffer::parseSingleLyXformat2Token(LyXLex & lex, LyXParagraph *& par,
                par->labelwidthstring = lex.GetString();
                // do not delete this token, it is still needed!
        } else if (token == "\\end_inset") {
+               lyxerr << "Solitary \\end_inset. Missing \\begin_inset?.\n"
+                      << "Last inset read was: " << last_inset_read
+                      << endl;
                // Simply ignore this. The insets do not have
                // to read this.
                // But insets should read it, it is a part of
                // the inset isn't it? Lgb.
        } else if (token == "\\begin_inset") {
-               // Should be moved out into its own function/method. (Lgb)
-               lex.next();
-               string tmptok = lex.GetString();
-               // test the different insets
-               if (tmptok == "Quotes") {
-                       Inset * inset = new InsetQuotes;
-                       inset->Read(this, lex);
-                       par->InsertChar(pos, LyXParagraph::META_INSET);
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
-                       ++pos;
-#if 0
-               } else if (tmptok == "\\i") {
-                       Inset * inset = new InsetLatexAccent;
-                       inset->Read(this, lex);
-                       par->InsertChar(pos, LyXParagraph::META_INSET);
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
-                       ++pos;
-#endif
-               } else if (tmptok == "External") {
-                       Inset * inset = new InsetExternal;
-                       inset->Read(this, lex);
-                       par->InsertChar(pos, LyXParagraph::META_INSET);
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
-                       ++pos;
-               } else if (tmptok == "FormulaMacro") {
-                       Inset * inset = new InsetFormulaMacro;
-                       inset->Read(this, lex);
-                       par->InsertChar(pos, LyXParagraph::META_INSET);
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
-                       ++pos;
-               } else if (tmptok == "Formula") {
-                       Inset * inset = new InsetFormula;
-                       inset->Read(this, lex);
-                       par->InsertChar(pos, LyXParagraph::META_INSET);
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
-                       ++pos;
-               } else if (tmptok == "Figure") {
-                       Inset * inset = new InsetFig(100, 100, this);
-                       inset->Read(this, lex);
-                       par->InsertChar(pos, LyXParagraph::META_INSET);
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
-                       ++pos;
-               } else if (tmptok == "Info") {
-                       Inset * inset = new InsetInfo;
-                       inset->Read(this, lex);
-                       par->InsertChar(pos, LyXParagraph::META_INSET);
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
-                       ++pos;
-               } else if (tmptok == "Include") {
-                       Inset * inset = new InsetInclude(string(), this);
-                       inset->Read(this, lex);
-                       par->InsertChar(pos, LyXParagraph::META_INSET);
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
-                       ++pos;
-               } else if (tmptok == "ERT") {
-                       Inset * inset = new InsetERT();
-                       inset->Read(this, lex);
-                       par->InsertChar(pos, LyXParagraph::META_INSET);
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
-                       ++pos;
-               } else if (tmptok == "Tabular") {
-                       Inset * inset = new InsetTabular(this);
-                       inset->Read(this, lex);
-                       par->InsertChar(pos, LyXParagraph::META_INSET);
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
-                       ++pos;
-               } else if (tmptok == "Text") {
-                       Inset * inset = new InsetText();
-                       inset->Read(this, lex);
-                       par->InsertChar(pos, LyXParagraph::META_INSET);
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
-                       ++pos;
-               } else if (tmptok == "Foot") {
-                       Inset * inset = new InsetFoot();
-                       inset->Read(this, lex);
-                       par->InsertChar(pos, LyXParagraph::META_INSET);
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
-                       ++pos;
-               } else if (tmptok == "GRAPHICS") {
-                       Inset * inset = new InsetGraphics;
-                               //inset->Read(this, lex);
-                       par->InsertChar(pos, LyXParagraph::META_INSET);
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
-               } else if (tmptok == "LatexCommand") {
-                       InsetCommand inscmd;
-                       inscmd.Read(this, lex);
-                       Inset * inset = 0;
-                       if (inscmd.getCmdName() == "cite") {
-                               inset = new InsetCitation(inscmd.getContents(), inscmd.getOptions());
-                       } else if (inscmd.getCmdName() == "bibitem") {
-                               lex.printError("Wrong place for bibitem");
-                               inset = inscmd.Clone();
-                       } else if (inscmd.getCmdName() == "BibTeX") {
-                               inset = new InsetBibtex(inscmd.getContents(), inscmd.getOptions(), this);
-                       } else if (inscmd.getCmdName() == "index") {
-                               inset = new InsetIndex(inscmd.getContents());
-                       } else if (inscmd.getCmdName() == "include") {
-                               inset = new InsetInclude(inscmd.getContents(), this);
-                       } else if (inscmd.getCmdName() == "label") {
-                               inset = new InsetLabel(inscmd.getCommand());
-                       } else if (inscmd.getCmdName() == "url"
-                                  || inscmd.getCmdName() == "htmlurl") {
-                               inset = new InsetUrl(inscmd.getCommand());
-                       } else if (inscmd.getCmdName() == "ref"
-                                  || inscmd.getCmdName() == "pageref"
-                                  || inscmd.getCmdName() == "vref"
-                                  || inscmd.getCmdName() == "vpageref"
-                                  || inscmd.getCmdName() == "prettyref") {
-                               if (!inscmd.getOptions().empty() || !inscmd.getContents().empty()) {
-                                       inset = new InsetRef(inscmd, this);
-                               }
-                       } else if (inscmd.getCmdName() == "tableofcontents") {
-                               inset = new InsetTOC(this);
-                       } else if (inscmd.getCmdName() == "listoffigures") {
-                               inset = new InsetLOF(this);
-                       } else if (inscmd.getCmdName() == "listofalgorithms") {
-                               inset = new InsetLOA(this);
-                       } else if (inscmd.getCmdName() == "listoftables") {
-                               inset = new InsetLOT(this);
-                       } else if (inscmd.getCmdName() == "printindex") {
-                               inset = new InsetPrintIndex(this);
-                       } else if (inscmd.getCmdName() == "lyxparent") {
-                               inset = new InsetParent(inscmd.getContents(), this);
-                       }
-                              
-                       if (inset) {
-                               par->InsertChar(pos, LyXParagraph::META_INSET);
-                               par->InsertInset(pos, inset);
-                               par->SetFont(pos, font);
-                               ++pos;
-                       }
-               }
+               readInset(lex, par, pos, font);
        } else if (token == "\\SpecialChar") {
                LyXLayout const & layout =
                        textclasslist.Style(params.textclass, 
@@ -909,16 +859,13 @@ Buffer::parseSingleLyXformat2Token(LyXLex & lex, LyXParagraph *& par,
                // Insets don't make sense in a free-spacing context! ---Kayvan
                if (layout.free_spacing) {
                        if (lex.IsOK()) {
-                               string next_token;
                                lex.next();
-                               next_token = lex.GetString();
+                               string next_token = lex.GetString();
                                if (next_token == "\\-") {
-                                       par->InsertChar(pos, '-');
-                                       par->SetFont(pos, font);
+                                       par->InsertChar(pos, '-', font);
                                } else if (next_token == "\\protected_separator"
                                        || next_token == "~") {
-                                       par->InsertChar(pos, ' ');
-                                       par->SetFont(pos, font);
+                                       par->InsertChar(pos, ' ', font);
                                } else {
                                        lex.printError("Token `$$Token' "
                                                       "is in free space "
@@ -929,29 +876,23 @@ Buffer::parseSingleLyXformat2Token(LyXLex & lex, LyXParagraph *& par,
                } else {
                        Inset * inset = new InsetSpecialChar;
                        inset->Read(this, lex);
-                       par->InsertChar(pos, LyXParagraph::META_INSET); 
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
+                       par->InsertInset(pos, inset, font);
                }
                ++pos;
        } else if (token == "\\newline") {
-               par->InsertChar(pos, LyXParagraph::META_NEWLINE);
-               par->SetFont(pos, font);
+               par->InsertChar(pos, LyXParagraph::META_NEWLINE, font);
                ++pos;
        } else if (token == "\\LyXTable") {
-#ifdef USE_TABULAR_INSETS
+#ifdef NEW_TABULAR
                Inset * inset = new InsetTabular(this);
                inset->Read(this, lex);
-               par->InsertChar(pos, LyXParagraph::META_INSET);
-               par->InsertInset(pos, inset);
-               par->SetFont(pos, font);
+               par->InsertInset(pos, inset, font);
                ++pos;
 #else
                par->table = new LyXTable(lex);
 #endif
        } else if (token == "\\hfill") {
-               par->InsertChar(pos, LyXParagraph::META_HFILL);
-               par->SetFont(pos, font);
+               par->InsertChar(pos, LyXParagraph::META_HFILL, font);
                ++pos;
        } else if (token == "\\protected_separator") { // obsolete
                // This is a backward compability thingie. (Lgb)
@@ -962,46 +903,197 @@ Buffer::parseSingleLyXformat2Token(LyXLex & lex, LyXParagraph *& par,
                                            par->GetLayout());
 
                if (layout.free_spacing) {
-                       par->InsertChar(pos, ' ');
-                       par->SetFont(pos, font);
+                       par->InsertChar(pos, ' ', font);
                } else {
                        Inset * inset = new InsetSpecialChar(InsetSpecialChar::PROTECTED_SEPARATOR);
-                       par->InsertChar(pos, LyXParagraph::META_INSET);
-                       par->InsertInset(pos, inset);
-                       par->SetFont(pos, font);
+                       par->InsertInset(pos, inset, font);
                }
                ++pos;
        } else if (token == "\\bibitem") {  // ale970302
-               if (!par->bibkey)
-                       par->bibkey = new InsetBibKey;
+               if (!par->bibkey) {
+                       InsetCommandParams p( "bibitem" );
+                       par->bibkey = new InsetBibKey(p);
+               }
                par->bibkey->Read(this, lex);                   
-       }else if (token == "\\backslash") {
-               par->InsertChar(pos, '\\');
-               par->SetFont(pos, font);
+       } else if (token == "\\backslash") {
+               par->InsertChar(pos, '\\', font);
                ++pos;
-       }else if (token == "\\the_end") {
+       } else if (token == "\\the_end") {
                the_end_read = true;
        } else {
                // This should be insurance for the future: (Asger)
                lex.printError("Unknown token `$$Token'. "
                               "Inserting as text.");
-               for(string::const_iterator cit = token.begin();
-                   cit != token.end(); ++cit) {
-                       par->InsertChar(pos, (*cit));
-                       par->SetFont(pos, font);
+               string::const_iterator cit = token.begin();
+               string::const_iterator end = token.end();
+               for(; cit != end; ++cit) {
+                       par->InsertChar(pos, (*cit), font);
                        ++pos;
                }
        }
        return the_end_read;
 }
 
-bool Buffer::readFile(LyXLex & lex, LyXParagraph * par)
+
+void Buffer::readInset(LyXLex & lex, LyXParagraph *& par,
+                      int & pos, LyXFont & font)
 {
-       string token;
+       // consistency check
+       if (lex.GetString() != "\\begin_inset") {
+               lyxerr << "Buffer::readInset: Consistency check failed."
+                      << endl;
+       }
+       
+       lex.next();
+       string tmptok = lex.GetString();
+       last_inset_read = tmptok;
+       // test the different insets
+       if (tmptok == "Quotes") {
+               Inset * inset = new InsetQuotes;
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "External") {
+               Inset * inset = new InsetExternal;
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "FormulaMacro") {
+               Inset * inset = new InsetFormulaMacro;
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "Formula") {
+               Inset * inset = new InsetFormula;
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "Figure") {
+               Inset * inset = new InsetFig(100, 100, this);
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "Info") {
+               Inset * inset = new InsetInfo;
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "Include") {
+               InsetCommandParams p( "Include" );
+               Inset * inset = new InsetInclude(p, this);
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "ERT") {
+               Inset * inset = new InsetERT;
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "Tabular") {
+               Inset * inset = new InsetTabular(this);
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "Text") {
+               Inset * inset = new InsetText;
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "Foot") {
+               Inset * inset = new InsetFoot;
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "Marginal") {
+               Inset * inset = new InsetMarginal;
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "Minipage") {
+               Inset * inset = new InsetMinipage;
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "Float") {
+               lex.next();
+               string tmptok = lex.GetString();
+               Inset * inset = new InsetFloat(tmptok);
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "List") {
+               Inset * inset = new InsetList;
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "Theorem") {
+               Inset * inset = new InsetList;
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "Caption") {
+               Inset * inset = new InsetCaption;
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "GRAPHICS") {
+               Inset * inset = new InsetGraphics;
+               inset->Read(this, lex);
+               par->InsertInset(pos, inset, font);
+               ++pos;
+       } else if (tmptok == "LatexCommand") {
+               InsetCommandParams inscmd;
+               inscmd.Read(lex);
+               Inset * inset = 0;
+               if (inscmd.getCmdName() == "cite") {
+                       inset = new InsetCitation(inscmd);
+               } else if (inscmd.getCmdName() == "bibitem") {
+                       lex.printError("Wrong place for bibitem");
+                       inset = new InsetBibKey(inscmd);
+               } else if (inscmd.getCmdName() == "BibTeX") {
+                       inset = new InsetBibtex(inscmd, this);
+               } else if (inscmd.getCmdName() == "index") {
+                       inset = new InsetIndex(inscmd);
+               } else if (inscmd.getCmdName() == "include") {
+                       inset = new InsetInclude(inscmd, this);
+               } else if (inscmd.getCmdName() == "label") {
+                       inset = new InsetLabel(inscmd);
+               } else if (inscmd.getCmdName() == "url"
+                          || inscmd.getCmdName() == "htmlurl") {
+                       inset = new InsetUrl(inscmd);
+               } else if (inscmd.getCmdName() == "ref"
+                          || inscmd.getCmdName() == "pageref"
+                          || inscmd.getCmdName() == "vref"
+                          || inscmd.getCmdName() == "vpageref"
+                          || inscmd.getCmdName() == "prettyref") {
+                       if (!inscmd.getOptions().empty()
+                           || !inscmd.getContents().empty()) {
+                               inset = new InsetRef(inscmd, this);
+                       }
+               } else if (inscmd.getCmdName() == "tableofcontents"
+                          || inscmd.getCmdName() == "listofalgorithms"
+                          || inscmd.getCmdName() == "listoffigures"
+                          || inscmd.getCmdName() == "listoftables") {
+                       inset = new InsetTOC(inscmd);
+               } else if (inscmd.getCmdName() == "printindex") {
+                       inset = new InsetPrintIndex(inscmd);
+               } else if (inscmd.getCmdName() == "lyxparent") {
+                       inset = new InsetParent(inscmd, this);
+               }
+               
+               if (inset) {
+                       par->InsertInset(pos, inset, font);
+                       ++pos;
+               }
+       }
+}
+
 
+bool Buffer::readFile(LyXLex & lex, LyXParagraph * par)
+{
        if (lex.IsOK()) {
                lex.next();
-               token = lex.GetString();
+               string token(lex.GetString());
                if (token == "\\lyxformat") { // the first token _must_ be...
                        lex.next();
                        format = lex.GetFloat();
@@ -1211,9 +1303,18 @@ void Buffer::writeFileAscii(string const & fname, int linelen)
        char c, footnoteflag = 0, depth = 0;
        string tmp;
        LyXParagraph::size_type i;
-       int j, h, ltype = 0, ltype_depth = 0,
-               * clen = 0, actcell = 0, actpos = 0, cell = 0, cells = 0,
-               currlinelen = 0;
+       int j;
+       int ltype = 0;
+       int ltype_depth = 0;
+       int actcell = 0;
+       int actpos = 0;
+#ifndef NEW_TABULAR
+       int h;
+       int * clen = 0;
+       int cell = 0;
+       int cells = 0;
+#endif
+       int currlinelen = 0;
        long fpos = 0;
        bool ref_printed = false;
 
@@ -1228,10 +1329,17 @@ void Buffer::writeFileAscii(string const & fname, int linelen)
        while (par) {
                int noparbreak = 0;
                int islatex = 0;
-               if (par->footnoteflag != LyXParagraph::NO_FOOTNOTE ||
-                   !par->previous ||
-                   par->previous->footnoteflag == LyXParagraph::NO_FOOTNOTE){
-        
+               if (
+#ifndef NEW_INSETS
+                       par->footnoteflag != LyXParagraph::NO_FOOTNOTE ||
+#endif
+                   !par->previous
+#ifndef NEW_INSETS
+                   || par->previous->footnoteflag == LyXParagraph::NO_FOOTNOTE
+#endif
+                       ){
+
+#ifndef NEW_INSETS
                        /* begins a footnote environment ? */ 
                        if (footnoteflag != par->footnoteflag) {
                                footnoteflag = par->footnoteflag;
@@ -1244,6 +1352,7 @@ void Buffer::writeFileAscii(string const & fname, int linelen)
                                        currlinelen += j;
                                }
                        }
+#endif
         
                        /* begins or ends a deeper area ?*/ 
                        if (depth != par->depth) {
@@ -1299,10 +1408,14 @@ void Buffer::writeFileAscii(string const & fname, int linelen)
         
                        /* what about the alignment */ 
                } else {
+#ifndef NEW_INSETS
                        /* dummy layout, that means a footnote ended */ 
                        footnoteflag = LyXParagraph::NO_FOOTNOTE;
                        ofs << ") ";
                        noparbreak = 1;
+#else
+                       lyxerr << "Should this ever happen?" << endl;
+#endif
                }
       
                //LyXLayout const & layout =
@@ -1313,14 +1426,6 @@ void Buffer::writeFileAscii(string const & fname, int linelen)
 #ifndef NEW_TABULAR
                /* It might be a table */ 
                if (par->table){
-#if 0
-                       if (!lyxrc.ascii_roff_command.empty() &&
-                            lyxrc.ascii_roff_command != "none") {
-                               RoffAsciiTable(ofs, par);
-                               par = par->next;
-                               continue;
-                       }
-#endif
                        cell = 1;
                         actcell = 0;
                        cells = par->table->columns;
@@ -1613,7 +1718,8 @@ void Buffer::makeLaTeXFile(string const & fname,
                
                string options; // the document class options.
                
-               if (tokenPos(tclass.opt_fontsize(), '|', params.fontsize) >= 0) {
+               if (tokenPos(tclass.opt_fontsize(),
+                            '|', params.fontsize) >= 0) {
                        // only write if existing in list (and not default)
                        options += params.fontsize;
                        options += "pt,";
@@ -1671,7 +1777,7 @@ void Buffer::makeLaTeXFile(string const & fname,
                
                // language should be a parameter to \documentclass
                bool use_babel = false;
-               if (params.language_info->RightToLeft()) // This seems necessary
+               if (params.language_info->lang() == "hebrew") // This seems necessary
                        features.UsedLanguages.insert(default_language);
                if (params.language != "default" ||
                    !features.UsedLanguages.empty() ) {
@@ -1710,12 +1816,32 @@ void Buffer::makeLaTeXFile(string const & fname,
                            << "]{fontenc}\n";
                        texrow.newline();
                }
-               if (params.inputenc != "default") {
+
+               if (params.inputenc == "auto") {
+                       string doc_encoding =
+                               params.language_info->encoding()->LatexName();
+
+                       // Create a list with all the input encodings used 
+                       // in the document
+                       set<string> encodings;
+                       for (LaTeXFeatures::LanguageList::const_iterator it =
+                                    features.UsedLanguages.begin();
+                            it != features.UsedLanguages.end(); ++it)
+                               if ((*it)->encoding()->LatexName() != doc_encoding)
+                                       encodings.insert((*it)->encoding()->LatexName());
+
+                       ofs << "\\usepackage[";
+                       for (set<string>::const_iterator it = encodings.begin();
+                            it != encodings.end(); ++it)
+                               ofs << *it << ",";
+                       ofs << doc_encoding << "]{inputenc}\n";
+                       texrow.newline();
+               } else if (params.inputenc != "default") {
                        ofs << "\\usepackage[" << params.inputenc
                            << "]{inputenc}\n";
                        texrow.newline();
                }
-               
+
                // At the very beginning the text parameters.
                if (params.paperpackage != BufferParams::PACKAGE_NONE) {
                        switch (params.paperpackage) {
@@ -1825,7 +1951,8 @@ void Buffer::makeLaTeXFile(string const & fname,
                        texrow.newline();
                }
 
-               if (tokenPos(tclass.opt_pagestyle(), '|', params.pagestyle) >= 0) {
+               if (tokenPos(tclass.opt_pagestyle(),
+                            '|', params.pagestyle) >= 0) {
                        if (params.pagestyle == "fancy") {
                                ofs << "\\usepackage{fancyhdr}\n";
                                texrow.newline();
@@ -1881,16 +2008,15 @@ void Buffer::makeLaTeXFile(string const & fname,
                }
 
                // Now insert the LyX specific LaTeX commands...
-               string preamble, tmppreamble;
 
                // The optional packages;
-               preamble = features.getPackages();
+               string preamble(features.getPackages());
 
                // this might be useful...
-               preamble += "\n\\makeatletter\n\n";
+               preamble += "\n\\makeatletter\n";
 
                // Some macros LyX will need
-               tmppreamble = features.getMacros();
+               string tmppreamble(features.getMacros());
 
                if (!tmppreamble.empty()) {
                        preamble += "\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% "
@@ -1913,7 +2039,7 @@ void Buffer::makeLaTeXFile(string const & fname,
                                + params.preamble + '\n';
                }
 
-               preamble += "\\makeatother\n\n";
+               preamble += "\\makeatother\n";
 
                // Itemize bullet settings need to be last in case the user
                // defines their own bullets that use a package included
@@ -1957,8 +2083,7 @@ void Buffer::makeLaTeXFile(string const & fname,
                ofs << preamble;
 
                // make the body.
-               ofs << "\\begin{document}\n\n";
-               texrow.newline();
+               ofs << "\\begin{document}\n";
                texrow.newline();
        } // only_body
        lyxerr.debug() << "preamble finished, now the body." << endl;
@@ -2009,11 +2134,12 @@ void Buffer::makeLaTeXFile(string const & fname,
        lyxerr.debug() << "Finished making latex file." << endl;
 }
 
+
 //
 // LaTeX all paragraphs from par to endpar, if endpar == 0 then to the end
 //
-void Buffer::latexParagraphs(ostream & ofs, LyXParagraph *par,
-                            LyXParagraph *endpar, TexRow & texrow) const
+void Buffer::latexParagraphs(ostream & ofs, LyXParagraph * par,
+                            LyXParagraph * endpar, TexRow & texrow) const
 {
        bool was_title = false;
        bool already_title = false;
@@ -2035,9 +2161,11 @@ void Buffer::latexParagraphs(ostream & ofs, LyXParagraph *par,
                        tmpholder = 0;
                }
 #endif
+#ifndef NEW_INSETS
                if (par->IsDummy())
                        lyxerr[Debug::LATEX] << "Error in latexParagraphs."
                                             << endl;
+#endif
                LyXLayout const & layout =
                        textclasslist.Style(params.textclass,
                                            par->layout);
@@ -2061,11 +2189,18 @@ void Buffer::latexParagraphs(ostream & ofs, LyXParagraph *par,
                ftcount = -1;
                if (layout.isEnvironment()
                     || par->pextra_type != LyXParagraph::PEXTRA_NONE) {
-                       par = par->TeXEnvironment(this, params, ofs, texrow,
-                                                 ftnote, ft_texrow, ftcount);
+                       par = par->TeXEnvironment(this, params, ofs, texrow
+#ifndef NEW_INSETS
+                                                 ,ftnote, ft_texrow, ftcount
+#endif
+                               );
                } else {
-                       par = par->TeXOnePar(this, params, ofs, texrow, false,
-                                            ftnote, ft_texrow, ftcount);
+                       par = par->TeXOnePar(this, params, ofs, texrow, false
+#ifndef NEW_INSETS
+                                            ,
+                                            ftnote, ft_texrow, ftcount
+#endif
+                               );
                }
 
                // Write out what we've generated...
@@ -2104,6 +2239,7 @@ void Buffer::latexParagraphs(ostream & ofs, LyXParagraph *par,
        }
 }
 
+
 bool Buffer::isLatex() const
 {
        return textclasslist.TextClass(params.textclass).outputType() == LATEX;
@@ -2149,10 +2285,12 @@ void Buffer::sgmlCloseTag(ostream & os, int depth,
 }
 
 
-void Buffer::makeLinuxDocFile(string const & fname, int column)
+void Buffer::makeLinuxDocFile(string const & fname, bool nice, bool body_only)
 {
        LyXParagraph * par = paragraph;
 
+       niceFile = nice; // this will be used by Insetincludes.
+
        string top_element = textclasslist.LatexnameOfClass(params.textclass);
        string environment_stack[10];
         string item_name;
@@ -2165,35 +2303,48 @@ void Buffer::makeLinuxDocFile(string const & fname, int column)
                WriteAlert(_("LYX_ERROR:"), _("Cannot write file"), fname);
                return;
        }
-   
-       tex_code_break_column = column; 
+
+        LyXTextClass const & tclass =
+               textclasslist.TextClass(params.textclass);
+
+       LaTeXFeatures features(params, tclass.numLayouts());
+       validate(features);
+
+       //if(nice)
+       tex_code_break_column = lyxrc.ascii_linelen;
+       //else
+       //tex_code_break_column = 0;
+
        texrow.reset();
-   
-       if (params.preamble.empty()) {
-               ofs << "<!doctype linuxdoc system>\n\n";
-       }
-       else {
-               ofs << "<!doctype linuxdoc system \n [ "
-                   << params.preamble << " \n]>\n\n";
+
+       if (!body_only) {
+               string sgml_includedfiles=features.getIncludedFiles();
+
+               if (params.preamble.empty() && sgml_includedfiles.empty()) {
+                       ofs << "<!doctype linuxdoc system>\n\n";
+               } else {
+                       ofs << "<!doctype linuxdoc system [ "
+                           << params.preamble << sgml_includedfiles << " \n]>\n\n";
+               }
+
+               if(params.options.empty())
+                       sgmlOpenTag(ofs, 0, top_element);
+               else {
+                       string top = top_element;
+                       top += " ";
+                       top += params.options;
+                       sgmlOpenTag(ofs, 0, top);
+               }
        }
 
        ofs << "<!-- "  << LYX_DOCVERSION 
            << " created this file. For more info see http://www.lyx.org/"
            << " -->\n";
 
-       if(params.options.empty())
-               sgmlOpenTag(ofs, 0, top_element);
-       else {
-               string top = top_element;
-               top += " ";
-               top += params.options;
-               sgmlOpenTag(ofs, 0, top);
-       }
-
        while (par) {
                int desc_on = 0; // description mode
                LyXLayout const & style =
-                       textclasslist.Style(users->buffer()->params.textclass,
+                       textclasslist.Style(params.textclass,
                                            par->layout);
 
                // treat <toc> as a special case for compatibility with old code
@@ -2205,7 +2356,9 @@ void Buffer::makeLinuxDocFile(string const & fname, int column)
                                sgmlOpenTag(ofs, depth, temp);
 
                                par = par->next;
+#ifndef NEW_INSETS
                                linuxDocHandleFootnote(ofs, par, depth);
+#endif
                                continue;
                        }
                }
@@ -2286,13 +2439,17 @@ void Buffer::makeLinuxDocFile(string const & fname, int column)
                        break;
                }
 
+#ifndef NEW_INSETS
                do {
+#endif
                        SimpleLinuxDocOnePar(ofs, par, desc_on, depth);
 
                        par = par->next;
+#ifndef NEW_INSETS
                        linuxDocHandleFootnote(ofs, par, depth);
                }
                while(par && par->IsDummy());
+#endif
 
                ofs << "\n";
                // write closing SGML tags
@@ -2314,14 +2471,17 @@ void Buffer::makeLinuxDocFile(string const & fname, int column)
        if(!environment_stack[depth].empty())
                sgmlCloseTag(ofs, depth, environment_stack[depth]);
 
-       ofs << "\n\n";
-       sgmlCloseTag(ofs, 0, top_element);
+       if (!body_only) {
+               ofs << "\n\n";
+               sgmlCloseTag(ofs, 0, top_element);
+       }
 
        ofs.close();
        // How to check for successful close
 }
 
 
+#ifndef NEW_INSETS
 void Buffer::linuxDocHandleFootnote(ostream & os, LyXParagraph * & par,
                                    int const depth)
 {
@@ -2334,6 +2494,7 @@ void Buffer::linuxDocHandleFootnote(ostream & os, LyXParagraph * & par,
                par = par->next;
        }
 }
+#endif
 
 
 void Buffer::DocBookHandleCaption(ostream & os, string & inner_tag,
@@ -2341,8 +2502,11 @@ void Buffer::DocBookHandleCaption(ostream & os, string & inner_tag,
                                  LyXParagraph * & par)
 {
        LyXParagraph * tpar = par;
-       while (tpar && (tpar->footnoteflag != LyXParagraph::NO_FOOTNOTE) &&
-              (tpar->layout != textclasslist.NumberOfLayout(params.textclass,
+       while (tpar
+#ifndef NEW_INSETS
+              && (tpar->footnoteflag != LyXParagraph::NO_FOOTNOTE)
+#endif
+              && (tpar->layout != textclasslist.NumberOfLayout(params.textclass,
                                                             "Caption").second))
                tpar = tpar->next;
        if (tpar &&
@@ -2359,6 +2523,7 @@ void Buffer::DocBookHandleCaption(ostream & os, string & inner_tag,
 }
 
 
+#ifndef NEW_INSETS
 void Buffer::DocBookHandleFootnote(ostream & os, LyXParagraph * & par,
                                   int const depth)
 {
@@ -2466,6 +2631,7 @@ void Buffer::DocBookHandleFootnote(ostream & os, LyXParagraph * & par,
        if(!extra_par.empty()) os << extra_par;
        if(!tag.empty()) sgmlCloseTag(os, depth, tag);
 }
+#endif
 
 
 // push a tag in a style stack
@@ -2560,7 +2726,11 @@ void Buffer::SimpleLinuxDocOnePar(ostream & os, LyXParagraph * par,
             i < par->size(); ++i) {
 
                // handle quote tag
-               if (i == main_body && !par->IsDummy()) {
+               if (i == main_body
+#ifndef NEW_INSETS
+                   && !par->IsDummy()
+#endif
+                       ) {
                        if (main_body > 0)
                                font1 = style.font;
                }
@@ -2572,31 +2742,29 @@ void Buffer::SimpleLinuxDocOnePar(ostream & os, LyXParagraph * par,
                        case 0:
                                if (font2.family() == LyXFont::TYPEWRITER_FAMILY) {
                                        push_tag(os, "tt", stack_num, stack);
-                                       family_type= 1;
+                                       family_type = 1;
                                }
                                else if (font2.family() == LyXFont::SANS_FAMILY) {
                                        push_tag(os, "sf", stack_num, stack);
-                                       family_type= 2;
+                                       family_type = 2;
                                }
                                break;
                        case 1:
                                pop_tag(os, "tt", stack_num, stack);
                                if (font2.family() == LyXFont::SANS_FAMILY) {
                                        push_tag(os, "sf", stack_num, stack);
-                                       family_type= 2;
-                               }
-                               else {
-                                       family_type= 0;
+                                       family_type = 2;
+                               } else {
+                                       family_type = 0;
                                }
                                break;
                        case 2:
                                pop_tag(os, "sf", stack_num, stack);
                                if (font2.family() == LyXFont::TYPEWRITER_FAMILY) {
                                        push_tag(os, "tt", stack_num, stack);
-                                       family_type= 1;
-                               }
-                               else {
-                                       family_type= 0;
+                                       family_type = 1;
+                               } else {
+                                       family_type = 0;
                                }
                        }
                }
@@ -2606,8 +2774,7 @@ void Buffer::SimpleLinuxDocOnePar(ostream & os, LyXParagraph * par,
                        if (font2.series() == LyXFont::BOLD_SERIES) {
                                push_tag(os, "bf", stack_num, stack);
                                is_bold = true;
-                       }
-                       else if (is_bold) {
+                       } else if (is_bold) {
                                pop_tag(os, "bf", stack_num, stack);
                                is_bold = false;
                        }
@@ -2619,31 +2786,28 @@ void Buffer::SimpleLinuxDocOnePar(ostream & os, LyXParagraph * par,
                        case 0:
                                if (font2.shape() == LyXFont::ITALIC_SHAPE) {
                                        push_tag(os, "it", stack_num, stack);
-                                       shape_type= 1;
-                               }
-                               else if (font2.shape() == LyXFont::SLANTED_SHAPE) {
+                                       shape_type = 1;
+                               } else if (font2.shape() == LyXFont::SLANTED_SHAPE) {
                                        push_tag(os, "sl", stack_num, stack);
-                                       shape_type= 2;
+                                       shape_type = 2;
                                }
                                break;
                        case 1:
                                pop_tag(os, "it", stack_num, stack);
                                if (font2.shape() == LyXFont::SLANTED_SHAPE) {
                                        push_tag(os, "sl", stack_num, stack);
-                                       shape_type= 2;
-                               }
-                               else {
-                                       shape_type= 0;
+                                       shape_type = 2;
+                               } else {
+                                       shape_type = 0;
                                }
                                break;
                        case 2:
                                pop_tag(os, "sl", stack_num, stack);
                                if (font2.shape() == LyXFont::ITALIC_SHAPE) {
                                        push_tag(os, "it", stack_num, stack);
-                                       shape_type= 1;
-                               }
-                               else {
-                                       shape_type= 0;
+                                       shape_type = 1;
+                               } else {
+                                       shape_type = 0;
                                }
                        }
                }
@@ -2659,15 +2823,17 @@ void Buffer::SimpleLinuxDocOnePar(ostream & os, LyXParagraph * par,
                }
 
                c = par->GetChar(i);
-      
+
+               if (c == LyXParagraph::META_INSET) {
+                       inset = par->GetInset(i);
+                       inset->Linuxdoc(this, os);
+               }
+
                if (font2.latex() == LyXFont::ON) {
                        // "TeX"-Mode on == > SGML-Mode on.
                        if (c != '\0')
                                os << c; // see LaTeX-Generation...
                        ++char_line_count;
-               } else if (c == LyXParagraph::META_INSET) {
-                       inset = par->GetInset(i);
-                       inset->Linuxdoc(this, os);
                } else {
                        string sgml_string;
                        if (par->linuxDocConvertChar(c, sgml_string)
@@ -2680,13 +2846,11 @@ void Buffer::SimpleLinuxDocOnePar(ostream & os, LyXParagraph * par,
                                        linux_doc_line_break(os, char_line_count, 6);
                                        os << "</tag>";
                                        desc_on = 2;
-                               }
-                               else  {
+                               } else  {
                                        linux_doc_line_break(os, char_line_count, 1);
                                        os << c;
                                }
-                       }
-                       else {
+                       } else {
                                os << sgml_string;
                                char_line_count += sgml_string.length();
                        }
@@ -2725,11 +2889,8 @@ void Buffer::SimpleLinuxDocOnePar(ostream & os, LyXParagraph * par,
 void Buffer::LinuxDocError(LyXParagraph * par, int pos,
                           char const * message) 
 {
-       InsetError * new_inset;
-
        // insert an error marker in text
-       new_inset = new InsetError(message);
-       par->InsertChar(pos, LyXParagraph::META_INSET);
+       InsetError * new_inset = new InsetError(message);
        par->InsertInset(pos, new_inset);
 }
 
@@ -2741,10 +2902,12 @@ void Buffer::LinuxDocError(LyXParagraph * par, int pos,
 
 enum { MAX_NEST_LEVEL = 25};
 
-void Buffer::makeDocBookFile(string const & fname, int column)
+void Buffer::makeDocBookFile(string const & fname, bool nice, bool only_body)
 {
        LyXParagraph * par = paragraph;
 
+       niceFile = nice; // this will be used by Insetincludes.
+
        string top_element= textclasslist.LatexnameOfClass(params.textclass);
        // Please use a real stack.
        string environment_stack[MAX_NEST_LEVEL];
@@ -2758,8 +2921,16 @@ void Buffer::makeDocBookFile(string const & fname, int column)
        string c_depth, c_params, tmps;
 
        int depth = 0; // paragraph depth
+        LyXTextClass const & tclass =
+               textclasslist.TextClass(params.textclass);
 
-       tex_code_break_column = column; 
+       LaTeXFeatures features(params, tclass.numLayouts());
+       validate(features);
+
+       //if(nice)
+       tex_code_break_column = lyxrc.ascii_linelen;
+       //else
+       //tex_code_break_column = 0;
 
        ofstream ofs(fname.c_str());
        if (!ofs) {
@@ -2769,30 +2940,35 @@ void Buffer::makeDocBookFile(string const & fname, int column)
    
        texrow.reset();
 
-       ofs << "<!doctype " << top_element
-           << " public \"-//OASIS//DTD DocBook V3.1//EN\"";
+       if(!only_body) {
+               string sgml_includedfiles=features.getIncludedFiles();
 
-       if (params.preamble.empty())
-               ofs << ">\n\n";
-       else
-               ofs << "\n [ " << params.preamble << " \n]>\n\n";
+               ofs << "<!doctype " << top_element
+                   << " public \"-//OASIS//DTD DocBook V3.1//EN\"";
 
-       ofs << "<!-- DocBook file was created by " << LYX_DOCVERSION 
-           << "\n  See http://www.lyx.org/ for more information -->\n";
+               if (params.preamble.empty() && sgml_includedfiles.empty())
+                       ofs << ">\n\n";
+               else
+                       ofs << "\n [ " << params.preamble 
+                           << sgml_includedfiles << " \n]>\n\n";
 
-       if(params.options.empty())
-               sgmlOpenTag(ofs, 0, top_element);
-       else {
-               string top = top_element;
-               top += " ";
-               top += params.options;
-               sgmlOpenTag(ofs, 0, top);
+               if(params.options.empty())
+                       sgmlOpenTag(ofs, 0, top_element);
+               else {
+                       string top = top_element;
+                       top += " ";
+                       top += params.options;
+                       sgmlOpenTag(ofs, 0, top);
+               }
        }
 
+       ofs << "<!-- DocBook file was created by " << LYX_DOCVERSION 
+           << "\n  See http://www.lyx.org/ for more information -->\n";
+
        while (par) {
                int desc_on = 0; // description mode
                LyXLayout const & style =
-                       textclasslist.Style(users->buffer()->params.textclass,
+                       textclasslist.Style(params.textclass,
                                            par->layout);
 
                // environment tag closing
@@ -2859,19 +3035,16 @@ void Buffer::makeDocBookFile(string const & fname, int column)
                                                if(!command_stack[j].empty())
                                                        sgmlCloseTag(ofs, j, command_stack[j]);
                                        command_depth= command_base= cmd_depth;
-                               }
-                               else if(cmd_depth <= command_depth) {
+                               } else if(cmd_depth <= command_depth) {
                                        for(int j = command_depth;
                                            j >= cmd_depth; --j)
 
                                                if(!command_stack[j].empty())
                                                        sgmlCloseTag(ofs, j, command_stack[j]);
                                        command_depth= cmd_depth;
-                               }
-                               else
+                               } else
                                        command_depth= cmd_depth;
-                       }
-                       else {
+                       } else {
                                command_depth = command_base = cmd_depth;
                                command_flag = true;
                        }
@@ -2941,8 +3114,7 @@ void Buffer::makeDocBookFile(string const & fname, int column)
                                item_name= "term";
                                sgmlOpenTag(ofs, depth + 1 + command_depth,
                                            item_name);
-                       }
-                       else {
+                       } else {
                                item_name= "para";
                                sgmlOpenTag(ofs, depth + 1 + command_depth,
                                            item_name);
@@ -2954,16 +3126,19 @@ void Buffer::makeDocBookFile(string const & fname, int column)
                        break;
                }
 
+#ifndef NEW_INSETS
                do {
+#endif
                        string extra_par;
                        SimpleDocBookOnePar(ofs, extra_par, par, desc_on,
                                            depth + 1 + command_depth);
                        par = par->next;
+#ifndef NEW_INSETS
                        DocBookHandleFootnote(ofs, par,
                                              depth + 1 + command_depth);
                }
                while(par && par->IsDummy());
-
+#endif
                string end_tag;
                // write closing SGML tags
                switch(style.latextype) {
@@ -3014,8 +3189,10 @@ void Buffer::makeDocBookFile(string const & fname, int column)
                if(!command_stack[j].empty())
                        sgmlCloseTag(ofs, j, command_stack[j]);
 
-       ofs << "\n\n";
-       sgmlCloseTag(ofs, 0, top_element);
+       if (!only_body) {
+               ofs << "\n\n";
+               sgmlCloseTag(ofs, 0, top_element);
+       }
 
        ofs.close();
        // How to check for successful close
@@ -3174,7 +3351,6 @@ int Buffer::runLaTeX()
 
        // Always generate the LaTeX file
        makeLaTeXFile(name, org_path, false);
-       markDviDirty();
 
        // do the LaTex run(s)
        TeXErrors terr;
@@ -3199,7 +3375,6 @@ int Buffer::runLaTeX()
        } else {
                //no errors or any other things to think about so:
                users->owner()->getMiniBuffer()->Set(_("Done"));
-               markDviClean();
        }
 
        // if we removed error insets before we ran LaTeX or if we inserted
@@ -3238,13 +3413,10 @@ int Buffer::runLiterate()
        users->owner()->getMiniBuffer()->Set(_("Running Literate..."));   
 
        // Remove all error insets
-       bool a = users->removeAutoInsets();
+       bool removedErrorInsets = users->removeAutoInsets();
 
        // generate the Literate file if necessary
-       if (!isDviClean() || a) {
-               makeLaTeXFile(lit_name, org_path, false);
-               markDviDirty();
-       }
+       makeLaTeXFile(lit_name, org_path, false);
 
        string latex_command = lyxrc.pdf_mode ?
                lyxrc.pdflatex_command : lyxrc.latex_command;
@@ -3270,12 +3442,11 @@ int Buffer::runLiterate()
        } else {
                //no errors or any other things to think about so:
                users->owner()->getMiniBuffer()->Set(_("Done"));
-               markDviClean();
        }
 
        // if we removed error insets before we ran LaTeX or if we inserted
        // error insets after we ran LaTeX this must be run:
-        if (a || (res & Literate::ERRORS)){
+        if (removedErrorInsets || (res & Literate::ERRORS)){
                 users->redraw();
                 users->fitCursor();
                 //users->updateScrollbar();
@@ -3309,10 +3480,10 @@ int Buffer::buildProgram()
         users->owner()->getMiniBuffer()->Set(_("Building Program..."));   
  
         // Remove all error insets
-        bool a = users->removeAutoInsets();
+        bool removedErrorInsets = users->removeAutoInsets();
  
         // generate the LaTeX file if necessary
-        if (!isNwClean() || a) {
+        if (!isNwClean() || removedErrorInsets) {
                 makeLaTeXFile(lit_name, org_path, false);
                 markNwDirty();
         }
@@ -3346,7 +3517,7 @@ int Buffer::buildProgram()
         // if we removed error insets before we ran Literate/Build or
        // if we inserted error insets after we ran Literate/Build this
        // must be run:
-       if (a || (res & Literate::ERRORS)){
+       if (removedErrorInsets || (res & Literate::ERRORS)){
                users->redraw();
                users->fitCursor();
                //users->updateScrollbar();
@@ -3379,13 +3550,10 @@ int Buffer::runChktex()
        users->owner()->getMiniBuffer()->Set(_("Running chktex..."));
 
        // Remove all error insets
-       bool a = users->removeAutoInsets();
+       bool removedErrorInsets = users->removeAutoInsets();
 
        // Generate the LaTeX file if neccessary
-       if (!isDviClean() || a) {
-               makeLaTeXFile(name, org_path, false);
-               markDviDirty();
-       }
+       makeLaTeXFile(name, org_path, false);
 
        TeXErrors terr;
        Chktex chktex(lyxrc.chktex_command, name, filepath);
@@ -3401,7 +3569,7 @@ int Buffer::runChktex()
 
        // if we removed error insets before we ran chktex or if we inserted
        // error insets after we ran chktex, this must be run:
-       if (a || res){
+       if (removedErrorInsets || res){
                users->redraw();
                users->fitCursor();
                //users->updateScrollbar();
@@ -3412,160 +3580,6 @@ int Buffer::runChktex()
 }
 
 
-#if 0
-void Buffer::RoffAsciiTable(ostream & os, LyXParagraph * par)
-{
-       LyXFont font1(LyXFont::ALL_INHERIT,params.language_info);
-       LyXFont font2;
-       Inset * inset;
-       LyXParagraph::size_type i;
-       int j, cell = 0;
-       char c;
-       
-       string fname1 = TmpFileName(string(), "RAT1");
-       string fname2 = TmpFileName(string(), "RAT2");
-
-       ofstream ofs(fname1.c_str());
-       if (!ofs) {
-               WriteAlert(_("LYX_ERROR:"),
-                          _("Cannot open temporary file:"), fname1);
-               return;
-       }
-       par->table->RoffEndOfCell(ofs, -1);
-       for (i = 0; i < par->size(); ++i) {
-               c = par->GetChar(i);
-               if (par->table->IsContRow(cell)) {
-                       if (c == LyXParagraph::META_NEWLINE)
-                               ++cell;
-                       continue;
-               }
-               font2 = par->GetFontSettings(i);
-               if (font1.latex() != font2.latex()) {
-                       if (font2.latex() != LyXFont::OFF)
-                               continue;
-               }
-               switch (c) {
-               case LyXParagraph::META_INSET:
-                       if ((inset = par->GetInset(i))) {
-#ifdef HAVE_SSTREAM
-                               stringstresm ss(ios::in | ios::out);
-                               inset->Ascii(this, ss);
-                               ss.seekp(0);
-                               ss.get(c);
-                               while (!ss) {
-                                       if (c == '\\')
-                                               ofs << "\\\\";
-                                       else
-                                               ofs << c;
-                                       ss.get(c);
-                               }
-#else
-                               strstream ss;
-                               inset->Ascii(this, ss);
-                               ss.seekp(0);
-                               ss.get(c);
-                               while (!ss) {
-                                       if (c == '\\')
-                                               ofs << "\\\\";
-                                       else
-                                               ofs << c;
-                                       ss.get(c);
-                               }
-                               delete [] ss.str();
-#endif
-                       }
-                       break;
-               case LyXParagraph::META_NEWLINE:
-                       if (par->table->CellHasContRow(cell)>= 0)
-                               par->RoffContTableRows(ofs, i+1, cell);
-                       par->table->RoffEndOfCell(ofs, cell);
-                       ++cell;
-                       break;
-               case LyXParagraph::META_HFILL: 
-                       break;
-               case '\\': 
-                       ofs << "\\\\";
-                       break;
-               default:
-                       if (c != '\0')
-                               ofs << c;
-                       else if (c == '\0')
-                               lyxerr.debug()
-                                       << "RoffAsciiTable:"
-                                       " NULL char in structure." << endl;
-                       break;
-               }
-       }
-       par->table->RoffEndOfCell(ofs, cell);
-       ofs.close();
-       string cmd = lyxrc.ascii_roff_command + " >" + fname2;
-       cmd = subst(cmd, "$$FName", fname1);
-       Systemcalls one(Systemcalls::System, cmd);
-       if (!(lyxerr.debugging(Debug::ROFF))) {
-               remove(fname1.c_str());
-       }
-       ifstream ifs(fname2.c_str());
-       if (!ifs) {
-               WriteFSAlert(_("Error! Can't open temporary file:"), fname2);
-               return;
-       }
-       // now output the produced file
-       os << "\n\n";
-       ifs.get(c);
-       if (!ifs)
-               WriteAlert(_("Error!"),
-                          _("Error executing *roff command on table"));
-       // overread leading blank lines
-       while(!ifs && (c == '\n'))
-               ifs.get(c);
-       while(!ifs) {
-               for(j = 0; j < par->depth; ++j)
-                       os << "  ";
-               while(!ifs && (c != '\n')) {
-                       os << c;
-                       ifs.get(c);
-               }
-               os << '\n';
-               // overread trailing blank lines
-               while(!ifs && (c == '\n'))
-                       ifs.get(c);
-       }
-       ifs.close();
-       remove(fname2.c_str());
-}
-#endif
-
-       
-/// changed Heinrich Bauer, 23/03/98
-bool Buffer::isDviClean() const
-{
-  if (lyxrc.use_tempdir)
-    return dvi_clean_tmpd;
-  else
-    return dvi_clean_orgd;
-}
-
-/// changed Heinrich Bauer, 23/03/98
-void Buffer::markDviClean()
-{
-  if (lyxrc.use_tempdir)
-    dvi_clean_tmpd = true;
-  else
-    dvi_clean_orgd = true;
-}
-
-
-/// changed Heinrich Bauer, 23/03/98
-void Buffer::markDviDirty()
-{
-  if (lyxrc.use_tempdir)
-    dvi_clean_tmpd = false;
-  else
-    dvi_clean_orgd = false;
-}
-
-
 void Buffer::validate(LaTeXFeatures & features) const
 {
        LyXParagraph * par = paragraph;
@@ -3697,6 +3711,7 @@ vector<vector<Buffer::TocItem> > Buffer::getTocList()
        vector<vector<TocItem> > l(4);
        LyXParagraph * par = paragraph;
        while (par) {
+#ifndef NEW_INSETS
                if (par->footnoteflag != LyXParagraph::NO_FOOTNOTE) {
                        if (textclasslist.Style(params.textclass, 
                                                par->GetLayout()).labeltype
@@ -3723,6 +3738,7 @@ vector<vector<Buffer::TocItem> > Buffer::getTocList()
                                }
                        }
                } else if (!par->IsDummy()) {
+#endif
                        char labeltype = textclasslist.Style(params.textclass, 
                                                             par->GetLayout()).labeltype;
       
@@ -3737,7 +3753,9 @@ vector<vector<Buffer::TocItem> > Buffer::getTocList()
                                tmp.str =  par->String(this, true);
                                l[TOC_TOC].push_back(tmp);
                        }
+#ifndef NEW_INSETS
                }
+#endif
                par = par->next;
        }
        return l;
@@ -3758,7 +3776,7 @@ vector<pair<string,string> > Buffer::getBibkeyList()
        LyXParagraph * par = paragraph;
        while (par) {
                if (par->bibkey)
-                       keys.push_back(pair<string,string>(par->bibkey->getContents(),
+                       keys.push_back(pair<string, string>(par->bibkey->getContents(),
                                                           par->String(this, false)));
                par = par->next;
        }
@@ -3842,6 +3860,23 @@ bool Buffer::Dispatch(int action, string const & argument)
 }
 
 
+void Buffer::resize()
+{
+       /// resize the BufferViews!
+       if (users)
+               users->resize();
+}
+
+
+void Buffer::resizeInsets(BufferView * bv)
+{
+       /// then remove all LyXText in text-insets
+       LyXParagraph * par = paragraph;
+       for(;par;par = par->next) {
+           par->resizeInsetsLyXText(bv);
+       }
+}
+
 void Buffer::ChangeLanguage(Language const * from, Language const * to)
 {