]> git.lyx.org Git - lyx.git/blobdiff - src/tabular.h
Fix small bug in reading \set_color in lyxrc
[lyx.git] / src / tabular.h
index 6665a83768cdee86b086b0ea8f669058b486639d..0483d1f55b74209e7b3ee03835bc7814269698b0 100644 (file)
 
 #include "lyxlex.h"
 #include "LString.h"
+#include "insets/insettext.h"
 
-class InsetText;
+class InsetTabular;
+class LaTeXFeatures;
 class Buffer;
 
 /* The features the text class offers for tables */ 
@@ -28,7 +30,7 @@ class Buffer;
 ///
 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,6 +63,7 @@ public:
        SET_LONGTABULAR,
        UNSET_LONGTABULAR,
        SET_PWIDTH,
+       SET_MPWIDTH,
        SET_ROTATE_TABULAR,
        UNSET_ROTATE_TABULAR,
        SET_ROTATE_CELL,
@@ -67,30 +83,41 @@ 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(int columns_arg, int rows_arg, Buffer *buf);
+    LyXTabular(InsetTabular *, int columns_arg, int rows_arg);
     ///
     ///
-    LyXTabular(LyXTabular const &, Buffer *buf);
+    LyXTabular(InsetTabular *, LyXTabular const &);
     ///
     explicit
-    LyXTabular(LyXLex & lex, Buffer *buf);
+    LyXTabular(Buffer const *, InsetTabular *, LyXLex & lex);
     ///
     ~LyXTabular();
     ///
     LyXTabular & operator=(LyXTabular const &);
     ///
-    LyXTabular * Clone(Buffer * buf);
+    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 +142,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 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, char align, bool onlycolumn = false);
+    /// Returns true if a complete update is necessary, otherwise false
+    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;
@@ -158,32 +195,30 @@ public:
     ///
     bool IsFirstCellInRow(int cell) const;
     ///
-    bool IsLastCellInRow(int cell) const;
+    int GetFirstCellInRow(int row) const;
     ///
-    int GetNumberOfCells() const;
+    bool IsLastCellInRow(int cell) const;
     ///
-    int AppendCellAfterCell(int append_cell, int question_cell);
+    int GetLastCellInRow(int row) const;
     ///
-    int DeleteCellIfColumnIsDeleted(int cell, int delete_column_cell);
+    int GetNumberOfCells() const;
     ///
     int NumberOfCellsInRow(int cell) const;
     ///
-    void Reinit();
-    ///
-    void Init(Buffer * buf, int columns_arg, int rows_arg);
+    void Write(Buffer const *, std::ostream &) const;
     ///
-    void Write(std::ostream &) const;
+    void Read(Buffer const *, LyXLex &);
     ///
-    void Read(LyXLex &);
+    void OldFormatRead(LyXLex &, string const &);
     ///
-    void OldFormatRead(std::istream &, string);
+    /// helper function for Latex returns number of newlines
     ///
-    int Latex(std::ostream &) const;
-
-    // cell <0 will tex the preamble
-    // returns the number of printed 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 TexEndOfCell(std::ostream &, int cell) const;
+    int Latex(Buffer const *, std::ostream &, bool, bool) const;
     ///
     int DocBookEndOfCell(std::ostream &, int cell, int & depth) const;
 #if 0
@@ -206,6 +241,8 @@ public:
     ///
     int column_of_cell(int cell) const;
     ///
+    int right_column_of_cell(int cell) const;
+    ///
     void SetLongTabular(int what);
     ///
     bool IsLongTabular() const;
@@ -224,7 +261,13 @@ public:
     ///
     int GetCellAbove(int cell) const;
     ///
-    int GetCellNumber(int column, int row) 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);
     ///
@@ -234,15 +277,15 @@ public:
     ///
     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);
     ///
@@ -253,6 +296,10 @@ public:
     int rows() const { return rows_; }
     ///
     int columns() const { return columns_;}
+    ///
+    InsetTabular * owner() const { return owner_; }
+    ///
+    void Validate(LaTeXFeatures &) const;
 
 private: //////////////////////////////////////////////////////////////////
     ///
@@ -260,24 +307,32 @@ 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; // add approp. signedness
+       int alignment;
+       ///
+       int valignment;
        ///
        bool top_line;
        ///
        bool bottom_line;
        ///
+       bool left_line;
+       ///
+       bool right_line;
+       ///
        bool linebreaks;
        ///
        int rotate;
@@ -286,8 +341,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 {
        ///
@@ -304,6 +362,8 @@ private: //////////////////////////////////////////////////////////////////
        /// This are for longtabulars only
        bool newpage;
     };
+    typedef std::vector<rowstruct> row_vector;
+
     ///
     struct columnstruct {
        ///
@@ -313,13 +373,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_;
     ///
@@ -331,11 +394,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;
     ///
@@ -346,8 +409,12 @@ private: //////////////////////////////////////////////////////////////////
     int endfoot; // row of endfoot
     int endlastfoot; // row of endlastfoot
     ///
-    Buffer * buffer;
+    InsetTabular * owner_;
    
+    ///
+    void Init(int columns_arg, int rows_arg);
+    ///
+    void Reinit();
     ///
     void set_row_column_number_info();
     /// Returns true if a complete update is necessary, otherwise false
@@ -359,9 +426,6 @@ private: //////////////////////////////////////////////////////////////////
     ///
     void calculate_width_of_tabular();
 
-    ///
-    int right_column_of_cell(int cell) const;
-
     ///
     cellstruct * cellinfo_of_cell(int cell) const;