]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathTabular.h
nullptr
[lyx.git] / src / mathed / InsetMathTabular.h
index 2dfc3f51bb84914b4b895e900a146f9d86e719c1..b2394d24183e7238b4baabca4d59a8a1211961b9 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -22,32 +22,38 @@ namespace lyx {
 class InsetMathTabular : public InsetMathGrid {
 public:
        ///
-       InsetMathTabular(docstring const &, int m, int n);
+       InsetMathTabular(Buffer * buf, docstring const &, int m, int n);
        ///
-       InsetMathTabular(docstring const &, int m, int n,
+       InsetMathTabular(Buffer * buf, docstring const &, int m, int n,
                char valign, docstring const & halign);
        ///
-       InsetMathTabular(docstring const &, char valign, docstring const & halign);
+       void metrics(MetricsInfo & mi, Dimension & dim) const override;
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
-       ///
-       void draw(PainterInfo & pi, int x, int y) const;
+       void draw(PainterInfo & pi, int x, int y) const override;
        ///
        InsetMathTabular * asTabularInset() { return this; }
        ///
        InsetMathTabular const * asTabularInset() const { return this; }
 
        ///
-       void write(WriteStream & os) const;
+       void write(TeXMathStream & os) const override;
+       ///
+       void infoize(odocstream & os) const override;
+       ///
+       void normalize(NormalStream &) const override;
+       ///
+       void maple(MapleStream &) const override;
+       ///
+       InsetCode lyxCode() const override { return MATH_TABULAR_CODE; }
        ///
-       void infoize(odocstream & os) const;
+       int leftMargin() const override { return 4; }
        ///
-       void normalize(NormalStream &) const;
+       int rightMargin() const override { return 2; }
        ///
-       void maple(MapleStream &) const;
+       bool handlesMulticolumn() const override { return true; }
 
 private:
-       virtual Inset * clone() const;
+       Inset * clone() const override;
        ///
        docstring name_;
 };