]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathGrid.h
* dynamic macros as described in http://1stein.org/download/dynmacro.pdf
[lyx.git] / src / mathed / InsetMathGrid.h
index ba221fdc480416a1595d3d2f29062ada1c0f0d0b..7683ad6305a9a22d9cdf99a80cd7b9bc1a67b5b0 100644 (file)
@@ -83,6 +83,11 @@ public:
                unsigned int lines_;
                /// additional amount to be skipped when drawing
                int skip_;
+               /// Special alignment.
+               /// This does also contain align_ and lines_ if it is nonempty.
+               /// It needs to be in sync with align_ and lines_ because some
+               /// code only uses align_ and lines_.
+               docstring special_;
        };
 
 public:
@@ -95,9 +100,7 @@ public:
        ///
        InsetMathGrid(col_type m, row_type n, char valign, docstring const & halign);
        ///
-       void metrics(MetricsInfo & mi) const;
-       ///
-       bool metrics(MetricsInfo & mi, Dimension &) const;
+       void metrics(MetricsInfo & mi, Dimension &) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -221,7 +224,7 @@ protected:
        bool getStatus(Cursor & cur, FuncRequest const & cmd,
                FuncStatus & flag) const;
        /// returns x offset of cell compared to inset
-       int cellXOffset(idx_type idx) const;
+       int cellXOffset(BufferView const &, idx_type idx) const;
        /// returns y offset of cell compared to inset
        int cellYOffset(idx_type idx) const;
        /// returns proper 'end of line' code for LaTeX
@@ -245,7 +248,7 @@ protected:
        ///
        char v_align_; // add approp. type
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
 };