]> git.lyx.org Git - lyx.git/blobdiff - src/tabular.C
Fix fuer #209
[lyx.git] / src / tabular.C
index d151ce58fc2155fdcbab65786f6e0bcbdb1388be..97b1a00ad92576017d52ff6138bc6fbfd303cf8c 100644 (file)
 // temporary until verified (08/08/2001 Jug)
 #define SPECIAL_COLUM_HANDLING 1
 
-#include <algorithm>
-#include <cstdlib>
-
 #include "tabular.h"
 #include "debug.h"
 #include "vspace.h"
 #include "layout.h"
-#include "frontends/Alert.h"
 #include "buffer.h"
 #include "BufferView.h"
 #include "Painter.h"
 #include "LaTeXFeatures.h"
+#include "insets/insettabular.h"
+#include "insets/insettext.h"
 #include "support/lstrings.h"
 #include "support/lyxmanip.h"
 #include "support/LAssert.h"
-#include "insets/insettabular.h"
-#include "insets/insettext.h"
+#include "frontends/Alert.h"
 #include "gettext.h"
+#include "tabular_funcs.h"
+
+#include <algorithm>
+#include <cstdlib>
 
 using std::ostream;
 using std::istream;
@@ -300,11 +301,13 @@ void LyXTabular::AppendColumn(int cell)
                        c_info[i][j] = cell_info[i][j - 1];
                }
                // care about multicolumns
-               if (c_info[i][column + 1].multicolumn==CELL_BEGIN_OF_MULTICOLUMN) {
+               if (c_info[i][column + 1].multicolumn==CELL_BEGIN_OF_MULTICOLUMN)
+               {
                        c_info[i][column + 1].multicolumn = CELL_PART_OF_MULTICOLUMN;
                }
-               if ((column + 1) == columns_ ||
-                       c_info[i][column + 2].multicolumn != CELL_PART_OF_MULTICOLUMN) {
+               if ((column + 2) >= columns_ ||
+                       c_info[i][column + 2].multicolumn != CELL_PART_OF_MULTICOLUMN)
+               {
                        c_info[i][column + 1].multicolumn = LyXTabular::CELL_NORMAL;
                }
        }
@@ -549,7 +552,7 @@ int LyXTabular::GetAdditionalHeight(int row) const
        bool top = true;
        bool bottom = true;
 
-       for (int column = 0; column < columns_ - 1 && bottom; ++column) {
+       for (int column = 0; column < columns_ && bottom; ++column) {
                switch (cell_info[row - 1][column].multicolumn) {
                case LyXTabular::CELL_BEGIN_OF_MULTICOLUMN:
                        bottom = cell_info[row - 1][column].bottom_line;
@@ -558,7 +561,7 @@ int LyXTabular::GetAdditionalHeight(int row) const
                        bottom = row_info[row - 1].bottom_line;
                }
        }
-       for (int column = 0; column < columns_ - 1 && top; ++column) {
+       for (int column = 0; column < columns_ && top; ++column) {
                switch (cell_info[row][column].multicolumn){
                case LyXTabular::CELL_BEGIN_OF_MULTICOLUMN:
                        top = cell_info[row][column].top_line;
@@ -999,114 +1002,6 @@ int LyXTabular::right_column_of_cell(int cell) const
 }
 
 
-// Perfect case for a template... (Lgb)
-// or perhaps not...
-#if 1
-template<class T>
-string const write_attribute(string const & name, T const & t)
-{
-       string str = " " + name + "=\"" + tostr(t) + "\"";
-       return str;
-}
-
-template <>
-string const write_attribute(string const & name, bool const & b)
-{
-       return write_attribute(name, int(b));
-}
-
-template <>
-string const write_attribute(string const & name, LyXLength const & value)
-{
-       return write_attribute(name, value.asString());
-}
-#else
-
-string const write_attribute(string const & name, int value)
-{
-       string str = " " + name + "=\"" + tostr(value) + "\"";
-       return str;
-}
-
-
-string const write_attribute(string const & name, string const & value)
-{
-       string str = " " + name + "=\"" + value + "\"";
-       return str;
-}
-
-
-string const write_attribute(string const & name, bool value)
-{
-       string str = " " + name + "=\"" + tostr(static_cast<int>(value)) + "\"";
-       return str;
-}
-
-
-string const write_attribute(string const & name, LyXLength const & value)
-{
-       string str = " " + name + "=\"" + value.asString() + "\"";
-       return str;
-}
-#endif
-
-
-template<>
-inline
-string const tostr(LyXAlignment const & num)
-{
-       switch(num) {
-       case LYX_ALIGN_NONE:
-               return "none";
-       case LYX_ALIGN_BLOCK:
-               return "block";
-       case LYX_ALIGN_LEFT:
-               return "left";
-       case LYX_ALIGN_CENTER:
-               return "center";
-       case LYX_ALIGN_RIGHT:
-               return "right";
-       case LYX_ALIGN_LAYOUT:
-               return "layout";
-       case LYX_ALIGN_SPECIAL:
-               return "special";
-       }
-       return string();
-}
-
-
-template<>
-inline
-string const tostr(LyXTabular::VAlignment const & num)
-{
-       switch(num) {
-       case LyXTabular::LYX_VALIGN_TOP:
-               return "top";
-       case LyXTabular::LYX_VALIGN_CENTER:
-               return "center";
-       case LyXTabular::LYX_VALIGN_BOTTOM:
-               return "bottom";
-       }
-       return string();
-}
-
-
-template<>
-inline
-string const tostr(LyXTabular::BoxType const & num)
-{
-       switch(num) {
-       case LyXTabular::BOX_NONE:
-               return "none";
-       case LyXTabular::BOX_PARBOX:
-               return "parbox";
-       case LyXTabular::BOX_MINIPAGE:
-               return "minipage";
-       }
-       return string();
-}
-
-
 void LyXTabular::Write(Buffer const * buf, ostream & os) const
 {
        // header line
@@ -1175,165 +1070,6 @@ void LyXTabular::Write(Buffer const * buf, ostream & os) const
 }
 
 
-namespace {
-
-// I would have liked a fromstr template a lot better. (Lgb)
-
-inline
-bool string2type(string const str, LyXAlignment & num)
-{
-       if (str == "none")
-               num = LYX_ALIGN_NONE;
-       else if (str == "block")
-               num = LYX_ALIGN_BLOCK;
-       else if (str == "left")
-               num = LYX_ALIGN_LEFT;
-       else if (str == "center")
-               num = LYX_ALIGN_CENTER;
-       else if (str == "right")
-               num = LYX_ALIGN_RIGHT;
-       else
-               return false;
-       return true;
-}
-
-
-inline
-bool string2type(string const str, LyXTabular::VAlignment & num)
-{
-       if (str == "top")
-               num = LyXTabular::LYX_VALIGN_TOP;
-       else if (str == "center")
-               num = LyXTabular::LYX_VALIGN_CENTER;
-       else if (str == "bottom")
-               num = LyXTabular::LYX_VALIGN_BOTTOM;
-       else
-               return false;
-       return true;
-}
-
-
-inline
-bool string2type(string const str, LyXTabular::BoxType & num)
-{
-       if (str == "none")
-               num = LyXTabular::BOX_NONE;
-       else if (str == "parbox")
-               num = LyXTabular::BOX_PARBOX;
-       else if (str == "minipage")
-               num = LyXTabular::BOX_MINIPAGE;
-       else
-               return false;
-       return true;
-}
-
-
-inline
-bool string2type(string const str, bool & num)
-{
-       if (str == "true")
-               num = true;
-       else if (str == "false")
-               num = false;
-       else
-               return false;
-       return true;
-}
-
-
-bool getTokenValue(string const & str, const char * token, string & ret)
-{
-       size_t token_length = strlen(token);
-       string::size_type pos = str.find(token);
-
-       if (pos == string::npos || pos + token_length + 1 >= str.length()
-               || str[pos + token_length] != '=')
-               return false;
-       ret.erase();
-       pos += token_length + 1;
-       char ch = str[pos];
-       if ((ch != '"') && (ch != '\'')) { // only read till next space
-               ret += ch;
-               ch = ' ';
-       }
-       while ((pos < str.length() - 1) && (str[++pos] != ch))
-               ret += str[pos];
-
-       return true;
-}
-
-
-bool getTokenValue(string const & str, const char * token, int & num)
-{
-       string tmp;
-       if (!getTokenValue(str, token, tmp))
-               return false;
-       num = strToInt(tmp);
-       return true;
-}
-
-
-bool getTokenValue(string const & str, const char * token, LyXAlignment & num)
-{
-       string tmp;
-       if (!getTokenValue(str, token, tmp))
-               return false;
-       return string2type(tmp, num);
-}
-
-
-bool getTokenValue(string const & str, const char * token,
-                                  LyXTabular::VAlignment & num)
-{
-       string tmp;
-       if (!getTokenValue(str, token, tmp))
-               return false;
-       return string2type(tmp, num);
-}
-
-
-bool getTokenValue(string const & str, const char * token,
-                                  LyXTabular::BoxType & num)
-{
-       string tmp;
-       if (!getTokenValue(str, token, tmp))
-               return false;
-       return string2type(tmp, num);
-}
-
-
-bool getTokenValue(string const & str, const char * token, bool & flag)
-{
-       string tmp;
-       if (!getTokenValue(str, token, tmp))
-               return false;
-       return string2type(tmp, flag);
-}    
-
-
-bool getTokenValue(string const & str, const char * token, LyXLength & len)
-{
-       string tmp;
-       if (!getTokenValue(str, token, tmp))
-               return false;
-       return isValidLength(tmp, &len);
-}    
-
-
-inline
-void l_getline(istream & is, string & str)
-{
-       str.erase();
-       while (str.empty()) {
-               getline(is, str);
-               if (!str.empty() && str[str.length() - 1] == '\r')
-                       str.erase(str.length() - 1);
-       }
-}
-
-} // namespace anon
-
-
 void LyXTabular::Read(Buffer const * buf, LyXLex & lex)
 {
        string line;
@@ -1355,6 +1091,80 @@ void LyXTabular::Read(Buffer const * buf, LyXLex & lex)
                ReadNew(buf, is, lex, line, version);
 }
 
+void LyXTabular::setHeaderFooterRows(int hr, int fhr, int fr, int lfr)
+{
+       // set header info
+       while(hr > 0) {
+               row_info[--hr].endhead = true;
+       }
+       // set firstheader info
+       if (fhr && (fhr < rows_)) {
+               if (row_info[fhr].endhead) {
+                       while(fhr > 0) {
+                               row_info[--fhr].endfirsthead = true;
+                               row_info[fhr].endhead = false;
+                       }
+               } else if (row_info[fhr-1].endhead) {
+                       endfirsthead.empty = true;
+               } else {
+                       while((fhr > 0) && !row_info[--fhr].endhead) {
+                               row_info[fhr].endfirsthead = true;
+                       }
+               }
+       }
+       // set footer info
+       if (fr && (fr < rows_)) {
+               if (row_info[fr].endhead && row_info[fr-1].endhead) {
+                       while((fr > 0) && !row_info[--fr].endhead) {
+                               row_info[fr].endfoot = true;
+                               row_info[fr].endhead = false;
+                       }
+               } else if (row_info[fr].endfirsthead && row_info[fr-1].endfirsthead) {
+                       while((fr > 0) && !row_info[--fr].endfirsthead) {
+                               row_info[fr].endfoot = true;
+                               row_info[fr].endfirsthead = false;
+                       }
+               } else if (!row_info[fr-1].endhead && !row_info[fr-1].endfirsthead) {
+                       while((fr > 0) && !row_info[--fr].endhead &&
+                                 !row_info[fr].endfirsthead)
+                       {
+                               row_info[fr].endfoot = true;
+                       }
+               }
+       }
+       // set lastfooter info
+       if (lfr && (lfr < rows_)) {
+               if (row_info[lfr].endhead && row_info[lfr-1].endhead) {
+                       while((lfr > 0) && !row_info[--lfr].endhead) {
+                               row_info[lfr].endlastfoot = true;
+                               row_info[lfr].endhead = false;
+                       }
+               } else if (row_info[lfr].endfirsthead &&
+                                  row_info[lfr-1].endfirsthead)
+               {
+                       while((lfr > 0) && !row_info[--lfr].endfirsthead) {
+                               row_info[lfr].endlastfoot = true;
+                               row_info[lfr].endfirsthead = false;
+                       }
+               } else if (row_info[lfr].endfoot && row_info[lfr-1].endfoot) {
+                       while((lfr > 0) && !row_info[--lfr].endfoot) {
+                               row_info[lfr].endlastfoot = true;
+                               row_info[lfr].endfoot = false;
+                       }
+               } else if (!row_info[fr-1].endhead && !row_info[fr-1].endfirsthead &&
+                                  !row_info[fr-1].endfoot)
+               {
+                       while((lfr > 0) &&
+                                 !row_info[--lfr].endhead && !row_info[lfr].endfirsthead &&
+                                 !row_info[lfr].endfoot)
+                       {
+                               row_info[lfr].endlastfoot = true;
+                       }
+               } else if (haveLTFoot()) {
+                       endlastfoot.empty = true;
+               }
+       }
+}
 
 void LyXTabular::ReadNew(Buffer const * buf, istream & is,
                                                 LyXLex & lex, string const & l, int const version)
@@ -1375,7 +1185,14 @@ void LyXTabular::ReadNew(Buffer const * buf, istream & is,
        }
        getTokenValue(line, "rotate", rotate);
        getTokenValue(line, "islongtable", is_long_tabular);
-       // compatibility read for old longtable options
+       // compatibility read for old longtable options. Now we can make any
+       // row part of the header/footer type we want before it was strict
+       // sequential from the first row down (as LaTeX does it!). So now when
+       // we find a header/footer line we have to go up the rows and set it
+       // on all preceding rows till the first or one with already a h/f option
+       // set. If we find a firstheader on the same line as a header or a
+       // lastfooter on the same line as a footer then this should be set empty.
+       // (Jug 20011220)
        if (version < 3) {
                int hrow;
                int fhrow;
@@ -1386,14 +1203,7 @@ void LyXTabular::ReadNew(Buffer const * buf, istream & is,
                getTokenValue(line, "endfirsthead", fhrow);
                getTokenValue(line, "endfoot", frow);
                getTokenValue(line, "endlastfoot", lfrow);
-               if (abs(hrow) > 0)
-                       row_info[abs(hrow)-1].endhead = true;
-               if (abs(fhrow))
-                       row_info[abs(fhrow)-1].endfirsthead = true;
-               if (abs(frow))
-                       row_info[abs(frow)-1].endfoot = true;
-               if (abs(lfrow))
-                       row_info[abs(lfrow)-1].endlastfoot = true;
+               setHeaderFooterRows(abs(hrow), abs(fhrow), abs(frow), abs(lfrow));
        } else {
           getTokenValue(line, "firstHeadTopDL", endfirsthead.topDL);
           getTokenValue(line, "firstHeadBottomDL", endfirsthead.bottomDL);
@@ -1430,6 +1240,10 @@ void LyXTabular::ReadNew(Buffer const * buf, istream & is,
                }
                getTokenValue(line, "topline", row_info[i].top_line);
                getTokenValue(line, "bottomline", row_info[i].bottom_line);
+               getTokenValue(line, "endfirsthead", row_info[i].endfirsthead);
+               getTokenValue(line, "endhead", row_info[i].endhead);
+               getTokenValue(line, "endfoot", row_info[i].endfoot);
+               getTokenValue(line, "endlastfoot", row_info[i].endlastfoot);
                getTokenValue(line, "newpage", row_info[i].newpage);
                for (int j = 0; j < columns_; ++j) {
                        l_getline(is, line);
@@ -1536,10 +1350,7 @@ void LyXTabular::OldFormatRead(LyXLex & lex, string const & fl)
                cont_row_info = vector<int>(rows_arg);
                SetLongTabular(is_long_tabular_arg);
                SetRotateTabular(rotate_arg);
-               row_info[a].endhead = true;
-               row_info[b].endfirsthead = true;
-               row_info[c].endfoot = true;
-               row_info[d].endlastfoot = true;
+               setHeaderFooterRows(a+1, b+1 , c+1, d+1);
                for (i = 0; i < rows_; ++i) {
                        a = b = c = d = e = f = g = 0;
                        is >> a >> b >> c >> d;
@@ -1629,7 +1440,7 @@ void LyXTabular::OldFormatRead(LyXLex & lex, string const & fl)
 #ifndef NO_COMPABILITY
                        // Here we need to insert the inset_ert_contents into the last
                        // cell of the tabular.
-                       owner_->bufferOwner()->insertErtContents(par, pos, font);
+                       owner_->bufferOwner()->insertErtContents(par, pos);
 #endif
                        break;
                }
@@ -1886,14 +1697,19 @@ LyXTabular::BoxType LyXTabular::GetUsebox(int cell) const
 }
 
 
+///
+//  This are functions used for the longtable support
+///
 void LyXTabular::SetLTHead(int row, bool flag, ltType const & hd, bool first)
 {
        if (first) {
                endfirsthead = hd;
-               row_info[row].endfirsthead = flag;
+               if (hd.set)
+                       row_info[row].endfirsthead = flag;
        } else {
                endhead = hd;
-               row_info[row].endhead = flag;
+               if (hd.set)
+                       row_info[row].endhead = flag;
        }
 }
 
@@ -1901,6 +1717,7 @@ void LyXTabular::SetLTHead(int row, bool flag, ltType const & hd, bool first)
 bool LyXTabular::GetRowOfLTHead(int row, ltType & hd) const
 {
        hd = endhead;
+       hd.set = haveLTHead();
        return row_info[row].endhead;
 }
 
@@ -1908,6 +1725,7 @@ bool LyXTabular::GetRowOfLTHead(int row, ltType & hd) const
 bool LyXTabular::GetRowOfLTFirstHead(int row, ltType & hd) const
 {
        hd = endfirsthead;
+       hd.set = haveLTFirstHead();
        return row_info[row].endfirsthead;
 }
 
@@ -1916,10 +1734,12 @@ void LyXTabular::SetLTFoot(int row, bool flag, ltType const & fd, bool last)
 {
        if (last) {
                endlastfoot = fd;
-               row_info[row].endlastfoot = flag;
+               if (fd.set)
+                       row_info[row].endlastfoot = flag;
        } else {
                endfoot = fd;
-               row_info[row].endfoot = flag;
+               if (fd.set)
+                       row_info[row].endfoot = flag;
        }
 }
 
@@ -1927,6 +1747,7 @@ void LyXTabular::SetLTFoot(int row, bool flag, ltType const & fd, bool last)
 bool LyXTabular::GetRowOfLTFoot(int row, ltType & fd) const
 {
        fd = endfoot;
+       fd.set = haveLTFoot();
        return row_info[row].endfoot;
 }
 
@@ -1934,6 +1755,7 @@ bool LyXTabular::GetRowOfLTFoot(int row, ltType & fd) const
 bool LyXTabular::GetRowOfLTLastFoot(int row, ltType & fd) const
 {
        fd = endlastfoot;
+       fd.set = haveLTLastFoot();
        return row_info[row].endlastfoot;
 }
 
@@ -1950,6 +1772,52 @@ bool LyXTabular::GetLTNewPage(int row) const
 }
 
 
+bool LyXTabular::haveLTHead() const
+{
+       for(int i=0; i < rows_; ++i) {
+               if (row_info[i].endhead)
+                       return true;
+       }
+       return false;
+}
+
+
+bool LyXTabular::haveLTFirstHead() const
+{
+       if (endfirsthead.empty)
+               return false;
+       for(int i=0; i < rows_; ++i) {
+               if (row_info[i].endfirsthead)
+                       return true;
+       }
+       return false;
+}
+
+
+bool LyXTabular::haveLTFoot() const
+{
+       for(int i=0; i < rows_; ++i) {
+               if (row_info[i].endfoot)
+                       return true;
+       }
+       return false;
+}
+
+
+bool LyXTabular::haveLTLastFoot() const
+{
+       if (endlastfoot.empty)
+               return false;
+       for(int i=0; i < rows_; ++i) {
+               if (row_info[i].endlastfoot)
+                       return true;
+       }
+       return false;
+}
+
+
+// end longtable support functions
+
 bool LyXTabular::SetAscentOfRow(int row, int height)
 {
        if ((row >= rows_) || (row_info[row].ascent_of_row == height))
@@ -2179,11 +2047,146 @@ int LyXTabular::TeXCellPostamble(ostream & os, int cell) const
 }
 
 
-int LyXTabular::Latex(Buffer const * buf,
+int LyXTabular::TeXLongtableHeaderFooter(ostream & os, Buffer const * buf,
+                                         bool fragile, bool fp) const
+{
+       if (!is_long_tabular)
+               return 0;
+
+       int ret = 0;
+       // output header info
+       if (haveLTHead()) {
+               if (endhead.topDL) {
+                       os << "\\hline\n";
+                       ++ret;
+               }
+               for (int i = 0; i < rows_; ++i) {
+                       if (row_info[i].endhead) {
+                               ret += TeXRow(os, i, buf, fragile, fp);
+                       }
+               }
+               if (endhead.bottomDL) {
+                       os << "\\hline\n";
+                       ++ret;
+               }
+               os << "\\endhead\n";
+               ++ret;
+               if (endfirsthead.empty) {
+                       os << "\\endfirsthead\n";
+                       ++ret;
+               }
+       }
+       // output firstheader info
+       if (haveLTFirstHead()) {
+               if (endfirsthead.topDL) {
+                       os << "\\hline\n";
+                       ++ret;
+               }
+               for (int i = 0; i < rows_; ++i) {
+                       if (row_info[i].endfirsthead) {
+                               ret += TeXRow(os, i, buf, fragile, fp);
+                       }
+               }
+               if (endfirsthead.bottomDL) {
+                       os << "\\hline\n";
+                       ++ret;
+               }
+               os << "\\endfirsthead\n";
+               ++ret;
+       }
+       // output footer info
+       if (haveLTFoot()) {
+               if (endfoot.topDL) {
+                       os << "\\hline\n";
+                       ++ret;
+               }
+               for (int i = 0; i < rows_; ++i) {
+                       if (row_info[i].endfoot) {
+                               ret += TeXRow(os, i, buf, fragile, fp);
+                       }
+               }
+               if (endfoot.bottomDL) {
+                       os << "\\hline\n";
+                       ++ret;
+               }
+               os << "\\endfoot\n";
+               ++ret;
+               if (endlastfoot.empty) {
+                       os << "\\endlastfoot\n";
+                       ++ret;
+               }
+       }
+       // output lastfooter info
+       if (haveLTLastFoot()) {
+               if (endlastfoot.topDL) {
+                       os << "\\hline\n";
+                       ++ret;
+               }
+               for (int i = 0; i < rows_; ++i) {
+                       if (row_info[i].endlastfoot) {
+                               ret += TeXRow(os, i, buf, fragile, fp);
+                       }
+               }
+               if (endlastfoot.bottomDL) {
+                       os << "\\hline\n";
+                       ++ret;
+               }
+               os << "\\endlastfoot\n";
+               ++ret;
+       }
+       return ret;
+}
+
+
+bool LyXTabular::isValidRow(int const row) const
+{
+       if (!is_long_tabular)
+               return true;
+       return (!row_info[row].endhead && !row_info[row].endfirsthead &&
+                       !row_info[row].endfoot && !row_info[row].endlastfoot);
+}
+
+
+int LyXTabular::TeXRow(ostream & os, int const i, Buffer const * buf,
+                       bool fragile, bool fp) const
+{
+       int ret = 0;
+       int cell = GetCellNumber(i, 0);
+
+       ret += TeXTopHLine(os, i);
+       for (int j = 0; j < columns_; ++j) {
+               if (IsPartOfMultiColumn(i,j))
+                       continue;
+               ret += TeXCellPreamble(os, cell);
+               InsetText * inset = GetCellInset(cell);
+
+               bool rtl = inset->paragraph()->isRightToLeftPar(buf->params) &&
+                       inset->paragraph()->size() > 0 && GetPWidth(cell).zero();
+
+               if (rtl)
+                       os << "\\R{";
+               ret += inset->latex(buf, os, fragile, fp);
+               if (rtl)
+                       os << "}";
+
+               ret += TeXCellPostamble(os, cell);
+               if (!IsLastCellInRow(cell)) { // not last cell in row
+                       os << "&\n";
+                       ++ret;
+               }
+               ++cell;
+       }
+       os << "\\\\\n";
+       ++ret;
+       ret += TeXBottomHLine(os, i);
+       return ret;
+}
+
+
+int LyXTabular::latex(Buffer const * buf,
                                          ostream & os, bool fragile, bool fp) const
 {
        int ret = 0;
-       int cell = 0;
 
        //+---------------------------------------------------------------------
        //+                      first the opening preamble                    +
@@ -2238,70 +2241,16 @@ int LyXTabular::Latex(Buffer const * buf,
        os << "}\n";
        ++ret;
 
+       ret += TeXLongtableHeaderFooter(os, buf, fragile, fp);
+       
        //+---------------------------------------------------------------------
        //+                      the single row and columns (cells)            +
        //+---------------------------------------------------------------------
 
        for (int i = 0; i < rows_; ++i) {
-               ret += TeXTopHLine(os, i);
-#warning Implement top double lines for LT Header/Footers
-#if 0
-               if (ret > bret) {
-                       ret += TeXBottomHLine(os, i-1);
-                       ret += TeXTopHLine(os, i);
-               }
-#endif
-               for (int j = 0; j < columns_; ++j) {
-                       if (IsPartOfMultiColumn(i,j))
-                               continue;
-                       ret += TeXCellPreamble(os, cell);
-                       InsetText * inset = GetCellInset(cell);
-
-                       bool rtl = inset->paragraph()->isRightToLeftPar(buf->params) &&
-                                       inset->paragraph()->size() > 0 && GetPWidth(cell).zero();
-
-                       if (rtl)
-                               os << "\\R{";
-                       ret += inset->latex(buf, os, fragile, fp);
-                       if (rtl)
-                               os << "}";
-
-                       ret += TeXCellPostamble(os, cell);
-                       if (!IsLastCellInRow(cell)) { // not last cell in row
-                               os << "&\n";
-                               ++ret;
-                       }
-                       ++cell;
-               }
-               os << "\\\\\n";
-               ++ret;
-               ret += TeXBottomHLine(os, i);
-               if (IsLongTabular()) {
-                       if (row_info[i].endhead) {
-                               if (endhead.bottomDL)
-                                       ret += TeXBottomHLine(os, i);
-                               os << "\\endhead\n";
-                               ++ret;
-                       }
-                       if (row_info[i].endfirsthead) {
-                               if (endfirsthead.bottomDL)
-                                       ret += TeXBottomHLine(os, i);
-                               os << "\\endfirsthead\n";
-                               ++ret;
-                       }
-                       if (row_info[i].endfoot) {
-                               if (endfoot.bottomDL)
-                                       ret += TeXBottomHLine(os, i);
-                               os << "\\endfoot\n";
-                               ++ret;
-                       }
-                       if (row_info[i].endlastfoot) {
-                               if (endlastfoot.bottomDL)
-                                       ret += TeXBottomHLine(os, i);
-                               os << "\\endlastfoot\n";
-                               ++ret;
-                       }
-                       if (row_info[i].newpage) {
+               if (isValidRow(i)) {
+                       ret += TeXRow(os, i, buf, fragile, fp);
+                       if (is_long_tabular && row_info[i].newpage) {
                                os << "\\newpage\n";
                                ++ret;
                        }
@@ -2376,7 +2325,7 @@ int LyXTabular::docbookRow(Buffer const * buf, ostream & os, int row) const
 }      
 
 
-int LyXTabular::DocBook(Buffer const * buf, ostream & os) const
+int LyXTabular::docBook(Buffer const * buf, ostream & os) const
 {
        int ret = 0;
 
@@ -2460,20 +2409,11 @@ int LyXTabular::DocBook(Buffer const * buf, ostream & os) const
        return ret;
 }
 
-
-namespace {
-
-       inline
-       void print_n_chars(ostream & os, unsigned char ch, int n)
-       {
-               os << string(n, ch);
-       }
-
-} // namespace anon
-
-
-int LyXTabular::AsciiTopHLine(ostream & os, int row,
-                                                         vector<unsigned int> const & clen) const
+//--
+// ASCII export function and helpers
+//--
+int LyXTabular::asciiTopHLine(ostream & os, int row,
+                              vector<unsigned int> const & clen) const
 {
        int const fcell = GetFirstCellInRow(row);
        int const n = NumberOfCellsInRow(fcell) + fcell;
@@ -2504,7 +2444,7 @@ int LyXTabular::AsciiTopHLine(ostream & os, int row,
                int len = clen[column];
                while (IsPartOfMultiColumn(row, ++column))
                        len += clen[column] + 4;
-               print_n_chars(os, ch, len);
+               os << string(len, ch);
                if (TopLine(i)) {
                        if (RightLine(i))
                                os << "-+";
@@ -2519,8 +2459,8 @@ int LyXTabular::AsciiTopHLine(ostream & os, int row,
 }
 
 
-int LyXTabular::AsciiBottomHLine(ostream & os, int row,
-                                                                vector<unsigned int> const & clen) const
+int LyXTabular::asciiBottomHLine(ostream & os, int row,
+                                 vector<unsigned int> const & clen) const
 {
        int const fcell = GetFirstCellInRow(row);
        int const n = NumberOfCellsInRow(fcell) + fcell;
@@ -2551,7 +2491,7 @@ int LyXTabular::AsciiBottomHLine(ostream & os, int row,
                int len = clen[column];
                while (IsPartOfMultiColumn(row, ++column))
                        len += clen[column] + 4;
-               print_n_chars(os, ch, len);
+               os << string(len, ch);
                if (BottomLine(i)) {
                        if (RightLine(i))
                                os << "-+";
@@ -2566,13 +2506,19 @@ int LyXTabular::AsciiBottomHLine(ostream & os, int row,
 }
 
 
-int LyXTabular::AsciiPrintCell(Buffer const * buf, ostream & os,
-                              int cell, int row, int column,
-                              vector<unsigned int> const & clen) const
+int LyXTabular::asciiPrintCell(Buffer const * buf, ostream & os,
+                               int cell, int row, int column,
+                               vector<unsigned int> const & clen,
+                               bool onlydata) const
 {
        ostringstream sstr;
        int ret = GetCellInset(cell)->ascii(buf, sstr, 0);
 
+       if (onlydata) {
+               os << sstr.str();
+               return ret;
+       }
+       
        if (LeftLine(cell))
                os << "| ";
        else
@@ -2613,7 +2559,8 @@ int LyXTabular::AsciiPrintCell(Buffer const * buf, ostream & os,
 }
 
 
-int LyXTabular::Ascii(Buffer const * buf, ostream & os) const
+int LyXTabular::ascii(Buffer const * buf, ostream & os, int const depth,
+                                         bool onlydata, unsigned char delim) const
 {
        int ret = 0;
 
@@ -2622,49 +2569,68 @@ int LyXTabular::Ascii(Buffer const * buf, ostream & os) const
        //+---------------------------------------------------------------------
        vector<unsigned int> clen(columns_);
 
-       // first all non (real) multicolumn cells!
-       for (int j = 0; j < columns_; ++j) {
-               clen[j] = 0;
-               for (int i = 0; i < rows_; ++i) {
-                       int cell = GetCellNumber(i, j);
-                       if (IsMultiColumn(cell, true))
-                               continue;
-                       ostringstream sstr;
-                       GetCellInset(cell)->ascii(buf, sstr, 0);
-                       if (clen[j] < sstr.str().length())
-                               clen[j] = sstr.str().length();
+       if (!onlydata) {
+               // first all non (real) multicolumn cells!
+               for (int j = 0; j < columns_; ++j) {
+                       clen[j] = 0;
+                       for (int i = 0; i < rows_; ++i) {
+                               int cell = GetCellNumber(i, j);
+                               if (IsMultiColumn(cell, true))
+                                       continue;
+                               ostringstream sstr;
+                               GetCellInset(cell)->ascii(buf, sstr, 0);
+                               if (clen[j] < sstr.str().length())
+                                       clen[j] = sstr.str().length();
+                       }
                }
-       }
-       // then all (real) multicolumn cells!
-       for (int j = 0; j < columns_; ++j) {
-               for (int i = 0; i < rows_; ++i) {
-                       int cell = GetCellNumber(i, j);
-                       if (!IsMultiColumn(cell, true) || IsPartOfMultiColumn(i, j))
-                               continue;
-                       ostringstream sstr;
-                       GetCellInset(cell)->ascii(buf, sstr, 0);
-                       int len = int(sstr.str().length());
-                       int const n = cells_in_multicolumn(cell);
-                       for (int k = j; (len > 0) && (k < (j + n - 1)); ++k)
-                               len -= clen[k];
-                       if (len > int(clen[j + n - 1]))
-                               clen[j + n - 1] = len;
+               // then all (real) multicolumn cells!
+               for (int j = 0; j < columns_; ++j) {
+                       for (int i = 0; i < rows_; ++i) {
+                               int cell = GetCellNumber(i, j);
+                               if (!IsMultiColumn(cell, true) || IsPartOfMultiColumn(i, j))
+                                       continue;
+                               ostringstream sstr;
+                               GetCellInset(cell)->ascii(buf, sstr, 0);
+                               int len = int(sstr.str().length());
+                               int const n = cells_in_multicolumn(cell);
+                               for (int k = j; (len > 0) && (k < (j + n - 1)); ++k)
+                                       len -= clen[k];
+                               if (len > int(clen[j + n - 1]))
+                                       clen[j + n - 1] = len;
+                       }
                }
        }
        int cell = 0;
        for (int i = 0; i < rows_; ++i) {
-               AsciiTopHLine(os, i, clen);
+               if (!onlydata) {
+                       if (asciiTopHLine(os, i, clen)) {
+                               for (int j = 0; j < depth; ++j)
+                                       os << "  ";
+                       }
+               }
                for (int j = 0; j < columns_; ++j) {
                        if (IsPartOfMultiColumn(i,j))
                                continue;
-                       ret += AsciiPrintCell(buf, os, cell, i, j, clen);
+                       if (onlydata && j > 0)
+                               os << delim;
+                       ret += asciiPrintCell(buf, os, cell, i, j, clen, onlydata);
                        ++cell;
                }
                os << endl;
-               AsciiBottomHLine(os, i, clen);
+               if (!onlydata) {
+                       for (int j = 0; j < depth; ++j)
+                               os << "  ";
+                       if (asciiBottomHLine(os, i, clen)) {
+                               for (int j = 0; j < depth; ++j)
+                                       os << "  ";
+                       }
+               }
        }
        return ret;
 }
+//--
+// end ascii export
+//--
 
 
 InsetText * LyXTabular::GetCellInset(int cell) const
@@ -2681,13 +2647,53 @@ InsetText * LyXTabular::GetCellInset(int row, int column) const
 }
 
 
+int LyXTabular::GetCellFromInset(Inset const * inset, int maybe_cell) const
+{
+       // is this inset part of the tabular?
+       if (!inset || inset->owner() != owner_) {
+               lyxerr[Debug::INSETTEXT]
+                       << "this is not a cell of the tabular!" << endl;
+               return -1;
+       }
+       
+       const int save_cur_cell = cur_cell;
+       int cell = cur_cell;
+       if (GetCellInset(cell) != inset) {
+               cell = maybe_cell;
+               if (cell == -1 || GetCellInset(cell) != inset) {
+                       cell = -1;
+               }
+       }
+       
+       if (cell == -1) {
+               for (cell = GetNumberOfCells(); cell >= 0; --cell) {
+                       if (GetCellInset(cell) == inset)
+                               break;
+               }
+               lyxerr[Debug::INSETTEXT]
+                        << "LyXTabular::GetCellFromInset: "
+                                   << "cell=" << cell
+                                   << ", cur_cell=" << save_cur_cell 
+                                   << ", maybe_cell=" << maybe_cell
+                                   << endl;
+               // We should have found a cell at this point
+               if (cell == -1) {
+                       lyxerr << "LyXTabular::GetCellFromInset: "
+                              << "Cell not found!" << endl;
+               }
+       }
+       
+       return cell;
+}
+
+
 void LyXTabular::Validate(LaTeXFeatures & features) const
 {
        if (IsLongTabular())
                features.require("longtable");
        if (NeedRotating())
                features.require("rotating");
-       for (int cell = 0; !features.isRequired("array") && (cell < numberofcells); ++cell) {
+       for (int cell = 0; cell < numberofcells; ++cell) {
                if (GetVAlignment(cell) != LYX_VALIGN_TOP)
                        features.require("array");
                GetCellInset(cell)->validate(features);