]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_gridinset.h
further code uglification to make Jean-Marc's compiler happy
[lyx.git] / src / mathed / math_gridinset.h
index af1ff7dfa24f3dac5daed40bd6e4134ba8cc887a..2bea095771d9df82a58ca7a7f813d99570319937 100644 (file)
@@ -22,6 +22,8 @@ class MathGridInset : public MathNestInset {
        struct RowInfo {
                ///
                RowInfo();
+               ///
+               int skipPixels() const;
                /// cached descent
                mutable int descent_;
                /// cached ascent
@@ -40,23 +42,25 @@ class MathGridInset : public MathNestInset {
        struct ColInfo {
                ///     
                ColInfo();
-               ///
-               char h_align_;
+               /// currently possible: 'l', 'c', 'r'
+               char align_;
                /// cache for drawing
                int h_offset;
                /// cached width
                mutable int width_;
                /// cached offset
                mutable int offset_;
-               /// 
+               /// do we need a line to the left? 
                bool leftline_;
-               ///
+               /// do we need a line to the right?
                bool rightline_;
+               /// additional amount to be skipped when drawing
+               int skip_;
        };
 
 public: 
        ///
-       MathGridInset(int m, int n);
+       MathGridInset(unsigned int m, unsigned int n);
        ///
        void write(std::ostream &, bool fragile) const;
        ///
@@ -66,76 +70,82 @@ public:
        ///
        void halign(string const &);
        ///
-       void halign(char c, int col);
+       void halign(char c, unsigned int col);
        ///
-       char halign(int col) const;
+       char halign(unsigned int col) const;
        ///
        void valign(char c);
        ///
        char valign() const;
        ///
-       void vskip(LyXLength const &, int row);
+       void vskip(LyXLength const &, unsigned int row);
        ///
-       LyXLength vskip(int row) const;
+       LyXLength vskip(unsigned int row) const;
        ///
-       void resize(short int type, int cols);
+       void resize(short int type, unsigned int cols);
        ///
-       const RowInfo & rowinfo(int row) const;
+       const RowInfo & rowinfo(unsigned int row) const;
        ///
-       RowInfo & rowinfo(int row);
+       RowInfo & rowinfo(unsigned int row);
        ///
        bool isGrid() const { return true; }
 
        ///
-       int ncols() const { return colinfo_.size(); }
+       unsigned int ncols() const { return colinfo_.size(); }
        ///
-       int nrows() const { return rowinfo_.size(); }
+       unsigned int nrows() const { return rowinfo_.size(); }
        ///
-       int col(int idx) const { return idx % ncols(); }
+       unsigned int col(unsigned int idx) const { return idx % ncols(); }
        ///
-       int row(int idx) const { return idx / ncols(); }
+       unsigned int row(unsigned int idx) const { return idx / ncols(); }
        ///
-       int cellXOffset(int idx) const;
+       int cellXOffset(unsigned int idx) const;
        ///
-       int cellYOffset(int idx) const;
+       int cellYOffset(unsigned int idx) const;
 
        ///
-       bool idxUp(int &, int &) const;
+       bool idxUp(unsigned int &, unsigned int &) const;
        ///
-       bool idxDown(int &, int &) const;
+       bool idxDown(unsigned int &, unsigned int &) const;
        ///
-       bool idxLeft(int &, int &) const;
+       bool idxLeft(unsigned int &, unsigned int &) const;
        ///
-       bool idxRight(int &, int &) const;
+       bool idxRight(unsigned int &, unsigned int &) const;
        ///
-       bool idxFirst(int &, int &) const;
+       bool idxFirst(unsigned int &, unsigned int &) const;
        ///
-       bool idxLast(int &, int &) const;
+       bool idxLast(unsigned int &, unsigned int &) const;
        ///
-       void idxDelete(int &, bool &, bool &);
+       void idxDelete(unsigned int &, bool &, bool &);
        ///
-       void idxDeleteRange(int, int);
+       void idxDeleteRange(unsigned int, unsigned int);
                        
        ///
-       void addRow(int);
+       void addRow(unsigned int);
        ///
-       void delRow(int);
+       void delRow(unsigned int);
        ///
-       void addCol(int);
+       void addCol(unsigned int);
        ///
-       void delCol(int);
+       void delCol(unsigned int);
        ///
        virtual void appendRow();
        ///
-       int index(int row, int col) const;
+       unsigned int index(unsigned int row, unsigned int col) const;
+       ///
+       std::vector<unsigned int> idxBetween(unsigned int from, unsigned int to) const;
+       ///
+       virtual int defaultColSpace(unsigned int) { return 10; }
+       ///
+       virtual char defaultColAlign(unsigned int) { return 'c'; }
        ///
-       std::vector<int> idxBetween(int from, int to) const;
+       void setDefaults();
 
 protected:
        /// returns proper 'end of line' code for LaTeX
-       string eolString(int row) const;
+       string eolString(unsigned int row) const;
        /// returns proper 'end of column' code for LaTeX
-       string eocString(int col) const;
+       string eocString(unsigned int col) const;
 
        /// row info
        std::vector<RowInfo> rowinfo_;