]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathArray.h
Move <algorithm> from DocIterator.h
[lyx.git] / src / mathed / InsetMathArray.h
index 79236882c7198ed87f9ed857567aa19704e29130..ce372a1707e55203f5500c95a0d06f789a6d8f71 100644 (file)
@@ -29,30 +29,35 @@ public:
        /// convenience constructor from whitespace/newline separated data
        InsetMathArray(Buffer * buf, docstring const &, docstring const & str);
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const override;
        ///
-       Dimension const dimension(BufferView const &) const;
+       void draw(PainterInfo & pi, int x, int y) const override;
        ///
-       void draw(PainterInfo & pi, int x, int y) const;
+       InsetMathArray * asArrayInset() override { return this; }
        ///
-       InsetMathArray * asArrayInset() { return this; }
-       ///
-       InsetMathArray const * asArrayInset() const { return this; }
+       InsetMathArray const * asArrayInset() const override { return this; }
 
        ///
-       void write(WriteStream & os) const;
+       void write(WriteStream & os) const override;
+       ///
+       void infoize(odocstream & os) const override;
+       ///
+       void normalize(NormalStream & os) const override;
        ///
-       void infoize(odocstream & os) const;
+       void maple(MapleStream & os) const override;
        ///
-       void normalize(NormalStream & os) const;
+       void validate(LaTeXFeatures & features) const override;
        ///
-       void maple(MapleStream & os) const;
+       InsetCode lyxCode() const override { return MATH_ARRAY_CODE; }
        ///
-       void validate(LaTeXFeatures & features) const;
+       int leftMargin() const override { return 4; }
        ///
-       InsetCode lyxCode() const { return MATH_ARRAY_CODE; }
+       int rightMargin() const override { return 2; }
+       ///
+       bool handlesMulticolumn() const override { return true; }
+
 private:
-       virtual Inset * clone() const;
+       Inset * clone() const override;
        ///
        docstring name_;
 };