]> git.lyx.org Git - lyx.git/blobdiff - src/tabular.h
More fixes to insettabular/text (and some missing features added).
[lyx.git] / src / tabular.h
index 0483d1f55b74209e7b3ee03835bc7814269698b0..6b5a9449e58f0be96cf27c6dd82c5b3b324b73b2 100644 (file)
@@ -6,6 +6,8 @@
  *      
  *           Copyright 2000 The LyX Team.
  *
+ *           @author: Jürgen Vigna
+ *
  * ====================================================== */
 #ifndef TABULAR_H
 #define TABULAR_H
@@ -30,57 +32,104 @@ class Buffer;
 ///
 class LyXTabular  {
 public:
-
-    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,
+       ///
        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,
+       ///
        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
     };
 
@@ -94,30 +143,36 @@ public:
        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(Buffer const *, InsetTabular *, LyXLex & lex);
     ///
-    ~LyXTabular();
-    ///
     LyXTabular & operator=(LyXTabular const &);
     ///
     LyXTabular * Clone(InsetTabular *);
     
     /// Returns true if there is a topline, returns false if not
-    bool TopLine(int cell, bool onlycolumn=false) const;
+    bool TopLine(int cell, bool onlycolumn = false) const;
     /// Returns true if there is a topline, returns false if not
-    bool BottomLine(int cell, bool onlycolumn=false) const;
+    bool BottomLine(int cell, bool onlycolumn = false) const;
     /// Returns true if there is a topline, returns false if not
-    bool LeftLine(int cell, bool onlycolumn=false) const;
+    bool LeftLine(int cell, bool onlycolumn = false) const;
     /// Returns true if there is a topline, returns false if not
-    bool RightLine(int cell, bool onlycolumn=false) const;
+    bool RightLine(int cell, bool onlycolumn = false) const;
     
     ///
     bool TopAlreadyDrawed(int cell) const;
@@ -159,27 +214,27 @@ public:
     /// Returns true if a complete update is necessary, otherwise false
     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 onlycolumn = false);
+    bool SetAlignment(int cell, LyXAlignment align, bool onlycolumn = false);
     /// Returns true if a complete update is necessary, otherwise false
-    bool SetVAlignment(int cell, char align, bool onlycolumn = 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 SetAlignSpecial(int cell, string const & special, int what);
+    bool SetAlignSpecial(int cell, string const & special, Feature what);
     ///
-    char GetAlignment(int cell, bool onlycolumn = false) const;
+    LyXAlignment GetAlignment(int cell, bool onlycolumn = false) const;
     ///
-    char GetVAlignment(int cell, bool onlycolumn = false) const;
+    VAlignment GetVAlignment(int cell, bool onlycolumn = false) const;
     ///
-    string GetPWidth(int cell) const;
+    string const GetPWidth(int cell) const;
     ///
-    string GetColumnPWidth(int cell) const;
+    string const GetColumnPWidth(int cell) const;
     ///
-    string GetMColumnPWidth(int cell) const;
+    string const GetMColumnPWidth(int cell) const;
     ///
-    string GetAlignSpecial(int cell, int what) const;
+    string const GetAlignSpecial(int cell, int what) const;
     ///
     int GetWidthOfCell(int cell) const;
     ///
@@ -187,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;
     ///
@@ -210,26 +265,44 @@ public:
     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(Buffer const *, std::ostream &, bool, bool) const;
     ///
+    int DocBook(Buffer const * buf, std::ostream & os) const;
+    ///
+    // helper function for Latex returns number of newlines
+    ///
+    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;
+    ///
     int DocBookEndOfCell(std::ostream &, int cell, int & depth) const;
 #if 0
     ///
     int RoffEndOfCell(std::ostream &, int cell);
 #endif
     ///
-    char const * GetDocBookAlign(int cell, bool isColumn = false) const;
+    string const  GetDocBookAlign(int cell, bool isColumn = false) const;
 
     ///
-    bool IsMultiColumn(int cell) const;
+    bool IsMultiColumn(int cell, bool real = false) const;
     ///
     void SetMultiColumn(int cell, int number);
     ///
@@ -243,15 +316,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;
     ///
@@ -269,11 +342,11 @@ public:
     ///
     int GetCellNumber(int row, int column) const;
     ///
-    void SetLinebreaks(int cell, bool what);
-    ///
-    bool GetLinebreaks(int cell) const;
+    void SetUsebox(int cell, BoxType);
     ///
-    /// Long Tabular Options
+    BoxType GetUsebox(int cell) const;
+    //
+    // Long Tabular Options
     ///
     void SetLTHead(int cell, bool first);
     ///
@@ -292,6 +365,7 @@ public:
     bool GetLTNewPage(int cell) const;
     ///
     InsetText * GetCellInset(int cell) const;
+    InsetText * GetCellInset(int row, int column) const;
     ///
     int rows() const { return rows_; }
     ///
@@ -307,23 +381,15 @@ private: //////////////////////////////////////////////////////////////////
        ///
         cellstruct();
        ///
-#ifdef INSET_POINTER
-       ~cellstruct();
-       ///
-        cellstruct(cellstruct const &);
-       ///
-       cellstruct & operator=(cellstruct const &);
-#endif
-       ///
        int cellno;
        ///
        int width_of_cell;
        ///
        int multicolumn;
        ///
-       int alignment;
+       LyXAlignment alignment;
        ///
-       int valignment;
+       VAlignment valignment;
        ///
        bool top_line;
        ///
@@ -333,9 +399,9 @@ private: //////////////////////////////////////////////////////////////////
        ///
        bool right_line;
        ///
-       bool linebreaks;
+       BoxType usebox;
        ///
-       int rotate;
+       bool rotate;
        ///
        string align_special;
        ///
@@ -343,25 +409,27 @@ private: //////////////////////////////////////////////////////////////////
        ///
        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;
 
     ///
@@ -369,18 +437,21 @@ private: //////////////////////////////////////////////////////////////////
        ///
         columnstruct();
        ///
-           //~columnstruct();
+       LyXAlignment alignment;
        ///
-           //columnstruct & operator=(columnstruct const &);
+       VAlignment valignment;
        ///
-       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;
 
     ///
@@ -390,9 +461,9 @@ private: //////////////////////////////////////////////////////////////////
     ///
     int numberofcells;
     ///
-    int * rowofcell;
+    std::vector<int> rowofcell;
     ///
-    int * columnofcell;
+    std::vector<int> columnofcell;
     ///
     row_vector row_info;
     ///
@@ -402,12 +473,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_;
    
@@ -416,28 +494,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