]> git.lyx.org Git - lyx.git/blobdiff - src/paragraph.C
Dekels tabular/textinset patches
[lyx.git] / src / paragraph.C
index 0a3cf917546003f4538e81d3965d7f7eed127c76..e0d4cb9ec28f0ae613c566f60ca9982a8a4c71cd 100644 (file)
@@ -23,6 +23,7 @@
 #include "lyxrc.h"
 #include "layout.h"
 #include "tex-strings.h"
+#include "buffer.h"
 #include "bufferparams.h"
 #include "support/FileInfo.h"
 #include "support/LAssert.h"
@@ -49,8 +50,8 @@ using std::reverse;
 int tex_code_break_column = 72;  // needs non-zero initialization. set later.
 // this is a bad idea, but how can LyXParagraph find its buffer to get
 // parameters? (JMarc)
-extern BufferView * current_view;
-extern string bibitemWidest(BufferView *);
+
+extern string bibitemWidest(Buffer const *);
 
 // this is a minibuffer
 static char minibuffer_char;
@@ -58,6 +59,8 @@ static LyXFont minibuffer_font;
 static Inset * minibuffer_inset;
 
 
+extern BufferView * current_view;
+
 // Initialization of the counter for the paragraph id's,
 // declared in lyxparagraph.h
 unsigned int LyXParagraph::paragraph_id = 0;
@@ -65,8 +68,9 @@ unsigned int LyXParagraph::paragraph_id = 0;
 
 LyXParagraph::LyXParagraph()
 {
+#ifndef HAVE_ROPE
        text.reserve(500); // is this number too big?
-
+#endif
        for (int i = 0; i < 10; ++i) setCounter(i , 0);
        appendix = false;
        enumdepth = 0;
@@ -79,11 +83,6 @@ LyXParagraph::LyXParagraph()
 #endif
        align = LYX_ALIGN_BLOCK;
 
-#ifndef NEW_TABULAR
-       /* table stuff -- begin*/ 
-       table = 0;
-       /* table stuff -- end*/
-#endif
        inset_owner = 0;
        id_ = paragraph_id++;
         bibkey = 0; // ale970302
@@ -94,9 +93,11 @@ LyXParagraph::LyXParagraph()
 // This konstruktor inserts the new paragraph in a list.
 LyXParagraph::LyXParagraph(LyXParagraph * par)
 {
+#ifndef HAVE_ROPE
        text.reserve(500);
-       par->text.resize(par->text.size());
-
+#endif
+       par->fitToSize();
+       
        for (int i = 0; i < 10; ++i) setCounter(i, 0);
        appendix = false;
        enumdepth = 0;
@@ -111,11 +112,6 @@ LyXParagraph::LyXParagraph(LyXParagraph * par)
 #ifndef NEW_INSETS
        footnoteflag = LyXParagraph::NO_FOOTNOTE;
        footnotekind = LyXParagraph::FOOTNOTE;
-#endif
-#ifndef NEW_TABULAR
-       /* table stuff -- begin*/ 
-       table = 0;
-       /* table stuff -- end*/
 #endif
        inset_owner = 0;
        id_ = paragraph_id++;
@@ -246,18 +242,12 @@ void LyXParagraph::writeFile(Buffer const * buf, ostream & os,
                footflag = LyXParagraph::NO_FOOTNOTE;
        }
 #endif
-#ifndef NEW_TABULAR
-       // It might be a table.
-       if (table){
-               os << "\\LyXTable\n";
-               table->Write(os);
-       }
-#endif
+
        // bibitem  ale970302
        if (bibkey)
                bibkey->Write(buf, os);
 
-       LyXFont font1(LyXFont::ALL_INHERIT, params.language_info);
+       LyXFont font1(LyXFont::ALL_INHERIT, params.language);
 
        int column = 0;
        for (size_type i = 0; i < size(); ++i) {
@@ -274,7 +264,7 @@ void LyXParagraph::writeFile(Buffer const * buf, ostream & os,
                        font1 = font2;
                }
 
-               value_type c = GetChar(i);
+               value_type const c = GetChar(i);
                switch (c) {
                case META_INSET:
                {
@@ -357,7 +347,7 @@ void LyXParagraph::validate(LaTeXFeatures & features) const
        features.layout[GetLayout()] = true;
 
        // then the fonts
-       Language const * doc_language = params.language_info;
+       Language const * doc_language = params.language;
        
        for (FontList::const_iterator cit = fontlist.begin();
             cit != fontlist.end(); ++cit) {
@@ -383,10 +373,10 @@ void LyXParagraph::validate(LaTeXFeatures & features) const
                }
 
                Language const * language = (*cit).font.language();
-               if (language != doc_language) {
+               if (language->babel() != doc_language->babel()) {
                        features.UsedLanguages.insert(language);
                        lyxerr[Debug::LATEX] << "Found language "
-                                            << language->lang() << endl;
+                                            << language->babel() << endl;
                }
        }
 
@@ -397,8 +387,6 @@ void LyXParagraph::validate(LaTeXFeatures & features) const
                        (*cit).inset->Validate(features);
        }
 
-        if (table && table->IsLongTable())
-               features.longtable = true;
         if (pextra_type == PEXTRA_INDENT)
                 features.LyXParagraphIndent = true;
         if (pextra_type == PEXTRA_FLOATFLT)
@@ -411,8 +399,6 @@ void LyXParagraph::validate(LaTeXFeatures & features) const
         if (params.paragraph_separation == BufferParams::PARSEP_INDENT
             && pextra_type == LyXParagraph::PEXTRA_MINIPAGE)
                features.NeedLyXMinipageIndent = true;
-        if (table && table->NeedRotating())
-               features.rotating = true;
 #ifndef NEW_INSETS
        if (footnoteflag != NO_FOOTNOTE && footnotekind == ALGORITHM)
                features.algorithm = true;
@@ -421,15 +407,17 @@ void LyXParagraph::validate(LaTeXFeatures & features) const
 
 
 // First few functions needed for cut and paste and paragraph breaking.
-void LyXParagraph::CopyIntoMinibuffer(BufferParams const & bparams,
+void LyXParagraph::CopyIntoMinibuffer(Buffer const & buffer,
                                      LyXParagraph::size_type pos) const
 {
+       BufferParams bparams = buffer.params;
+
        minibuffer_char = GetChar(pos);
        minibuffer_font = GetFontSettings(bparams, pos);
        minibuffer_inset = 0;
        if (minibuffer_char == LyXParagraph::META_INSET) {
                if (GetInset(pos)) {
-                       minibuffer_inset = GetInset(pos)->Clone();
+                       minibuffer_inset = GetInset(pos)->Clone(buffer);
                } else {
                        minibuffer_inset = 0;
                        minibuffer_char = ' ';
@@ -531,11 +519,6 @@ LyXParagraph::~LyXParagraph()
             it != insetlist.end(); ++it) {
                delete (*it).inset;
        }
-#ifndef NEW_TABULAR
-       /* table stuff -- begin*/ 
-       delete table;
-       /* table stuff -- end*/
-#endif
 
         // ale970302
        delete bibkey;
@@ -547,19 +530,23 @@ LyXParagraph::~LyXParagraph()
 
 void LyXParagraph::Erase(LyXParagraph::size_type pos)
 {
+#ifndef NEW_INSETS
        // > because last is the next unused position, and you can 
        // use it if you want
        if (pos > size()) {
-#ifndef NEW_INSETS
                if (next && next->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) 
                        NextAfterFootnote()->Erase(pos - text.size() - 1);
                else 
-#endif
                        lyxerr.debug() << "ERROR (LyXParagraph::Erase): "
                                "position does not exist." << endl;
                return;
        }
+#else
+       Assert(pos < size());
+#endif
+#ifndef NEW_INSETS
        if (pos < size()) { // last is free for insertation, but should be empty
+#endif
                // if it is an inset, delete the inset entry 
                if (text[pos] == LyXParagraph::META_INSET) {
                        // find the entry
@@ -573,8 +560,11 @@ void LyXParagraph::Erase(LyXParagraph::size_type pos)
                                insetlist.erase(it);
                        }
                }
+#ifndef HAVE_ROPE
                text.erase(text.begin() + pos);
-
+#else
+               text.erase(text.mutable_begin() + pos);
+#endif
                // Erase entries in the tables.
                FontTable search_font(pos, LyXFont());
                
@@ -584,44 +574,48 @@ void LyXParagraph::Erase(LyXParagraph::size_type pos)
                                    search_font, matchFT());
                if (it != fontlist.end() && (*it).pos == pos &&
                    (pos == 0 || 
-                    (it != fontlist.begin() && (*(it-1)).pos == pos - 1))) {
+                    (it != fontlist.begin() && (*(it - 1)).pos == pos - 1))) {
                        // If it is a multi-character font
                        // entry, we just make it smaller
                        // (see update below), otherwise we
                        // should delete it.
-                       unsigned int i = it - fontlist.begin();
+                       unsigned int const i = it - fontlist.begin();
                        fontlist.erase(fontlist.begin() + i);
                        it = fontlist.begin() + i;
                        if (i > 0 && i < fontlist.size() &&
-                           fontlist[i-1].font == fontlist[i].font) {
-                               fontlist.erase(fontlist.begin() + i-1);
-                               it = fontlist.begin() + i-1;
+                           fontlist[i - 1].font == fontlist[i].font) {
+                               fontlist.erase(fontlist.begin() + i - 1);
+                               it = fontlist.begin() + i - 1;
                        }
                }
 
                // Update all other entries.
-               for (; it != fontlist.end(); ++it)
+               FontList::iterator fend = fontlist.end();
+               for (; it != fend; ++it)
                        --(*it).pos;
 
                // Update the inset table.
                InsetTable search_inset(pos, 0);
+               InsetList::iterator lend = insetlist.end();
                for (InsetList::iterator it =
                             upper_bound(insetlist.begin(),
-                                        insetlist.end(),
+                                        lend,
                                         search_inset, matchIT());
-                    it != insetlist.end(); ++it)
+                    it != lend; ++it)
                        --(*it).pos;
+#ifndef NEW_INSETS
        } else {
                lyxerr << "ERROR (LyXParagraph::Erase): "
                        "can't erase non-existant char." << endl;
        }
+#endif
 }
 
 
 void LyXParagraph::InsertChar(LyXParagraph::size_type pos,
                              LyXParagraph::value_type c)
 {
-       LyXFont f(LyXFont::ALL_INHERIT);
+       LyXFont const f(LyXFont::ALL_INHERIT);
        InsertChar(pos, c, f);
 }
 
@@ -630,21 +624,27 @@ void LyXParagraph::InsertChar(LyXParagraph::size_type pos,
                              LyXParagraph::value_type c,
                              LyXFont const & font)
 {
+#ifndef NEW_INSETS
        // > because last is the next unused position, and you can 
        // use it if you want
        if (pos > size()) {
-#ifndef NEW_INSETS
                if (next
                    && next->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) 
                        NextAfterFootnote()->InsertChar(pos - text.size() - 1,
                                                        c);
                else 
-#endif
                        lyxerr.debug() << "ERROR (LyXParagraph::InsertChar): "
                                "position does not exist." << endl;
                return;
        }
+#else
+       Assert(pos <= size());
+#endif
+#ifndef HAVE_ROPE
        text.insert(text.begin() + pos, c);
+#else
+       text.insert(pos, c);
+#endif
        // Update the font table.
        FontTable search_font(pos, LyXFont());
        for (FontList::iterator it = lower_bound(fontlist.begin(),
@@ -668,7 +668,7 @@ void LyXParagraph::InsertChar(LyXParagraph::size_type pos,
 void LyXParagraph::InsertInset(LyXParagraph::size_type pos,
                               Inset * inset)
 {
-       LyXFont f(LyXFont::ALL_INHERIT);
+       LyXFont const f(LyXFont::ALL_INHERIT);
        InsertInset(pos, inset, f);
 }
 
@@ -678,21 +678,23 @@ void LyXParagraph::InsertInset(LyXParagraph::size_type pos,
 {
        Assert(inset);
        
+#ifndef NEW_INSETS
        // > because last is the next unused position, and you can 
        // use it if you want
        if (pos > size()) {
-#ifndef NEW_INSETS
                if (next
                    && next->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) 
                        NextAfterFootnote()
                                ->InsertInset(pos - text.size() - 1,
                                              inset, font);
                else
-#endif
                        lyxerr << "ERROR (LyXParagraph::InsertInset): " 
                                "position does not exist: " << pos << endl;
                return;
        }
+#else
+       Assert(pos <= size());
+#endif
        
        InsertChar(pos, META_INSET, font);
        Assert(text[pos] == META_INSET);
@@ -714,7 +716,7 @@ void LyXParagraph::InsertInset(LyXParagraph::size_type pos,
 
 bool LyXParagraph::InsertInsetAllowed(Inset * inset)
 {
-       lyxerr << "LyXParagraph::InsertInsetAllowed" << endl;
+       //lyxerr << "LyXParagraph::InsertInsetAllowed" << endl;
        
        if (inset_owner)
                return inset_owner->InsertInsetAllowed(inset);
@@ -724,20 +726,22 @@ bool LyXParagraph::InsertInsetAllowed(Inset * inset)
 
 Inset * LyXParagraph::GetInset(LyXParagraph::size_type pos)
 {
-       if (pos >= size()) {
 #ifndef NEW_INSETS
+       if (pos >= size()) {
                if (next
                    && next->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) 
                        return NextAfterFootnote()
                                ->GetInset(pos - text.size() - 1);
                else
-#endif
                        lyxerr << "ERROR (LyXParagraph::GetInset): "
                                "position does not exist: "
                               << pos << endl;
                
                return 0;
        }
+#else
+       Assert(pos < size());
+#endif
        // Find the inset.
        InsetTable search_inset(pos, 0);
        InsetList::iterator it = lower_bound(insetlist.begin(),
@@ -761,20 +765,22 @@ Inset * LyXParagraph::GetInset(LyXParagraph::size_type pos)
 
 Inset const * LyXParagraph::GetInset(LyXParagraph::size_type pos) const
 {
-       if (pos >= size()) {
 #ifndef NEW_INSETS
+       if (pos >= size()) {
                if (next
                    && next->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) 
                        return NextAfterFootnote()
                                ->GetInset(pos - text.size() - 1);
                else
-#endif
                        lyxerr << "ERROR (LyXParagraph::GetInset): "
                                "position does not exist: "
                               << pos << endl;
 
                return 0;
        }
+#else
+       Assert(pos < size());
+#endif
        // Find the inset.
        InsetTable search_inset(pos, 0);
        InsetList::const_iterator cit = lower_bound(insetlist.begin(),
@@ -797,28 +803,34 @@ Inset const * LyXParagraph::GetInset(LyXParagraph::size_type pos) const
 
 // Gets uninstantiated font setting at position.
 // Optimized after profiling. (Asger)
-LyXFont LyXParagraph::GetFontSettings(BufferParams const & bparams,
+LyXFont const LyXParagraph::GetFontSettings(BufferParams const & bparams,
                                      LyXParagraph::size_type pos) const
 {
+#ifdef NEW_INSETS
+       Assert(pos <= size());
+#endif
+#ifndef NEW_INSETS
        if (pos < size()) {
+#endif
                FontTable search_font(pos, LyXFont());
                FontList::const_iterator cit = lower_bound(fontlist.begin(),
                                                    fontlist.end(),
                                                    search_font, matchFT());
                if (cit != fontlist.end())
                        return (*cit).font;
+#ifndef NEW_INSETS
        }
+#endif
+#ifndef NEW_INSETS
        // > because last is the next unused position, and you can 
        // use it if you want
        else if (pos > size()) {
-#ifndef NEW_INSETS
                if (next
                    && next->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) 
                        return NextAfterFootnote()
                                ->GetFontSettings(bparams,
                                                  pos - text.size() - 1);
                else
-#endif
                        // Why is it an error to ask for the font of a
                        // position that does not exist? Would it be
                        // enough for this to be enabled on debug?
@@ -830,14 +842,21 @@ LyXFont LyXParagraph::GetFontSettings(BufferParams const & bparams,
                               << ")" << endl;
        } else if (pos > 0) {
                return GetFontSettings(bparams, pos - 1);
-       } else // pos = size() = 0
-               return LyXFont(LyXFont::ALL_INHERIT, getParLanguage(bparams));
+       }
+#else
+       if (pos == size() && size())
+               return GetFontSettings(bparams, pos - 1);
+#endif
+       //else
+       // pos = size() = 0
+       return LyXFont(LyXFont::ALL_INHERIT, getParLanguage(bparams));
 
-       return LyXFont(LyXFont::ALL_INHERIT);
+       //return LyXFont(LyXFont::ALL_INHERIT);
 }
 
+
 // Gets uninstantiated font setting at position 0
-LyXFont LyXParagraph::GetFirstFontSettings() const
+LyXFont const LyXParagraph::GetFirstFontSettings() const
 {
        if (size() > 0) {
                if (!fontlist.empty())
@@ -859,7 +878,7 @@ LyXFont LyXParagraph::GetFirstFontSettings() const
 // the true picture of the buffer. (Asger)
 // If position is -1, we get the layout font of the paragraph.
 // If position is -2, we get the font of the manual label of the paragraph.
-LyXFont LyXParagraph::getFont(BufferParams const & bparams,
+LyXFont const LyXParagraph::getFont(BufferParams const & bparams,
                              LyXParagraph::size_type pos) const
 {
        LyXFont tmpfont;
@@ -938,83 +957,30 @@ LyXParagraph::HighestFontInRange(LyXParagraph::size_type startpos,
 
 
 LyXParagraph::value_type
-LyXParagraph::GetChar(LyXParagraph::size_type pos)
+LyXParagraph::GetChar(LyXParagraph::size_type pos) const
 {
-       Assert(pos >= 0);
-
-       if (pos < size()) {
-               return text[pos];
-       }
-       // > because last is the next unused position, and you can 
-       // use it if you want
-       else if (pos > size()) {
-#ifndef NEW_INSETS
-               if (next && next->footnoteflag != LyXParagraph::NO_FOOTNOTE) 
-                       return NextAfterFootnote()
-                               ->GetChar(pos - text.size() - 1);
-               else
-#endif
-                       {
-                       lyxerr << "ERROR (LyXParagraph::GetChar): "
-                               "position does not exist."
-                              << pos << " (" << static_cast<int>(pos)
-                              << ")\n";
-                       // Assert(false); // This triggers sometimes...
-                       // Why?
-               }
-               
-               return '\0';
-       }
-       
 #ifndef NEW_INSETS
-       else {
-               // We should have a footnote environment.
-               if (!next || next->footnoteflag == LyXParagraph::NO_FOOTNOTE) {
-                       // Notice that LyX does request the
-                       // last char from time to time. (Asger)
-                       //lyxerr << "ERROR (LyXParagraph::GetChar): "
-                       //      "expected footnote." << endl;
-                       return '\0';
-               }
-               switch (next->footnotekind) {
-               case LyXParagraph::FOOTNOTE:
-                       return LyXParagraph::META_FOOTNOTE;
-               case LyXParagraph::MARGIN:
-                       return LyXParagraph::META_MARGIN;
-               case LyXParagraph::FIG:
-               case LyXParagraph::WIDE_FIG:
-                       return LyXParagraph::META_FIG;
-               case LyXParagraph::TAB:
-               case LyXParagraph::WIDE_TAB:
-                       return LyXParagraph::META_TAB;
-               case LyXParagraph::ALGORITHM:
-                       return LyXParagraph::META_ALGORITHM;
-               }
-               return '\0'; // to shut up gcc
-       }
+       Assert(pos >= 0);
 #else
-       return '\0'; // to shut up gcc
+       Assert(pos <= size());
+       if (!size() || pos == size()) return '\0';
 #endif
-}
-
-
-LyXParagraph::value_type
-LyXParagraph::GetChar(LyXParagraph::size_type pos) const
-{
-       Assert(pos >= 0);
 
+#ifndef NEW_INSETS
        if (pos < size()) {
+#endif
                return text[pos];
+#ifndef NEW_INSETS
        }
+#endif
+#ifndef NEW_INSETS
        // > because last is the next unused position, and you can 
        // use it if you want
        else if (pos > size()) {
-#ifndef NEW_INSETS
                if (next && next->footnoteflag != LyXParagraph::NO_FOOTNOTE) 
                        return NextAfterFootnote()
                                ->GetChar(pos - text.size() - 1);
                else
-#endif
                        {
                        lyxerr << "ERROR (LyXParagraph::GetChar const): "
                                "position does not exist."
@@ -1023,9 +989,7 @@ LyXParagraph::GetChar(LyXParagraph::size_type pos) const
                        Assert(false);
                }
                return '\0';
-       }
-#ifndef NEW_INSETS
-       else {
+       } else {
                // We should have a footnote environment.
                if (!next || next->footnoteflag == LyXParagraph::NO_FOOTNOTE) {
                        // Notice that LyX does request the
@@ -1050,17 +1014,14 @@ LyXParagraph::GetChar(LyXParagraph::size_type pos) const
                }
                return '\0'; // to shut up gcc
        }
-#else
-       return '\0'; // to shut up gcc
-       
 #endif
 }
 
 
 // return an string of the current word, and the end of the word in lastpos.
-string LyXParagraph::GetWord(LyXParagraph::size_type & lastpos) const
+string const LyXParagraph::GetWord(LyXParagraph::size_type & lastpos) const
 {
-       Assert(lastpos>=0);
+       Assert(lastpos >= 0);
 
        // the current word is defined as starting at the first character
        // from the immediate left of lastpospos which meets the definition
@@ -1103,7 +1064,10 @@ string LyXParagraph::GetWord(LyXParagraph::size_type & lastpos) const
 
 }
 
+
+#ifdef NEW_INSETS
+#warning Remember to get rid of this one. (Lgb)
+#endif
 LyXParagraph::size_type LyXParagraph::Last() const
 {
 #ifndef NEW_INSETS
@@ -1117,38 +1081,37 @@ LyXParagraph::size_type LyXParagraph::Last() const
 }
 
 
+#ifndef NEW_INSETS
 LyXParagraph * LyXParagraph::ParFromPos(LyXParagraph::size_type pos)
 {
        // > because last is the next unused position, and you can 
        // use it if you want
        if (pos > size()) {
-#ifndef NEW_INSETS
                if (next
                    && next->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) 
                        return NextAfterFootnote()
                                ->ParFromPos(pos - text.size() - 1);
                else
-#endif
                        lyxerr << "ERROR (LyXParagraph::ParFromPos): "
                                "position does not exist." << endl;
                return this;
        } else
                return this;
 }
+#endif
 
 
+#ifndef NEW_INSETS
 int LyXParagraph::PositionInParFromPos(LyXParagraph::size_type pos) const
 {
        // > because last is the next unused position, and you can 
        // use it if you want
        if (pos > size()) {
-#ifndef NEW_INSETS
                if (next
                    && next->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) 
                        return NextAfterFootnote()
                                ->PositionInParFromPos(pos - text.size() - 1);
                else
-#endif
                        lyxerr <<
                                "ERROR (LyXParagraph::PositionInParFromPos): "
                                "position does not exist." << endl;
@@ -1157,26 +1120,29 @@ int LyXParagraph::PositionInParFromPos(LyXParagraph::size_type pos) const
        else
                return pos;
 }
+#endif
 
 
 void LyXParagraph::SetFont(LyXParagraph::size_type pos,
                           LyXFont const & font)
 {
+#ifndef NEW_INSETS
        // > because last is the next unused position, and you can 
        // use it if you want
        if (pos > size()) {
-#ifndef NEW_INSETS
                if (next &&
                    next->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) {
                        NextAfterFootnote()->SetFont(pos - text.size() - 1,
                                                     font);
                } else
-#endif
                        lyxerr << "ERROR (LyXParagraph::SetFont): "
                                "position does not exist." << endl;
                
                return;
        }
+#else
+       Assert(pos <= size());
+#endif
 
        // First, reduce font against layout/label font
        // Update: The SetCharFont() routine in text2.C already
@@ -1201,34 +1167,35 @@ void LyXParagraph::SetFont(LyXParagraph::size_type pos,
        bool end = !notfound && fontlist[i].pos == pos;
        // Is position pos is the end of a font block?
        if (begin && end) { // A single char block
-               if (i+1 < fontlist.size() &&
-                   fontlist[i+1].font == font) {
+               if (i + 1 < fontlist.size() &&
+                   fontlist[i + 1].font == font) {
                        // Merge the singleton block with the next block
                        fontlist.erase(fontlist.begin() + i);
-                       if (i > 0 && fontlist[i-1].font == font)
+                       if (i > 0 && fontlist[i - 1].font == font)
                                fontlist.erase(fontlist.begin() + i-1);
-               } else if (i > 0 && fontlist[i-1].font == font) {
+               } else if (i > 0 && fontlist[i - 1].font == font) {
                        // Merge the singleton block with the previous block
-                       fontlist[i-1].pos = pos;
+                       fontlist[i - 1].pos = pos;
                        fontlist.erase(fontlist.begin() + i);
                } else
                        fontlist[i].font = font;
        } else if (begin) {
-               if (i > 0 && fontlist[i-1].font == font)
-                       fontlist[i-1].pos = pos;
+               if (i > 0 && fontlist[i - 1].font == font)
+                       fontlist[i - 1].pos = pos;
                else
                        fontlist.insert(fontlist.begin() + i,
                                        FontTable(pos, font));
        } else if (end) {
                fontlist[i].pos = pos - 1;
-               if (!(i+1 < fontlist.size() &&
-                     fontlist[i+1].font == font))
-                       fontlist.insert(fontlist.begin() + i+1,
+               if (!(i + 1 < fontlist.size() &&
+                     fontlist[i + 1].font == font))
+                       fontlist.insert(fontlist.begin() + i + 1,
                                        FontTable(pos, font));
        } else { // The general case. The block is splitted into 3 blocks
                fontlist.insert(fontlist.begin() + i, 
                                FontTable(pos - 1, fontlist[i].font));
-               fontlist.insert(fontlist.begin() + i+1, FontTable(pos, font));
+               fontlist.insert(fontlist.begin() + i + 1,
+                               FontTable(pos, font));
        }
 }
 
@@ -1434,16 +1401,21 @@ void LyXParagraph::BreakParagraph(BufferParams const & bparams,
                                  LyXParagraph::size_type pos,
                                  int flag)
 {
-       size_type i, j, pos_end, pos_first;
+       size_type i;
+       size_type j;
        // create a new paragraph
-       LyXParagraph * par = ParFromPos(pos);
 #ifndef NEW_INSETS
+       size_type pos_end;
+       size_type pos_first;
+       LyXParagraph * par = ParFromPos(pos);
        LyXParagraph * firstpar = FirstPhysicalPar();
-#else
-       LyXParagraph * firstpar = this;
-#endif
    
        LyXParagraph * tmp = new LyXParagraph(par);
+#else
+       //LyXParagraph * par = this;
+       //LyXParagraph * firstpar = this;
+       LyXParagraph * tmp = new LyXParagraph(this);
+#endif
 
 #ifndef NEW_INSETS
        tmp->footnoteflag = footnoteflag;
@@ -1451,13 +1423,21 @@ void LyXParagraph::BreakParagraph(BufferParams const & bparams,
 #endif
        // this is an idea for a more userfriendly layout handling, I will
        // see what the users say
-   
+
+#ifndef NEW_INSETS
        // layout stays the same with latex-environments
        if (flag) {
                tmp->SetOnlyLayout(bparams, firstpar->layout);
                tmp->SetLabelWidthString(firstpar->labelwidthstring);
        }
-
+#else
+       // layout stays the same with latex-environments
+       if (flag) {
+               tmp->SetOnlyLayout(bparams, layout);
+               tmp->SetLabelWidthString(labelwidthstring);
+       }
+#endif
+#ifndef NEW_INSETS
        if (Last() > pos || !Last() || flag == 2) {
                tmp->SetOnlyLayout(bparams, firstpar->layout);
                tmp->align = firstpar->align;
@@ -1472,27 +1452,60 @@ void LyXParagraph::BreakParagraph(BufferParams const & bparams,
       
                tmp->depth = firstpar->depth;
                tmp->noindent = firstpar->noindent;
-   
+#else
+       if (Last() > pos || !Last() || flag == 2) {
+               tmp->SetOnlyLayout(bparams, layout);
+               tmp->align = align;
+               tmp->SetLabelWidthString(labelwidthstring);
+      
+               tmp->line_bottom = line_bottom;
+               line_bottom = false;
+               tmp->pagebreak_bottom = pagebreak_bottom;
+               pagebreak_bottom = false;
+               tmp->added_space_bottom = added_space_bottom;
+               added_space_bottom = VSpace(VSpace::NONE);
+      
+               tmp->depth = depth;
+               tmp->noindent = noindent;
+#endif
                // copy everything behind the break-position
                // to the new paragraph
+#ifndef NEW_INSETS
                pos_first = 0;
                while (ParFromPos(pos_first) != par)
                        ++pos_first;
-
                pos_end = pos_first + par->text.size() - 1;
 
+
                for (i = j = pos; i <= pos_end; ++i) {
                        par->CutIntoMinibuffer(bparams, i - pos_first);
                        if (tmp->InsertFromMinibuffer(j - pos))
                                ++j;
                }
-               tmp->text.resize(tmp->text.size());
+
+               tmp->fitToSize();
+
                for (i = pos_end; i >= pos; --i)
                        par->Erase(i - pos_first);
 
-               par->text.resize(par->text.size());
+               par->fitToSize();
+#else
+               size_type pos_end = text.size() - 1;
+               
+               for (i = j = pos; i <= pos_end; ++i) {
+                       CutIntoMinibuffer(bparams, i);
+                       if (tmp->InsertFromMinibuffer(j - pos))
+                               ++j;
+               }
+               tmp->fitToSize();
+               for (i = pos_end; i >= pos; --i)
+                       Erase(i);
+
+               fitToSize();
+#endif
        }
 
+#ifndef NEW_INSETS
        // just an idea of me
        if (!pos) {
                tmp->line_top = firstpar->line_top;
@@ -1507,6 +1520,22 @@ void LyXParagraph::BreakParagraph(BufferParams const & bparams,
                        firstpar->depth = tmp->depth;
                }
        }
+#else
+       // just an idea of me
+       if (!pos) {
+               tmp->line_top = line_top;
+               tmp->pagebreak_top = pagebreak_top;
+               tmp->added_space_top = added_space_top;
+               tmp->bibkey = bibkey;
+               Clear();
+               // layout stays the same with latex-environments
+               if (flag) {
+                       SetOnlyLayout(bparams, tmp->layout);
+                       SetLabelWidthString(tmp->labelwidthstring);
+                       depth = tmp->depth;
+               }
+       }
+#endif
 }
 
 
@@ -1568,17 +1597,17 @@ int LyXParagraph::StripLeadingSpaces(LyXTextClassList::size_type tclass)
                return 0;
        
        int i = 0;
-       if (
 #ifndef NEW_INSETS
-               !IsDummy() &&
+       if (!IsDummy()) {
 #endif
-               !table){
                while (Last()
                       && (IsNewline(0) || IsLineSeparator(0))){
                        Erase(0);
                        ++i;
                }
+#ifndef NEW_INSETS
        }
+#endif
        return i;
 }
 
@@ -1594,19 +1623,14 @@ LyXParagraph * LyXParagraph::Clone() const
        // follow footnotes
        result->layout = layout;
 
-#ifndef NEW_TABULAR
-       /* table stuff -- begin*/ 
-       if (table)
-               result->table = table->Clone();
-       else
-               result->table = 0;
-       /* table stuff -- end*/ 
-#endif
        result->inset_owner = inset_owner;
    
         // ale970302
-        result->bibkey = (bibkey) ? new InsetBibKey(bibkey): 0;
-               
+       if (bibkey)
+               result->bibkey = static_cast<InsetBibKey *>
+                                (bibkey->Clone(*current_view->buffer()));
+       else
+               result->bibkey = 0;
     
        // copy everything behind the break-position to the new paragraph
 
@@ -1615,7 +1639,7 @@ LyXParagraph * LyXParagraph::Clone() const
        result->insetlist = insetlist;
        for (InsetList::iterator it = result->insetlist.begin();
             it != result->insetlist.end(); ++it)
-               (*it).inset = (*it).inset->Clone();
+               (*it).inset = (*it).inset->Clone(*current_view->buffer());
        return result;
 }
 
@@ -1651,10 +1675,6 @@ bool LyXParagraph::HasSameLayout(LyXParagraph const * par) const
                 par->pextra_alignment == pextra_alignment && 
                 par->pextra_hfill == pextra_hfill && 
                 par->pextra_start_minipage == pextra_start_minipage && 
-#ifndef NEW_TABULAR
-               par->table == table && // what means: NO TABLE AT ALL
-#endif
-
                par->noindent == noindent &&
                par->depth == depth);
 }
@@ -1663,6 +1683,7 @@ bool LyXParagraph::HasSameLayout(LyXParagraph const * par) const
 void LyXParagraph::BreakParagraphConservative(BufferParams const & bparams,
                                              LyXParagraph::size_type pos)
 {
+#ifndef NEW_INSETS
        // create a new paragraph
        LyXParagraph * par = ParFromPos(pos);
 
@@ -1686,30 +1707,65 @@ void LyXParagraph::BreakParagraphConservative(BufferParams const & bparams,
                        if (tmp->InsertFromMinibuffer(j - pos))
                                ++j;
                }
-               tmp->text.resize(tmp->text.size());
+
+               tmp->fitToSize();
+
                for (size_type i = pos_end; i >= pos; --i)
                        par->Erase(i - pos_first);
 
-               par->text.resize(par->text.size());
+               par->fitToSize();
+       }
+#else
+       // create a new paragraph
+       LyXParagraph * tmp = new LyXParagraph(this);
+       tmp->MakeSameLayout(this);
+
+       // When can pos > Last()?
+       // I guess pos == Last() is possible.
+       if (Last() > pos) {
+               // copy everything behind the break-position to the new
+               // paragraph
+               size_type pos_end = text.size() - 1;
+
+               size_type i, j;
+               for (i = j = pos; i <= pos_end; ++i) {
+                       CutIntoMinibuffer(bparams, i);
+                       if (tmp->InsertFromMinibuffer(j - pos))
+                               ++j;
+               }
+
+               tmp->fitToSize();
+               
+               for (size_type i = pos_end; i >= pos; --i)
+                       Erase(i);
+
+               fitToSize();
        }
+#endif
 }
    
 
 // Be carefull, this does not make any check at all.
+// This method has wrong name, it combined this par with the next par.
+// In that sense it is the reverse of break paragraph. (Lgb)
 void LyXParagraph::PasteParagraph(BufferParams const & bparams)
 {
        // copy the next paragraph to this one
        LyXParagraph * the_next = Next();
 #ifndef NEW_INSETS   
        LyXParagraph * firstpar = FirstPhysicalPar();
-#else
-       LyXParagraph * firstpar = this;
 #endif
    
        // first the DTP-stuff
+#ifndef NEW_INSETS
        firstpar->line_bottom = the_next->line_bottom;
        firstpar->added_space_bottom = the_next->added_space_bottom;
        firstpar->pagebreak_bottom = the_next->pagebreak_bottom;
+#else
+       line_bottom = the_next->line_bottom;
+       added_space_bottom = the_next->added_space_bottom;
+       pagebreak_bottom = the_next->pagebreak_bottom;
+#endif
 
        size_type pos_end = the_next->text.size() - 1;
        size_type pos_insert = Last();
@@ -1760,13 +1816,13 @@ int LyXParagraph::GetEndLabel(BufferParams const & bparams) const
        int par_depth = GetDepth();
        while (par) {
                LyXTextClass::LayoutList::size_type layout = par->GetLayout();
-               int endlabeltype =
+               int const endlabeltype =
                        textclasslist.Style(bparams.textclass,
                                            layout).endlabeltype;
                if (endlabeltype != END_LABEL_NO_LABEL) {
                        LyXParagraph const * last = this;
 #ifndef NEW_INSETS
-                       iffootnoteflag == NO_FOOTNOTE)
+                       if (footnoteflag == NO_FOOTNOTE)
                                last = LastPhysicalPar();
                        else if (next->footnoteflag == NO_FOOTNOTE)
                                return endlabeltype;
@@ -1844,7 +1900,7 @@ int LyXParagraph::GetFirstCounter(int i) const
 
 
 // the next two functions are for the manual labels
-string LyXParagraph::GetLabelWidthString() const
+string const LyXParagraph::GetLabelWidthString() const
 {
 #ifndef NEW_INSETS
        if (!FirstPhysicalPar()->labelwidthstring.empty())
@@ -1882,12 +1938,7 @@ void LyXParagraph::SetOnlyLayout(BufferParams const & bparams,
        LyXParagraph * npar = 0;
 
        par->layout = new_layout;
-#ifndef NEW_TABULAR
-       /* table stuff -- begin*/ 
-       if (table) 
-               par->layout = 0;
-       /* table stuff -- end*/
-#endif
+
         if (par->pextra_type == PEXTRA_NONE) {
                 if (par->Previous()) {
 #ifndef NEW_INSETS
@@ -1924,15 +1975,14 @@ void LyXParagraph::SetOnlyLayout(BufferParams const & bparams,
                                 p1 = ppar->pextra_width,
                                 p2 = ppar->pextra_widthp;
                         ppar->SetPExtraType(bparams, ppar->pextra_type,
-                                            p1.c_str(), p2.c_str());
+                                            p1, p2);
                 }
                 if ((par->pextra_type == PEXTRA_NONE) &&
                     npar && (npar->pextra_type != PEXTRA_NONE)) {
-                        string
-                                p1 = npar->pextra_width,
-                                p2 = npar->pextra_widthp;
+                        string const p1 = npar->pextra_width;
+                       string const p2 = npar->pextra_widthp;
                         npar->SetPExtraType(bparams, npar->pextra_type,
-                                            p1.c_str(), p2.c_str());
+                                            p1, p2);
                 }
         }
 }
@@ -1957,12 +2007,6 @@ void LyXParagraph::SetLayout(BufferParams const & bparams,
        par->added_space_bottom = VSpace(VSpace::NONE);
        par->spacing.set(Spacing::Default);
 
-#ifndef NEW_TABULAR
-       /* table stuff -- begin*/ 
-       if (table) 
-               par->layout = 0;
-       /* table stuff -- end*/
-#endif
         if (par->pextra_type == PEXTRA_NONE) {
                 if (par->Previous()) {
 #ifndef NEW_INSETS
@@ -1995,19 +2039,17 @@ void LyXParagraph::SetLayout(BufferParams const & bparams,
 #endif
                 }
                 if (ppar && (ppar->pextra_type != PEXTRA_NONE)) {
-                        string
-                                p1 = ppar->pextra_width,
-                                p2 = ppar->pextra_widthp;
+                        string const p1 = ppar->pextra_width;
+                       string const p2 = ppar->pextra_widthp;
                         ppar->SetPExtraType(bparams, ppar->pextra_type,
-                                            p1.c_str(), p2.c_str());
+                                            p1, p2);
                 }
                 if ((par->pextra_type == PEXTRA_NONE) &&
                     npar && (npar->pextra_type != PEXTRA_NONE)) {
-                        string
-                                p1 = npar->pextra_width,
-                                p2 = npar->pextra_widthp;
+                        string const p1 = npar->pextra_width;
+                       string const p2 = npar->pextra_widthp;
                         npar->SetPExtraType(bparams, npar->pextra_type,
-                                            p1.c_str(), p2.c_str());
+                                            p1, p2);
                 }
         }
 }
@@ -2034,7 +2076,8 @@ int LyXParagraph::BeginningOfMainBody() const
            && GetChar(i) != LyXParagraph::META_NEWLINE
                ) {
                ++i;
-               char previous_char = 0, temp = 0; 
+               char previous_char = 0;
+               char temp = 0; 
                if (i < size()
                    && (previous_char = GetChar(i)) != LyXParagraph::META_NEWLINE) {
                        // Yes, this  ^ is supposed to be "= " not "=="
@@ -2156,15 +2199,6 @@ LyXParagraph::InsetIterator(LyXParagraph::size_type pos)
 int LyXParagraph::GetPositionOfInset(Inset * inset) const
 {
        // Find the entry.
-       // We could use lower_bound here too, we just need to add
-       // the approp. operator() to matchIT (and change the name
-       // of that struct). Code would then be:
-       // InsetList::const_iterator cit = lower_bound(insetlist.begin(),
-       //                                             insetlist.end(),
-       //                                             inset, matchIT());
-       // if ((*cit).inset == inset) {
-       //         return (*cit).pos;
-       // }
        for (InsetList::const_iterator cit = insetlist.begin();
             cit != insetlist.end(); ++cit) {
                if ((*cit).inset == inset) {
@@ -2175,7 +2209,7 @@ int LyXParagraph::GetPositionOfInset(Inset * inset) const
        // Think about footnotes.
        if (footnoteflag == LyXParagraph::NO_FOOTNOTE 
            && next && next->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) {
-               int further = 
+               int const further = 
                        NextAfterFootnote()->GetPositionOfInset(inset);
                if (further != -1)
                        return text.size() + 1 + further;
@@ -2245,12 +2279,13 @@ LyXParagraph * LyXParagraph::TeXOnePar(Buffer const * buf,
        }
 
        Language const * language = getParLanguage(bparams);
-       Language const * doc_language = bparams.language_info;
+       Language const * doc_language = bparams.language;
        Language const * previous_language = previous
                ? previous->getParLanguage(bparams) : doc_language;
-       if (language != doc_language && language != previous_language) {
+       if (language->babel() != doc_language->babel() &&
+           language->babel() != previous_language->babel()) {
                os << subst(lyxrc.language_command_begin, "$$lang",
-                           language->lang())
+                           language->babel())
                   << endl;
                texrow.newline();
        }
@@ -2295,7 +2330,7 @@ LyXParagraph * LyXParagraph::TeXOnePar(Buffer const * buf,
                                ? GetFontSettings(bparams,
                                                  size()-1).isRightToLeft()
                                : language->RightToLeft();
-                       if ( (p = NextAfterFootnote()) != 0 &&
+                       if ((p = NextAfterFootnote()) != 0 &&
                             p->size() > 0 &&
                             p->GetFontSettings(bparams, 0).isRightToLeft() != is_rtl)
                                is_rtl = getParLanguage(bparams)->RightToLeft();
@@ -2339,7 +2374,7 @@ LyXParagraph * LyXParagraph::TeXOnePar(Buffer const * buf,
        // calculates the space between the baselines according
        // to this font. (Matthias)
        LyXFont font = getFont(bparams, Last() - 1);
-       if (need_par) {
+       if (need_par && next) {
                if (style.resfont.size() != font.size()) {
                        os << '\\'
                           << font.latexSize()
@@ -2354,19 +2389,19 @@ LyXParagraph * LyXParagraph::TeXOnePar(Buffer const * buf,
                           << ' ';
                }
                os << '}';
-       } else if (style.resfont.size() != font.size()){
+       } else if ((style.resfont.size() != font.size()) && next){
                os << "{\\" << font.latexSize() << " \\par}";
        }
 
-       if (language != doc_language &&
+       if (language->babel() != doc_language->babel() &&
            (!par
 #ifndef NEW_INSETS
             || (footnoteflag != NO_FOOTNOTE && par->footnoteflag != footnoteflag)
 #endif
-            || par->getParLanguage(bparams) != language)) {
+            || par->getParLanguage(bparams)->babel() != language->babel())) {
                os << endl 
                   << subst(lyxrc.language_command_end, "$$lang",
-                           doc_language->lang());
+                           doc_language->babel());
        }
        
        switch (style.latextype) {
@@ -2387,20 +2422,7 @@ LyXParagraph * LyXParagraph::TeXOnePar(Buffer const * buf,
                        break;
        default:
                // we don't need it for the last paragraph!!!
-               if (next
-                   && !(
-#ifndef NEW_INSETS
-                           footnoteflag != LyXParagraph::NO_FOOTNOTE
-                     && footnotekind != LyXParagraph::FOOTNOTE
-                     && footnotekind != LyXParagraph::MARGIN &&
-#endif
-                     (table
-                         || (par
-                             && par->table)))) {
-                       // don't insert this if we would be adding it
-                       // before or after a table in a float.  This 
-                       // little trick is needed in order to allow
-                       // use of tables in \subfigures or \subtables.
+               if (next) {
                        os << '\n';
                        texrow.newline();
                }
@@ -2457,11 +2479,6 @@ bool LyXParagraph::SimpleTeXOnePar(Buffer const * buf,
 {
        lyxerr[Debug::LATEX] << "SimpleTeXOnePar...     " << this << endl;
 
-#ifndef NEW_TABULAR
-       if (table)
-               return SimpleTeXOneTablePar(buf, bparams, os, texrow);
-#endif
-
        bool return_value = false;
 
        LyXLayout const & style =
@@ -2548,7 +2565,7 @@ bool LyXParagraph::SimpleTeXOnePar(Buffer const * buf,
                        case LYX_ALIGN_SPECIAL:
                                break;
                        case LYX_ALIGN_LEFT:
-                               if (getParLanguage(bparams)->lang() != "hebrew") {
+                               if (getParLanguage(bparams)->babel() != "hebrew") {
                                        os << "\\raggedright ";
                                        column+= 13;
                                } else {
@@ -2557,7 +2574,7 @@ bool LyXParagraph::SimpleTeXOnePar(Buffer const * buf,
                                }
                                break;
                        case LYX_ALIGN_RIGHT:
-                               if (getParLanguage(bparams)->lang() != "hebrew") {
+                               if (getParLanguage(bparams)->babel() != "hebrew") {
                                        os << "\\raggedleft ";
                                        column+= 12;
                                } else {
@@ -2576,17 +2593,15 @@ bool LyXParagraph::SimpleTeXOnePar(Buffer const * buf,
 
                // Fully instantiated font
                LyXFont font = getFont(bparams, i);
+#ifndef NEW_INSETS
                LyXParagraph * p = 0;
                if (i == 0
-#ifndef NEW_INSETS
                    && previous && 
                    previous->footnoteflag != LyXParagraph::NO_FOOTNOTE &&
                    (p = PreviousBeforeFootnote()) != 0)
-#else
-                       && (p = previous))
-#endif
                        last_font = p->getFont(bparams, p->size() - 1);
                else
+#endif
                        last_font = running_font;
 
                // Spaces at end of font change are simulated to be
@@ -2684,305 +2699,7 @@ bool LyXParagraph::SimpleTeXOnePar(Buffer const * buf,
 }
 
 
-// This one spits out the text of a table paragraph
-bool LyXParagraph::SimpleTeXOneTablePar(Buffer const * buf,
-                                       BufferParams const & bparams,
-                                       ostream & os, TexRow & texrow)
-{
-       lyxerr[Debug::LATEX] << "SimpleTeXOneTablePar...     " << this << endl;
-   
-       bool return_value = false;
-
-       LyXLayout const & style = 
-               textclasslist.Style(bparams.textclass, GetLayout());
-       int column = 0;
-#ifndef NEW_INSETS
-       if (!IsDummy()) { // it is dummy if it is in a float!!!
-#endif
-               if (style.isCommand()) {
-                       os << '{';
-                       ++column;
-               } else if (align != LYX_ALIGN_LAYOUT) {
-                       os << '{';
-                       ++column;
-                       return_value = true;
-               }
-               if (noindent) {
-                       os << "\\noindent ";
-                       column += 10;
-               }
-               switch (align) {
-               case LYX_ALIGN_NONE:
-               case LYX_ALIGN_BLOCK:
-               case LYX_ALIGN_LAYOUT:
-               case LYX_ALIGN_SPECIAL: break;
-               case LYX_ALIGN_LEFT:
-                       os << "\\raggedright ";
-                       column+= 13;
-                       break;
-               case LYX_ALIGN_RIGHT:
-                       os << "\\raggedleft ";
-                       column+= 12;
-                       break;
-               case LYX_ALIGN_CENTER:
-                       os << "\\centering ";
-                       column+= 11;
-                       break;
-               }
-#ifndef NEW_INSETS
-       }
-#endif
-
-       LyXFont basefont = getFont(bparams, -1); // Get layout font
-       // Which font is currently active?
-       LyXFont running_font = basefont;
-       LyXFont last_font;
-       // Do we have an open font change?
-       bool open_font = false;
-       int current_cell_number = -1;
-       int tmp = table->TexEndOfCell(os, current_cell_number);
-       for (; tmp > 0 ; --tmp)
-               texrow.newline();
-       
-       texrow.start(this, 0);
-
-       bool is_rtl = getParLanguage(bparams)->RightToLeft();
-       bool first_in_cell = true;
-               
-       for (size_type i = 0; i < size(); ++i) {
-               value_type c = GetChar(i);
-               if (table->IsContRow(current_cell_number + 1)) {
-                       if (c == LyXParagraph::META_NEWLINE)
-                               ++current_cell_number;
-                       continue;
-               }
-               ++column;
-
-               if (first_in_cell && is_rtl) {
-                       os << "\\R{";
-                       column += 3;
-                       first_in_cell = false;
-               }
-
-               // Fully instantiated font
-               LyXFont font = getFont(bparams, i);
-               last_font = running_font;
-
-               // Spaces at end of font change are simulated to be
-               // outside font change.
-               // i.e. we write "\textXX{text} " rather than
-               // "\textXX{text }". (Asger)
-               if (open_font && c == ' ' && i <= size() - 2
-                   && getFont(bparams, i + 1) != running_font
-                   && getFont(bparams, i + 1) != font) {
-                       font = getFont(bparams, i + 1);
-               }
-
-               // We end font definition before blanks
-               if (font != running_font && open_font) {
-                       column += running_font.latexWriteEndChanges(os,
-                                                                   basefont,
-                                                                   font);
-                       running_font = basefont;
-                       open_font = false;
-               }
-               // Blanks are printed before start of fontswitch
-               if (c == ' ') {
-                       SimpleTeXBlanks(os, texrow, i, column, font, style);
-               }
-               // Do we need to change font?
-               if (font != running_font) {
-                       column += font.latexWriteStartChanges(os, basefont,
-                                                             last_font);
-                       running_font = font;
-                       open_font = true;
-               }
-               // Do we need to turn on LaTeX mode?
-               if (font.latex() != running_font.latex()) {
-                       if (font.latex() == LyXFont::ON
-                           && style.needprotect) {
-                               os << "\\protect ";
-                               column += 9;
-                       }
-               }
-               if (c == LyXParagraph::META_NEWLINE) {
-                       // special case for inside a table
-                       // different from default case in
-                       // SimpleTeXSpecialChars()
-                       if (open_font) {
-                               column += running_font
-                                       .latexWriteEndChanges(os, basefont,
-                                                             basefont);
-                               open_font = false;
-                       }
-                       basefont = getFont(bparams, -1);
-                       running_font = basefont;
-                       ++current_cell_number;
-                       if (table->CellHasContRow(current_cell_number) >= 0) {
-                               TeXContTableRows(buf, bparams, os, i + 1,
-                                                current_cell_number,
-                                                column, texrow);
-                       }
-                       if (is_rtl && !first_in_cell) {
-                               os << "}";
-                               first_in_cell = true;
-                       }
-
-                       // if this cell follow only ContRows till end don't
-                       // put the EndOfCell because it is put after the
-                       // for(...)
-                       if (table->ShouldBeVeryLastCell(current_cell_number)) {
-                               --current_cell_number;
-                               break;
-                       }
-                       int tmp = table->TexEndOfCell(os,
-                                                     current_cell_number);
-                       if (tmp > 0) {
-                               column = 0;
-                       } else if (tmp < 0) {
-                               tmp = -tmp;
-                       }
-                       for (; tmp--;) {
-                               texrow.newline();
-                       }
-                       texrow.start(this, i + 1);
-               } else {
-                       SimpleTeXSpecialChars(buf, bparams,
-                                             os, texrow, false,
-                                             font, running_font, basefont,
-                                             open_font, style, i, column, c);
-               }
-       }
-
-       // If we have an open font definition, we have to close it
-       if (open_font) {
-               running_font.latexWriteEndChanges(os, basefont, basefont);
-       }
-       ++current_cell_number;
-       if (is_rtl && !first_in_cell)
-               os << "}";
-       tmp = table->TexEndOfCell(os, current_cell_number);
-       for (; tmp > 0; --tmp)
-               texrow.newline();
-       lyxerr[Debug::LATEX] << "SimpleTeXOneTablePar...done " << this << endl;
-       return return_value;
-}
-
-
-// This one spits out the text off ContRows in tables
-bool LyXParagraph::TeXContTableRows(Buffer const * buf,
-                                   BufferParams const & bparams,
-                                   ostream & os,
-                                   LyXParagraph::size_type i,
-                                   int current_cell_number,
-                                   int & column, TexRow & texrow)
-{
-       lyxerr[Debug::LATEX] << "TeXContTableRows...     " << this << endl;
-       if (!table)
-               return false;
-    
-       bool return_value = false;
-       LyXLayout const & style =
-               textclasslist.Style(bparams.textclass,
-                                   GetLayout());
-       LyXFont basefont = getFont(bparams, -1); // Get layout font
-       LyXFont last_font;
-       // Which font is currently active?
-       LyXFont running_font = basefont;
-       // Do we have an open font change?
-       bool open_font = false;
-
-       size_type lastpos = i;
-       int cell = table->CellHasContRow(current_cell_number);
-       ++current_cell_number;
-       value_type c;
-       while(cell >= 0) {
-               // first find the right position
-               i = lastpos;
-               for (; (i < size()) && (current_cell_number < cell); ++i) {
-                       c = GetChar(i);
-                       if (c == LyXParagraph::META_NEWLINE)
-                               ++current_cell_number;
-               }
-               lastpos = i;
-               c = GetChar(i);
-               if (table->Linebreaks(table->FirstVirtualCell(cell))) {
-                       os << " \\\\\n";
-                       texrow.newline();
-                       column = 0;
-               } else if ((c != ' ') && (c != LyXParagraph::META_NEWLINE)) {
-                       os << ' ';
-               }
-
-               for (; i < size()
-                            && (c = GetChar(i)) != LyXParagraph::META_NEWLINE;
-                    ++i) {
-                       ++column;
-
-                       // Fully instantiated font
-                       LyXFont font = getFont(bparams, i);
-                       last_font = running_font;
-
-                       // Spaces at end of font change are simulated to
-                       // be outside font change. i.e. we write
-                       // "\textXX{text} " rather than "\textXX{text }".
-                       // (Asger)
-                       if (open_font && c == ' ' && i <= size() - 2 
-                           && getFont(bparams, i + 1) != running_font
-                           && getFont(bparams, i + 1) != font) {
-                               font = getFont(bparams, i + 1);
-                       }
-
-                       // We end font definition before blanks
-                       if (font != running_font && open_font) {
-                               column += running_font.latexWriteEndChanges(os, basefont, font);
-                               running_font = basefont;
-                               open_font = false;
-                       }
-                       // Blanks are printed before start of fontswitch
-                       if (c == ' '){
-                               SimpleTeXBlanks(os, texrow, i,
-                                               column, font, style);
-                       }
-                       // Do we need to change font?
-                       if (font != running_font) {
-                               column +=
-                                       font.latexWriteStartChanges(os,
-                                                                   basefont,
-                                                                   last_font);
-                               running_font = font;
-                               open_font = true;
-                       }
-                       // Do we need to turn on LaTeX mode?
-                       if (font.latex() != running_font.latex()) {
-                               if (font.latex() == LyXFont::ON
-                                   && style.needprotect) {
-                                       os << "\\protect ";
-                                       column += 9;
-                               }
-                       }
-                       SimpleTeXSpecialChars(buf, bparams,
-                                             os, texrow, false, font,
-                                             running_font, basefont,
-                                             open_font, style, i, column, c);
-               }
-               // If we have an open font definition, we have to close it
-               if (open_font) {
-                       running_font.latexWriteEndChanges(os, basefont,
-                                                         basefont);
-                       open_font = false;
-               }
-               basefont = getFont(bparams, -1);
-               running_font = basefont;
-               cell = table->CellHasContRow(current_cell_number);
-       }
-       lyxerr[Debug::LATEX] << "TeXContTableRows...done " << this << endl;
-       return return_value;
-}
-
-
-bool LyXParagraph::linuxDocConvertChar(char c, string & sgml_string)
+bool LyXParagraph::linuxDocConvertChar(char c, string & sgml_string)
 {
        bool retval = false;
        switch (c) {
@@ -3046,342 +2763,6 @@ bool LyXParagraph::linuxDocConvertChar(char c, string & sgml_string)
 }
 
 
-void LyXParagraph::SimpleDocBookOneTablePar(Buffer const * buffer, 
-                                           ostream & os, string & extra,
-                                           int & desc_on, int depth) 
-{
-       BufferParams const & bparams = buffer->params;
-       if (!table) return;
-       lyxerr[Debug::LATEX] << "SimpleDocbookOneTablePar... " << this << endl;
-       int column = 0;
-       LyXFont font1, font2;
-       char c;
-       Inset * inset;
-       size_type main_body;
-       bool emph_flag = false;
-       
-       LyXLayout const & style =
-               textclasslist.Style(bparams.textclass,
-                                   GetLayout());
-       
-       if (style.labeltype != LABEL_MANUAL)
-               main_body = 0;
-       else
-               main_body = BeginningOfMainBody();
-       
-       // Gets paragraph main font.
-       if (main_body > 0)
-               font1 = style.labelfont;
-       else
-               font1 = style.font;
-       
-       int char_line_count = depth;
-       os << newlineAndDepth(depth);
-#ifndef NEW_INSETS
-       if (footnoteflag == LyXParagraph::NO_FOOTNOTE) {
-               os << "<INFORMALTABLE>"
-                  << newlineAndDepth(++depth);
-       }
-#else
-       os << "<INFORMALTABLE>"
-          << newlineAndDepth(++depth);
-#endif
-       int current_cell_number = -1;
-       int tmp = table->DocBookEndOfCell(os, current_cell_number, depth);
-       
-       // Parsing main loop.
-       for (size_type i = 0; i < size(); ++i) {
-               c = GetChar(i);
-               if (table->IsContRow(current_cell_number+1)) {
-                       if (c == LyXParagraph::META_NEWLINE)
-                               ++current_cell_number;
-                       continue;
-               }
-               ++column;
-               
-               // Fully instantiated font
-               font2 = getFont(bparams, i);
-               
-               // Handle <emphasis> tag.
-               if (font1.emph() != font2.emph() && i) {
-                       if (font2.emph() == LyXFont::ON) {
-                               os << "<emphasis>";
-                               emph_flag= true;
-                       } else if (emph_flag) {
-                               os << "</emphasis>";
-                               emph_flag= false;
-                       }
-               }
-               if (c == LyXParagraph::META_NEWLINE) {
-                       // We have only to control for emphasis open here!
-                       if (emph_flag) {
-                               os << "</emphasis>";
-                               emph_flag= false;
-                       }
-                       font1 = font2 = getFont(bparams, -1);
-                       ++current_cell_number;
-                       if (table->CellHasContRow(current_cell_number) >= 0) {
-                               DocBookContTableRows(buffer,
-                                                    os, extra, desc_on, i + 1,
-                                                    current_cell_number,
-                                                    column);
-                       }
-                       // if this cell follow only ContRows till end don't
-                       // put the EndOfCell because it is put after the
-                       // for(...)
-                       if (table->ShouldBeVeryLastCell(current_cell_number)) {
-                               --current_cell_number;
-                               break;
-                       }
-                       tmp = table->DocBookEndOfCell(os,
-                                                     current_cell_number,
-                                                     depth);
-                       
-                       if (tmp > 0)
-                               column = 0;
-               } else if (c == LyXParagraph::META_INSET) {
-                       inset = GetInset(i);
-#ifdef HAVE_SSTREAM
-                       std::ostringstream ost;
-                       inset->DocBook(buffer, ost);
-                       string tmp_out = ost.str().c_str();
-#else
-                       ostrstream ost;
-                       inset->DocBook(buffer, ost);
-                       ost << '\0';
-                       char * ctmp = ost.str();
-                       string tmp_out(ctmp);
-                       delete [] ctmp;
-#endif
-                       //
-                       // This code needs some explanation:
-                       // Two insets are treated specially
-                       //   label if it is the first element in a
-                       //   command paragraph
-                       //         desc_on == 3
-                       //   graphics inside tables or figure floats
-                       //   can't go on
-                       //   title (the equivalente in latex for this
-                       //   case is caption
-                       //   and title should come first
-                       //         desc_on == 4
-                       //
-                       if(desc_on != 3 || i != 0) {
-                               if(tmp_out[0] == '@') {
-                                       if(desc_on == 4)
-                                               extra += frontStrip(tmp_out,
-                                                                   '@');
-                                       else
-                                               os << frontStrip(tmp_out,
-                                                                '@');
-                               } else
-                                       os << tmp_out;
-                       }
-               } else if (font2.latex() == LyXFont::ON) {
-                       // "TeX"-Mode on == > SGML-Mode on.
-                       if (c != '\0')
-                               os << c;
-                       ++char_line_count;
-               } else {
-                       string sgml_string;
-                       if (linuxDocConvertChar(c, sgml_string) 
-                           && !style.free_spacing) {
-                               // in freespacing mode, spaces are
-                               // non-breaking characters
-                               // char is ' '
-                               if (desc_on == 1) {
-                                       ++char_line_count;
-                                       os << '\n'
-                                          << "</term><listitem><para>";
-                                       desc_on = 2;
-                               } else  {
-                                       os << c;
-                               }
-                       } else {
-                               os << sgml_string;
-                       }
-               }
-               font1 = font2;
-       }
-       
-       // Needed if there is an optional argument but no contents.
-       if (main_body > 0 && main_body == size()) {
-               font1 = style.font;
-       }
-
-       if (emph_flag) {
-               os << "</emphasis>";
-       }
-       
-       ++current_cell_number;
-       tmp = table->DocBookEndOfCell(os, current_cell_number, depth);
-       // Resets description flag correctly.
-       switch(desc_on){
-       case 1:
-               // <term> not closed...
-               os << "</term>";
-               break;
-       }
-#ifndef NEW_INSETS
-       if (footnoteflag == LyXParagraph::NO_FOOTNOTE)
-#endif
-               os << "</INFORMALTABLE>";
-       os << '\n';
-       lyxerr[Debug::LATEX] << "SimpleDocbookOneTablePar...done "
-                            << this << endl;
-}
-
-
-void LyXParagraph::DocBookContTableRows(Buffer const * buffer,
-                                       ostream & os, string & extra,
-                                        int & desc_on,
-                                       LyXParagraph::size_type i,
-                                        int current_cell_number, int &column) 
-
-{
-       if (!table) return;
-
-       BufferParams const & bparams = buffer->params;
-       
-       lyxerr[Debug::LATEX] << "DocBookContTableRows... " << this << endl;
-
-       LyXFont font2;
-       char c;
-       Inset * inset;
-       //string emph = "emphasis";
-       bool emph_flag = false;
-       int char_line_count = 0;
-       
-       LyXLayout const & style =
-               textclasslist.Style(bparams.textclass,
-                                   GetLayout());
-       
-       size_type main_body;
-       if (style.labeltype != LABEL_MANUAL)
-               main_body = 0;
-       else
-               main_body = BeginningOfMainBody();
-       
-       // Gets paragraph main font.
-       LyXFont font1;
-       if (main_body > 0)
-               font1 = style.labelfont;
-       else
-               font1 = style.font;
-       
-       size_type lastpos = i;
-       int cell = table->CellHasContRow(current_cell_number);
-       ++current_cell_number;
-       while(cell >= 0) {
-               // first find the right position
-               i = lastpos;
-               for (; i < size() && current_cell_number < cell; ++i) {
-                       c = GetChar(i);
-                       if (c == LyXParagraph::META_NEWLINE)
-                               ++current_cell_number;
-               }
-               lastpos = i;
-               c = GetChar(i);
-               // I don't know how to handle this so I comment it
-                // for the moment (Jug)
-//             if (table->Linebreaks(table->FirstVirtualCell(cell))) {
-//                     file += " \\\\\n";
-//                     column = 0;
-//             } else
-               if ((c != ' ') && (c != LyXParagraph::META_NEWLINE)) {
-                       os << ' ';
-               }
-
-               for (; i < size()
-                            && (c = GetChar(i)) != LyXParagraph::META_NEWLINE;
-                    ++i) {
-                       ++column;
-                       
-                       // Fully instantiated font
-                       font2 = getFont(bparams, i);
-                       
-                       // Handle <emphasis> tag.
-                       if (font1.emph() != font2.emph() && i) {
-                               if (font2.emph() == LyXFont::ON) {
-                                       os << "<emphasis>";
-                                       emph_flag= true;
-                               } else if (emph_flag) {
-                                       os << "</emphasis>";
-                                       emph_flag= false;
-                               }
-                       }
-                       if (c == LyXParagraph::META_INSET) {
-                               inset = GetInset(i);
-#ifdef HAVE_SSTREAM
-                               std::ostringstream ost;
-                               inset->DocBook(buffer, ost);
-                               string tmp_out = ost.str().c_str();
-#else
-                               ostrstream ost;
-                               inset->DocBook(buffer, ost);
-                               ost << '\0';
-                               char * ctmp = ost.str();
-                               string tmp_out(ctmp);
-                               delete [] ctmp;
-#endif
-                               //
-                               // This code needs some explanation:
-                               // Two insets are treated specially
-                               //   label if it is the first element in a
-                               //   command paragraph
-                               //       desc_on == 3
-                               //   graphics inside tables or figure floats
-                               //   can't go on title (the equivalente in
-                               //   latex for this case is caption and title
-                               //   should come first
-                               //       desc_on == 4
-                               //
-                               if(desc_on != 3 || i != 0) {
-                                       if(tmp_out[0] == '@') {
-                                               if(desc_on == 4)
-                                                       extra += frontStrip(tmp_out, '@');
-                                               else
-                                                       os << frontStrip(tmp_out, '@');
-                                       } else
-                                               os << tmp_out;
-                               }
-                       } else if (font2.latex() == LyXFont::ON) {
-                               // "TeX"-Mode on == > SGML-Mode on.
-                               if (c!= '\0')
-                                       os << c;
-                               ++char_line_count;
-                       } else {
-                               string sgml_string;
-                               if (linuxDocConvertChar(c, sgml_string) 
-                                   && !style.free_spacing) {
-                                       // in freespacing mode, spaces are
-                                       // non-breaking characters
-                                       // char is ' '
-                                       if (desc_on == 1) {
-                                               ++char_line_count;
-                                               os << '\n'
-                                                  << "</term><listitem><para>";
-                                               desc_on = 2;
-                                       } else  {
-                                               os << c;
-                                       }
-                               } else {
-                                       os << sgml_string;
-                               }
-                       }
-               }
-               // we have only to control for emphasis open here!
-               if (emph_flag) {
-                       os << "</emphasis>";
-                       emph_flag= false;
-               }
-               font1 = font2 = getFont(bparams, -1);
-               cell = table->CellHasContRow(current_cell_number);
-       }
-       lyxerr[Debug::LATEX] << "DocBookContTableRows...done " << this << endl;
-}
-
-
 void LyXParagraph::SimpleTeXBlanks(ostream & os, TexRow & texrow,
                                   LyXParagraph::size_type const i,
                                   int & column, LyXFont const & font,
@@ -3445,7 +2826,7 @@ void LyXParagraph::SimpleTeXSpecialChars(Buffer const * buf,
                Inset * inset = GetInset(i);
                if (inset) {
                        bool close = false;
-                       int len = os.tellp();
+                       int const len = os.tellp();
                        if ((inset->LyxCode() == Inset::GRAPHICS_CODE
                             || inset->LyxCode() == Inset::MATH_CODE
                             || inset->LyxCode() == Inset::URL_CODE)
@@ -3556,7 +2937,7 @@ void LyXParagraph::SimpleTeXSpecialChars(Buffer const * buf,
                                } 
                                // Otherwise, we use what LaTeX
                                // provides us.
-                               switch(c) {
+                               switch (c) {
                                case '<':
                                        os << "\\textless{}";
                                        column += 10;
@@ -3688,10 +3069,13 @@ void LyXParagraph::SimpleTeXSpecialChars(Buffer const * buf,
 
 LyXParagraph * LyXParagraph::TeXDeeper(Buffer const * buf,
                                       BufferParams const & bparams,
-                                      ostream & os, TexRow & texrow,
-                                      ostream & foot,
+                                      ostream & os, TexRow & texrow
+#ifndef NEW_INSETS
+                                      ,ostream & foot,
                                       TexRow & foot_texrow,
-                                      int & foot_count)
+                                      int & foot_count
+#endif
+       )
 {
        lyxerr[Debug::LATEX] << "TeXDeeper...     " << this << endl;
        LyXParagraph * par = this;
@@ -3710,9 +3094,12 @@ LyXParagraph * LyXParagraph::TeXDeeper(Buffer const * buf,
                                        par->layout).isEnvironment()
                    || par->pextra_type != PEXTRA_NONE) {
                        par = par->TeXEnvironment(buf, bparams,
-                                                 os, texrow,
-                                                 foot, foot_texrow,
-                                                 foot_count);
+                                                 os, texrow
+#ifndef NEW_INSETS
+                                                 ,foot, foot_texrow,
+                                                 foot_count
+#endif
+                               );
                } else {
                        par = par->TeXOnePar(buf, bparams,
                                             os, texrow, false
@@ -3732,13 +3119,18 @@ LyXParagraph * LyXParagraph::TeXDeeper(Buffer const * buf,
 
 LyXParagraph * LyXParagraph::TeXEnvironment(Buffer const * buf,
                                            BufferParams const & bparams,
-                                           ostream & os, TexRow & texrow,
-                                           ostream & foot,
+                                           ostream & os, TexRow & texrow
+#ifndef NEW_INSETS
+                                           ,ostream & foot,
                                            TexRow & foot_texrow,
-                                           int & foot_count)
+                                           int & foot_count
+#endif
+       )
 {
        bool eindent_open = false;
+#ifndef NEW_INSETS
        bool foot_this_level = false;
+#endif
        // flags when footnotetext should be appended to file.
         static bool minipage_open = false;
         static int minipage_open_depth = 0;
@@ -3792,7 +3184,7 @@ LyXParagraph * LyXParagraph::TeXEnvironment(Buffer const * buf,
                        texrow.newline();
                }
                os << "\\begin{minipage}";
-               switch(pextra_alignment) {
+               switch (pextra_alignment) {
                case MINIPAGE_ALIGN_TOP:
                        os << "[t]";
                        break;
@@ -3854,7 +3246,7 @@ LyXParagraph * LyXParagraph::TeXEnvironment(Buffer const * buf,
                } else if (style.labeltype == LABEL_BIBLIO) {
                        // ale970405
                        os << "\\begin{" << style.latexname() << "}{"
-                          <<  bibitemWidest(current_view)
+                          <<  bibitemWidest(buf)
                           << "}\n";
                } else if (style.latextype == LATEX_ITEM_ENVIRONMENT) {
 #ifdef FANCY_FOOTNOTE_CODE
@@ -3896,7 +3288,6 @@ LyXParagraph * LyXParagraph::TeXEnvironment(Buffer const * buf,
                if (par && par->depth > depth) {
                        if (textclasslist.Style(bparams.textclass,
                                                par->layout).isParagraph()
-                           && !par->table
                            // Thinko!
                            // How to handle this? (Lgb)
                            //&& !suffixIs(os, "\n\n")
@@ -3914,8 +3305,11 @@ LyXParagraph * LyXParagraph::TeXEnvironment(Buffer const * buf,
                                os << '\n';
                                texrow.newline();
                        }
-                       par = par->TeXDeeper(buf, bparams, os, texrow,
-                                            foot, foot_texrow, foot_count);
+                       par = par->TeXDeeper(buf, bparams, os, texrow
+#ifndef NEW_INSETS
+                                            ,foot, foot_texrow, foot_count
+#endif
+                               );
                }
                if (par && par->layout == layout && par->depth == depth &&
                    (par->pextra_type == PEXTRA_MINIPAGE) && !minipage_open) {
@@ -3929,7 +3323,7 @@ LyXParagraph * LyXParagraph::TeXEnvironment(Buffer const * buf,
                                texrow.newline();
                        }
                        os << "\\begin{minipage}";
-                       switch(par->pextra_alignment) {
+                       switch (par->pextra_alignment) {
                        case MINIPAGE_ALIGN_TOP:
                                os << "[t]";
                                break;
@@ -3979,6 +3373,7 @@ LyXParagraph * LyXParagraph::TeXEnvironment(Buffer const * buf,
  
        if (style.isEnvironment()) {
                os << "\\end{" << style.latexname() << '}';
+#ifndef NEW_INSETS
                // maybe this should go after the minipage closes?
                if (foot_this_level) {
                        if (foot_count >= 1) {
@@ -3994,6 +3389,7 @@ LyXParagraph * LyXParagraph::TeXEnvironment(Buffer const * buf,
                                foot_count = 0;
                        }
                }
+#endif
        }
         if (minipage_open && (minipage_open_depth == depth) &&
             (!par || par->pextra_start_minipage ||
@@ -4081,7 +3477,6 @@ LyXParagraph * LyXParagraph::TeXFootnote(Buffer const * buf,
                need_closing = true;
        }
        
-       //BufferParams * params = &current_view->buffer()->params;
        bool footer_in_body = true;
        switch (footnotekind) {
        case LyXParagraph::FOOTNOTE:
@@ -4120,7 +3515,7 @@ LyXParagraph * LyXParagraph::TeXFootnote(Buffer const * buf,
                                   << pextra_width << "}\n";
                        else
                                os << "\\begin{floatingfigure}{"
-                                  << atoi(pextra_widthp.c_str())/100.0
+                                  << lyx::atoi(pextra_widthp) / 100.0
                                   << "\\textwidth}\n";
                } else {
                        os << "\\begin{figure}";
@@ -4198,11 +3593,7 @@ LyXParagraph * LyXParagraph::TeXFootnote(Buffer const * buf,
                // process footnotes > depth 0 or in environments separately
                // NOTE: Currently don't support footnotes within footnotes
                //       even though that is possible using the \footnotemark
-#ifdef HAVE_SSTREAM
                std::ostringstream dummy;
-#else
-               ostrstream dummy;
-#endif
                TexRow dummy_texrow;
                int dummy_count = 0;
                do {
@@ -4243,9 +3634,6 @@ LyXParagraph * LyXParagraph::TeXFootnote(Buffer const * buf,
                                "Footnote in a Footnote -- not supported"
                               << endl;
                }
-#ifndef HAVE_OSTREAM
-               delete [] dummy.str();
-#endif
        }
 
        switch (footnotekind) {
@@ -4309,8 +3697,8 @@ bool LyXParagraph::IsDummy() const
 #endif
 
 void LyXParagraph::SetPExtraType(BufferParams const & bparams,
-                                int type, char const * width,
-                                char const * widthp)
+                                int type, string const & width,
+                                string const & widthp)
 {
        pextra_type = type;
        pextra_width = width;
@@ -4318,9 +3706,8 @@ void LyXParagraph::SetPExtraType(BufferParams const & bparams,
 
        if (textclasslist.Style(bparams.textclass, 
                                layout).isEnvironment()) {
-               LyXParagraph
-                       * par = this,
-                       * ppar = par;
+               LyXParagraph * par = this;
+               LyXParagraph * ppar = par;
 
                while (par && (par->layout == layout)
                       && (par->depth == depth)) {
@@ -4375,9 +3762,8 @@ void LyXParagraph::UnsetPExtraType(BufferParams const & bparams)
 
        if (textclasslist.Style(bparams.textclass, 
                                layout).isEnvironment()) {
-               LyXParagraph
-                       * par = this,
-                       * ppar = par;
+               LyXParagraph * par = this;
+               LyXParagraph * ppar = par;
 
                while (par && (par->layout == layout)
                       && (par->depth == depth)) {
@@ -4467,17 +3853,15 @@ bool LyXParagraph::IsKomma(size_type pos) const
 /// Used by the spellchecker
 bool LyXParagraph::IsLetter(LyXParagraph::size_type pos) const
 {
-       value_type c = GetChar(pos);
+       value_type const c = GetChar(pos);
        if (IsLetterChar(c))
                return true;
        // '\0' is not a letter, allthough every string contains "" (below)
-       ifc == '\0')
+       if (c == '\0')
                return false;
        // We want to pass the ' and escape chars to ispell
-       string extra = lyxrc.isp_esc_chars + '\'';
-       char ch[2];
-       ch[0] = c;
-       ch[1] = 0;
+       string const extra = lyxrc.isp_esc_chars + '\'';
+       char ch[2] = { c, 0 };
        return contains(extra, ch);
 }
  
@@ -4496,29 +3880,26 @@ LyXParagraph::getParLanguage(BufferParams const & bparams) const
                return FirstPhysicalPar()->getParLanguage(bparams);
        else
 #endif
-       if (size() > 0)
-#ifndef NEW_TABULAR
-               if (!table)
-#endif
-                       return GetFirstFontSettings().language();
-#ifndef NEW_TABULAR
-               else {
-                       for (size_type pos = 0; pos < size(); ++pos)
-                               if (IsNewline(pos))
-                                       return GetFontSettings(bparams, pos).language();
-                       return GetFirstFontSettings().language();
-               }
+       if (size() > 0) {
+#ifdef DO_USE_DEFAULT_LANGUAGE
+               Language const * lang = GetFirstFontSettings().language();
+
+               if (lang->lang() == "default")
+                       return bparams.language;
+               return lang;
+#else
+               return GetFirstFontSettings().language();
 #endif
-       else if (previous)
+       else if (previous)
                return previous->getParLanguage(bparams);
        else
-               return bparams.language_info;
+               return bparams.language;
 }
 
 
 bool LyXParagraph::isRightToLeftPar(BufferParams const & bparams) const
 {
-       return lyxrc.rtl_support && !table
+       return lyxrc.rtl_support
                && getParLanguage(bparams)->RightToLeft();
 }
 
@@ -4526,7 +3907,7 @@ bool LyXParagraph::isRightToLeftPar(BufferParams const & bparams) const
 void LyXParagraph::ChangeLanguage(BufferParams const & bparams,
                                  Language const * from, Language const * to)
 {
-       for(size_type i = 0; i < size(); ++i) {
+       for (size_type i = 0; i < size(); ++i) {
                LyXFont font = GetFontSettings(bparams, i);
                if (font.language() == from) {
                        font.setLanguage(to);
@@ -4538,7 +3919,7 @@ void LyXParagraph::ChangeLanguage(BufferParams const & bparams,
 
 bool LyXParagraph::isMultiLingual(BufferParams const & bparams)
 {
-       Language const * doc_language = bparams.language_info;
+       Language const * doc_language = bparams.language;
        for (FontList::const_iterator cit = fontlist.begin();
             cit != fontlist.end(); ++cit)
                if ((*cit).font.language() != doc_language)
@@ -4549,7 +3930,7 @@ bool LyXParagraph::isMultiLingual(BufferParams const & bparams)
 
 // Convert the paragraph to a string.
 // Used for building the table of contents
-string LyXParagraph::String(Buffer const * buffer, bool label)
+string const LyXParagraph::String(Buffer const * buffer, bool label)
 {
        BufferParams const & bparams = buffer->params;
        string s;
@@ -4559,7 +3940,7 @@ string LyXParagraph::String(Buffer const * buffer, bool label)
        if (label && !labelstring.empty())
 #endif
                s += labelstring + ' ';
-       string::size_type len = s.size();
+       string::size_type const len = s.size();
 
        for (LyXParagraph::size_type i = 0; i < size(); ++i) {
                value_type c = GetChar(i);
@@ -4567,15 +3948,9 @@ string LyXParagraph::String(Buffer const * buffer, bool label)
                        s += c;
                else if (c == META_INSET &&
                         GetInset(i)->LyxCode() == Inset::MATH_CODE) {
-#ifdef HAVE_SSTREAM
                        std::ostringstream ost;
                        GetInset(i)->Ascii(buffer, ost);
-#else
-                       ostrstream ost;
-                       GetInset(i)->Ascii(buffer, ost);
-                       ost << '\0';
-#endif
-                       s += subst(ost.str(),'\n',' ');
+                       s += subst(ost.str().c_str(),'\n',' ');
                }
        }
 
@@ -4595,24 +3970,11 @@ string LyXParagraph::String(Buffer const * buffer, bool label)
 }
 
 
-string LyXParagraph::String(Buffer const * buffer, 
+string const LyXParagraph::String(Buffer const * buffer, 
                            LyXParagraph::size_type beg,
                            LyXParagraph::size_type end)
 {
        string s;
-       int actcell = 0;
-       int cell = 1;
-#ifndef NEW_TABULAR
-       if (table)
-               for (LyXParagraph::size_type i = 0; i < beg; ++i)
-                       if (IsNewline(i)) {
-                               if (cell >= table->NumberOfCellsInRow(actcell))
-                                       cell = 1;
-                               else
-                                       ++cell;
-                               ++actcell;
-                       }
-#endif
 
 #ifndef NEW_INSETS
        if (beg == 0 && !IsDummy() && !labelstring.empty())
@@ -4626,24 +3988,9 @@ string LyXParagraph::String(Buffer const * buffer,
                if (IsPrintable(c))
                        s += c;
                else if (c == META_INSET) {
-#ifdef HAVE_SSTREAM
                        std::ostringstream ost;
                        GetInset(i)->Ascii(buffer, ost);
-#else
-                       ostrstream ost;
-                       GetInset(i)->Ascii(buffer, ost);
-                       ost << '\0';
-#endif
-                       s += ost.str();
-               } else if (table && IsNewlineChar(c)) {
-                       if (cell >= table->NumberOfCellsInRow(actcell)) {
-                               s += '\n';
-                               cell = 1;
-                       } else {
-                               s += ' ';
-                               ++cell;
-                       }
-                       ++actcell;
+                       s += ost.str().c_str();
                }
        }
 
@@ -4651,7 +3998,7 @@ string LyXParagraph::String(Buffer const * buffer,
 }
 
 
-void LyXParagraph::SetInsetOwner(Inset *i)
+void LyXParagraph::SetInsetOwner(Inset * i)
 {
        inset_owner = i;
        for (InsetList::const_iterator cit = insetlist.begin();