]> git.lyx.org Git - lyx.git/blobdiff - src/tabular.h
Small fix.
[lyx.git] / src / tabular.h
index 46ef2e51495b6890bf996c80d23a2df6b8955df2..e4dab2652dcd9e8ca297331f74cea072be0af5a0 100644 (file)
 
 #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 {
        APPEND_ROW = 0,
        APPEND_COLUMN,
@@ -38,9 +40,22 @@ public:
        TOGGLE_LINE_BOTTOM,
        TOGGLE_LINE_LEFT,
        TOGGLE_LINE_RIGHT,
-       ALIGN_LEFT, // what are these alignment enums used for?
+       ALIGN_LEFT,
        ALIGN_RIGHT,
        ALIGN_CENTER,
+       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,
        DELETE_TABULAR,
        MULTICOLUMN,
        SET_ALL_LINES,
@@ -48,18 +63,20 @@ public:
        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 {
@@ -67,6 +84,17 @@ public:
        CELL_BEGIN_OF_MULTICOLUMN,
        CELL_PART_OF_MULTICOLUMN
     };
+
+    ///
+    enum VAlignment {
+       ///
+       LYX_VALIGN_TOP = 0,
+       ///
+       LYX_VALIGN_BOTTOM = 1,
+       ///
+       LYX_VALIGN_CENTER = 2
+    };
+
     /* konstruktor */
     ///
     LyXTabular(InsetTabular *, int columns_arg, int rows_arg);
@@ -75,7 +103,7 @@ public:
     LyXTabular(InsetTabular *, LyXTabular const &);
     ///
     explicit
-    LyXTabular(InsetTabular *, LyXLex & lex);
+    LyXTabular(Buffer const *, InsetTabular *, LyXLex & lex);
     ///
     ~LyXTabular();
     ///
@@ -84,13 +112,13 @@ public:
     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;
@@ -115,33 +143,43 @@ 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 onlycolumn=false);
     /// Returns true if a complete update is necessary, otherwise false
-    bool SetBottomLine(int cell, bool line);
+    bool SetLeftLine(int cell, bool line, bool onlycolumn=false);
     /// Returns true if a complete update is necessary, otherwise false
-    bool SetLeftLine(int cell, bool line);
+    bool SetRightLine(int cell, bool line, bool onlycolumn=false);
     /// Returns true if a complete update is necessary, otherwise false
-    bool SetRightLine(int cell, bool line);
+    bool SetAlignment(int cell, char align, bool onlycolumn = false);
     /// Returns true if a complete update is necessary, otherwise false
-    bool SetAlignment(int cell, char align);
+    bool SetVAlignment(int cell, char align, bool onlycolumn = false);
+    ///
+    bool SetColumnPWidth(int cell, string const & width);
+    ///
+    bool SetMColumnPWidth(int cell, string const & width);
     ///
-    bool SetPWidth(int cell, string width);
+    bool SetAlignSpecial(int cell, string const & special, int what);
     ///
-    bool SetAlignSpecial(int cell, string special, int what);
+    char GetAlignment(int cell, bool onlycolumn = false) const;
     ///
-    char GetAlignment(int cell) const; // add approp. signedness
+    char GetVAlignment(int cell, bool onlycolumn = false) const;
     ///
     string GetPWidth(int cell) const;
     ///
+    string GetColumnPWidth(int cell) const;
+    ///
+    string GetMColumnPWidth(int cell) const;
+    ///
     string GetAlignSpecial(int cell, int what) const;
     ///
     int GetWidthOfCell(int cell) const;
@@ -166,17 +204,13 @@ public:
     ///
     int GetNumberOfCells() const;
     ///
-    int AppendCellAfterCell(int append_cell, int question_cell);
-    ///
-    int DeleteCellIfColumnIsDeleted(int cell, int delete_column_cell);
-    ///
     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(std::istream &, string);
+    void OldFormatRead(LyXLex &, string const &);
     ///
     /// helper function for Latex returns number of newlines
     ///
@@ -185,7 +219,7 @@ public:
     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
@@ -208,6 +242,8 @@ public:
     ///
     int column_of_cell(int cell) const;
     ///
+    int right_column_of_cell(int cell) const;
+    ///
     void SetLongTabular(int what);
     ///
     bool IsLongTabular() const;
@@ -226,25 +262,31 @@ public:
     ///
     int GetCellAbove(int cell) const;
     ///
+    int GetCellBelow(int cell) const;
+    ///
+    int GetLastCellAbove(int cell) const;
+    ///
+    int GetLastCellBelow(int cell) const;
+    ///
     int GetCellNumber(int row, int column) const;
     ///
-    void SetLinebreaks(int cell, bool what);
+    void SetUsebox(int cell, int what);
     ///
-    bool GetLinebreaks(int cell) const;
+    int 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 +299,8 @@ public:
     int columns() const { return columns_;}
     ///
     InsetTabular * owner() const { return owner_; }
+    ///
+    void Validate(LaTeXFeatures &) const;
 
 private: //////////////////////////////////////////////////////////////////
     ///
@@ -264,25 +308,37 @@ private: //////////////////////////////////////////////////////////////////
        ///
         cellstruct();
        ///
+#ifdef INSET_POINTER
        ~cellstruct();
        ///
         cellstruct(cellstruct const &);
        ///
        cellstruct & operator=(cellstruct const &);
+#endif
        ///
        int cellno;
        ///
        int width_of_cell;
        ///
-       int  multicolumn; // add approp. signedness
+       int multicolumn;
+       ///
+       int alignment;
        ///
-       int alignment; // add approp. signedness
+       int valignment;
        ///
        bool top_line;
        ///
        bool bottom_line;
        ///
-       bool linebreaks;
+       bool left_line;
+       ///
+       bool right_line;
+       ///
+       /// 0 ... don't use a box
+       /// 1 ... use a parbox
+       /// 2 ... use a minipage
+       ///
+       int usebox;
        ///
        int rotate;
        ///
@@ -290,8 +346,11 @@ private: //////////////////////////////////////////////////////////////////
        ///
        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 {
        ///
@@ -308,6 +367,8 @@ private: //////////////////////////////////////////////////////////////////
        /// This are for longtabulars only
        bool newpage;
     };
+    typedef std::vector<rowstruct> row_vector;
+
     ///
     struct columnstruct {
        ///
@@ -317,13 +378,16 @@ private: //////////////////////////////////////////////////////////////////
        ///
            //columnstruct & operator=(columnstruct const &);
        ///
-       int alignment; // add approp. signedness
+       int alignment;
+       int valignment;
        bool left_line;
        bool right_line;
        int  width_of_column;
        string p_width;
        string align_special;
     };
+    typedef std::vector<columnstruct> column_vector;
+
     ///
     int rows_;
     ///
@@ -335,11 +399,11 @@ private: //////////////////////////////////////////////////////////////////
     ///
     int * columnofcell;
     ///
-    std::vector<rowstruct> row_info;
+    row_vector row_info;
     ///
-    std::vector<columnstruct> column_info;
+    column_vector column_info;
     ///
-    mutable std::vector< std::vector<cellstruct> > cell_info;
+    mutable cell_vvector cell_info;
     ///
     int width_of_tabular;
     ///
@@ -367,9 +431,6 @@ private: //////////////////////////////////////////////////////////////////
     ///
     void calculate_width_of_tabular();
 
-    ///
-    int right_column_of_cell(int cell) const;
-
     ///
     cellstruct * cellinfo_of_cell(int cell) const;