]> git.lyx.org Git - lyx.git/blobdiff - src/tabular.h
some source cleanup from John
[lyx.git] / src / tabular.h
index 5430545b83a8f1d7187cbec1784fd1a389e170b9..b95a38d280da5834ac5624209ae968f7702327f3 100644 (file)
@@ -6,6 +6,8 @@
  *      
  *           Copyright 2000 The LyX Team.
  *
+ *           @author: Jürgen Vigna
+ *
  * ====================================================== */
 #ifndef TABULAR_H
 #define TABULAR_H
 
 #include "lyxlex.h"
 #include "LString.h"
+#include "insets/insettext.h"
 
 class InsetTabular;
-class InsetText;
 class LaTeXFeatures;
+class Buffer;
 
 /* The features the text class offers for tables */ 
 
 ///
 class LyXTabular  {
 public:
-    // Are the values of these enums important? (Lgb)
-    enum {
+    ///
+    enum Feature {
+       ///
        APPEND_ROW = 0,
+       ///
        APPEND_COLUMN,
+       ///
        DELETE_ROW,
+       ///
        DELETE_COLUMN,
+       ///
        TOGGLE_LINE_TOP,
+       ///
        TOGGLE_LINE_BOTTOM,
+       ///
        TOGGLE_LINE_LEFT,
+       ///
        TOGGLE_LINE_RIGHT,
-       ALIGN_LEFT, // what are these alignment enums used for?
+       ///
+       ALIGN_LEFT,
+       ///
        ALIGN_RIGHT,
+       ///
        ALIGN_CENTER,
-       DELETE_TABULAR,
+       ///
+       VALIGN_TOP,
+       ///
+       VALIGN_BOTTOM,
+       ///
+       VALIGN_CENTER,
+       ///
+       M_TOGGLE_LINE_TOP,
+       ///
+       M_TOGGLE_LINE_BOTTOM,
+       ///
+       M_TOGGLE_LINE_LEFT,
+       ///
+       M_TOGGLE_LINE_RIGHT,
+       ///
+       M_ALIGN_LEFT,
+       ///
+       M_ALIGN_RIGHT,
+       ///
+       M_ALIGN_CENTER,
+       ///
+       M_VALIGN_TOP,
+       ///
+       M_VALIGN_BOTTOM,
+       ///
+       M_VALIGN_CENTER,
+       ///
        MULTICOLUMN,
+       ///
        SET_ALL_LINES,
+       ///
        UNSET_ALL_LINES,
+       ///
        SET_LONGTABULAR,
+       ///
        UNSET_LONGTABULAR,
+       ///
        SET_PWIDTH,
+       ///
+       SET_MPWIDTH,
+       ///
        SET_ROTATE_TABULAR,
+       ///
        UNSET_ROTATE_TABULAR,
+       ///
        SET_ROTATE_CELL,
+       ///
        UNSET_ROTATE_CELL,
-       SET_LINEBREAKS,
+       ///
+       SET_USEBOX,
+       ///
        SET_LTHEAD,
+       ///
        SET_LTFIRSTHEAD,
+       ///
        SET_LTFOOT,
+       ///
        SET_LTLASTFOOT,
+       ///
        SET_LTNEWPAGE,
+       ///
        SET_SPECIAL_COLUMN,
-       SET_SPECIAL_MULTI
+       ///
+       SET_SPECIAL_MULTI,
+       ///
+       LAST_ACTION
     };
-
+    ///
     enum {
+       ///
        CELL_NORMAL = 0,
+       ///
        CELL_BEGIN_OF_MULTICOLUMN,
+       ///
        CELL_PART_OF_MULTICOLUMN
     };
+
+    ///
+    enum VAlignment {
+       ///
+       LYX_VALIGN_TOP = 0,
+       ///
+       LYX_VALIGN_BOTTOM = 1,
+       ///
+       LYX_VALIGN_CENTER = 2
+    };
+
+    enum BoxType {
+       ///
+       BOX_NONE = 0,
+       ///
+       BOX_PARBOX = 1,
+       ///
+       BOX_MINIPAGE = 2
+    };
+
     /* konstruktor */
     ///
     LyXTabular(InsetTabular *, int columns_arg, int rows_arg);
     ///
-    ///
     LyXTabular(InsetTabular *, LyXTabular const &);
     ///
     explicit
-    LyXTabular(InsetTabular *, LyXLex & lex);
-    ///
-    ~LyXTabular();
+    LyXTabular(Buffer const *, InsetTabular *, LyXLex & lex);
     ///
     LyXTabular & operator=(LyXTabular const &);
     ///
     LyXTabular * Clone(InsetTabular *);
     
     /// Returns true if there is a topline, returns false if not
-    bool TopLine(int cell) const;
+    bool TopLine(int cell, bool onlycolumn = false) const;
     /// Returns true if there is a topline, returns false if not
-    bool BottomLine(int cell) const;
+    bool BottomLine(int cell, bool onlycolumn = false) const;
     /// Returns true if there is a topline, returns false if not
-    bool LeftLine(int cell) const;
+    bool LeftLine(int cell, bool onlycolumn = false) const;
     /// Returns true if there is a topline, returns false if not
-    bool RightLine(int cell) const;
+    bool RightLine(int cell, bool onlycolumn = false) const;
     
     ///
     bool TopAlreadyDrawed(int cell) const;
@@ -116,34 +197,44 @@ public:
     int GetDescentOfRow(int row) const;
     ///
     int GetHeightOfTabular() const;
-    ///
-    void SetAscentOfRow(int row, int height);
-    ///
-    void SetDescentOfRow(int row, int height);
+    /// Returns true if a complete update is necessary, otherwise false
+    bool SetAscentOfRow(int row, int height);
+    /// Returns true if a complete update is necessary, otherwise false
+    bool SetDescentOfRow(int row, int height);
     /// Returns true if a complete update is necessary, otherwise false
     bool SetWidthOfCell(int cell, int new_width);
     /// Returns true if a complete update is necessary, otherwise false
     bool SetAllLines(int cell, bool line);
     /// Returns true if a complete update is necessary, otherwise false
-    bool SetTopLine(int cell, bool line);
+    bool SetTopLine(int cell, bool line, bool onlycolumn=false);
     /// Returns true if a complete update is necessary, otherwise false
-    bool SetBottomLine(int cell, bool line);
+    bool SetBottomLine(int cell, bool line, bool onlycolumn=false);
     /// Returns true if a complete update is necessary, otherwise false
-    bool SetLeftLine(int cell, bool line);
+    bool SetLeftLine(int cell, bool line, bool onlycolumn=false);
     /// Returns true if a complete update is necessary, otherwise false
-    bool SetRightLine(int cell, bool line);
+    bool SetRightLine(int cell, bool line, bool onlycolumn=false);
     /// Returns true if a complete update is necessary, otherwise false
-    bool SetAlignment(int cell, char align);
+    bool SetAlignment(int cell, LyXAlignment align, bool onlycolumn = false);
+    /// Returns true if a complete update is necessary, otherwise false
+    bool SetVAlignment(int cell, VAlignment align, bool onlycolumn = false);
+    ///
+    bool SetColumnPWidth(int cell, string const & width);
+    ///
+    bool SetMColumnPWidth(int cell, string const & width);
     ///
-    bool SetPWidth(int cell, string const & width);
+    bool SetAlignSpecial(int cell, string const & special, Feature what);
     ///
-    bool SetAlignSpecial(int cell, string const & special, int what);
+    LyXAlignment GetAlignment(int cell, bool onlycolumn = false) const;
     ///
-    char GetAlignment(int cell) const; // add approp. signedness
+    VAlignment GetVAlignment(int cell, bool onlycolumn = false) const;
     ///
-    string GetPWidth(int cell) const;
+    string const GetPWidth(int cell) const;
     ///
-    string GetAlignSpecial(int cell, int what) const;
+    string const GetColumnPWidth(int cell) const;
+    ///
+    string const GetMColumnPWidth(int cell) const;
+    ///
+    string const GetAlignSpecial(int cell, int what) const;
     ///
     int GetWidthOfCell(int cell) const;
     ///
@@ -151,11 +242,11 @@ public:
     ///
     void AppendRow(int cell);
     ///
-    void DeleteRow(int cell);
+    void DeleteRow(int row);
     ///
     void AppendColumn(int cell);
     ///
-    void DeleteColumn(int cell);
+    void DeleteColumn(int column);
     ///
     bool IsFirstCellInRow(int cell) const;
     ///
@@ -169,31 +260,40 @@ public:
     ///
     int NumberOfCellsInRow(int cell) const;
     ///
-    void Write(std::ostream &) const;
+    void Write(Buffer const *, std::ostream &) const;
     ///
-    void Read(LyXLex &);
+    void Read(Buffer const *, LyXLex &);
     ///
     void OldFormatRead(LyXLex &, string const &);
-    ///
-    /// helper function for Latex returns number of newlines
+    //
+    // helper function for Latex returns number of newlines
     ///
     int TeXTopHLine(std::ostream &, int row) const;
+    ///
     int TeXBottomHLine(std::ostream &, int row) const;
+    ///
     int TeXCellPreamble(std::ostream &, int cell) const;
+    ///
     int TeXCellPostamble(std::ostream &, int cell) const;
     ///
-    int Latex(std::ostream &, bool, bool) const;
+    int Latex(Buffer const *, std::ostream &, bool, bool) const;
     ///
-    int DocBookEndOfCell(std::ostream &, int cell, int & depth) const;
-#if 0
+    int DocBook(Buffer const * buf, std::ostream & os) const;
     ///
-    int RoffEndOfCell(std::ostream &, int cell);
-#endif
+    // helper function for Latex returns number of newlines
     ///
-    char const * GetDocBookAlign(int cell, bool isColumn = false) const;
-
+    int AsciiTopHLine(std::ostream &, int row,
+                     std::vector<unsigned int> const &) const;
+    ///
+    int AsciiBottomHLine(std::ostream &, int row,
+                        std::vector<unsigned int> const &) const;
+    ///
+    int AsciiPrintCell(Buffer const *, std::ostream &, int cell, int row,
+                      int column, std::vector<unsigned int> const &) const;
+    ///
+    int Ascii(Buffer const *, std::ostream &) const;
     ///
-    bool IsMultiColumn(int cell) const;
+    bool IsMultiColumn(int cell, bool real = false) const;
     ///
     void SetMultiColumn(int cell, int number);
     ///
@@ -207,15 +307,15 @@ public:
     ///
     int right_column_of_cell(int cell) const;
     ///
-    void SetLongTabular(int what);
+    void SetLongTabular(bool);
     ///
     bool IsLongTabular() const;
     ///
-    void SetRotateTabular(int what);
+    void SetRotateTabular(bool);
     ///
     bool GetRotateTabular() const;
     ///
-    void SetRotateCell(int cell, int what);
+    void SetRotateCell(int cell, bool);
     ///
     bool GetRotateCell(int cell) const;
     ///
@@ -233,23 +333,23 @@ public:
     ///
     int GetCellNumber(int row, int column) const;
     ///
-    void SetLinebreaks(int cell, bool what);
+    void SetUsebox(int cell, BoxType);
     ///
-    bool GetLinebreaks(int cell) const;
-    ///
-    /// Long Tabular Options
+    BoxType GetUsebox(int cell) const;
+    //
+    // Long Tabular Options
     ///
     void SetLTHead(int cell, bool first);
     ///
-    bool GetRowOfLTHead(int cell) const;
+    bool GetRowOfLTHead(int cell, int & row) const;
     ///
-    bool GetRowOfLTFirstHead(int cell) const;
+    bool GetRowOfLTFirstHead(int cell, int & row) const;
     ///
     void SetLTFoot(int cell, bool last);
     ///
-    bool GetRowOfLTFoot(int cell) const;
+    bool GetRowOfLTFoot(int cell, int & row) const;
     ///
-    bool GetRowOfLTLastFoot(int cell) const;
+    bool GetRowOfLTLastFoot(int cell, int & row) const;
     ///
     void SetLTNewPage(int cell, bool what);
     ///
@@ -257,6 +357,8 @@ public:
     ///
     InsetText * GetCellInset(int cell) const;
     ///
+    InsetText * GetCellInset(int row, int column) const;
+    ///
     int rows() const { return rows_; }
     ///
     int columns() const { return columns_;}
@@ -271,53 +373,55 @@ private: //////////////////////////////////////////////////////////////////
        ///
         cellstruct();
        ///
-       ~cellstruct();
-       ///
-        cellstruct(cellstruct const &);
-       ///
-       cellstruct & operator=(cellstruct const &);
-       ///
        int cellno;
        ///
        int width_of_cell;
        ///
-       int  multicolumn; // add approp. signedness
+       int multicolumn;
        ///
-       int alignment; // add approp. signedness
+       LyXAlignment alignment;
+       ///
+       VAlignment valignment;
        ///
        bool top_line;
        ///
        bool bottom_line;
        ///
-       bool linebreaks;
+       bool left_line;
+       ///
+       bool right_line;
+       ///
+       BoxType usebox;
        ///
-       int rotate;
+       bool rotate;
        ///
        string align_special;
        ///
        string p_width; // this is only set for multicolumn!!!
        ///
-       InsetText inset;
+       InsetText inset;
     };
+    ///
     typedef std::vector<cellstruct> cell_vector;
+    ///
     typedef std::vector<cell_vector> cell_vvector;
 
     ///
     struct rowstruct {
        ///
         rowstruct();
-       ///
-           //~rowstruct();
-       ///
-           // rowstruct & operator=(rowstruct const &);
        ///
        bool top_line;
+       ///
        bool bottom_line;
+       ///
         int ascent_of_row;
+       ///
         int descent_of_row;
        /// This are for longtabulars only
        bool newpage;
     };
+    ///
     typedef std::vector<rowstruct> row_vector;
 
     ///
@@ -325,19 +429,29 @@ private: //////////////////////////////////////////////////////////////////
        ///
         columnstruct();
        ///
-           //~columnstruct();
+       LyXAlignment alignment;
        ///
-           //columnstruct & operator=(columnstruct const &);
+       VAlignment valignment;
        ///
-       int alignment; // add approp. signedness
        bool left_line;
+       ///
        bool right_line;
+       ///
        int  width_of_column;
+       ///
        string p_width;
+       ///
        string align_special;
     };
+    ///
     typedef std::vector<columnstruct> column_vector;
 
+    ///
+    void ReadNew(Buffer const * buf, std::istream & is,
+            LyXLex & lex, string const & l);
+    ///
+    void ReadOld(Buffer const * buf, std::istream & is,
+            LyXLex & lex, string const & l);
     ///
     int rows_;
     ///
@@ -345,9 +459,9 @@ private: //////////////////////////////////////////////////////////////////
     ///
     int numberofcells;
     ///
-    int * rowofcell;
+    std::vector<int> rowofcell;
     ///
-    int * columnofcell;
+    std::vector<int> columnofcell;
     ///
     row_vector row_info;
     ///
@@ -357,12 +471,19 @@ private: //////////////////////////////////////////////////////////////////
     ///
     int width_of_tabular;
     ///
-    /// for long tabulars
+    bool rotate;
+    //
+    // for long tabulars
     ///
-    int endhead; // row of endhead
-    int endfirsthead; // row of endfirsthead
-    int endfoot; // row of endfoot
-    int endlastfoot; // row of endlastfoot
+    bool is_long_tabular;
+    /// row of endhead
+    int endhead;
+    /// row of endfirsthead
+    int endfirsthead;
+    /// row of endfoot
+    int endfoot;
+    /// row of endlastfoot
+    int endlastfoot;
     ///
     InsetTabular * owner_;
    
@@ -371,28 +492,25 @@ private: //////////////////////////////////////////////////////////////////
     ///
     void Reinit();
     ///
-    void set_row_column_number_info();
+    void set_row_column_number_info(bool oldformat = false);
     /// Returns true if a complete update is necessary, otherwise false
     bool SetWidthOfMulticolCell(int cell, int new_width);
+    ///
     void recalculateMulticolCells(int cell, int new_width);
     /// Returns true if change
     bool calculate_width_of_column(int column);
+    ///
     bool calculate_width_of_column_NMC(int column); // no multi cells
     ///
     void calculate_width_of_tabular();
-
     ///
     cellstruct * cellinfo_of_cell(int cell) const;
-
     ///
     void delete_column(int column);
-
     ///
     int cells_in_multicolumn(int cell) const;
     ///
-    int is_long_tabular;
-    ///
-    int rotate;
+    BoxType UseParbox(int cell) const;
 };
 
 #endif