]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathCases.h
Account for old versions of Pygments
[lyx.git] / src / mathed / InsetMathCases.h
index 5839cef277542f87cd1bf25f36e102bf4e97bdc5..84e13979e8ba9226a94a4e3e0e1598f5542855d4 100644 (file)
@@ -27,8 +27,6 @@ public:
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       Dimension const dimension(BufferView const &) const;
-       ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
        virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
@@ -45,11 +43,22 @@ public:
        ///
        void mathmlize(MathStream &) const;
        ///
+       void htmlize(HtmlStream &) const;
+       ///
        void write(WriteStream & os) const;
        ///
        void validate(LaTeXFeatures & features) const;
        ///
        InsetCode lyxCode() const { return MATH_CASES_CODE; }
+       ///
+       int displayColSpace(col_type) const;
+       ///
+       int leftMargin() const { return 8; } //override
+       ///
+       int rightMargin() const { return 0; } //override
+       /// see e.g. https://tex.stackexchange.com/a/133283/87201
+       bool handlesMulticolumn() const { return true; } //override
+
 private:
        virtual Inset * clone() const;
 };