X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBig.h;h=83010a92600938a5e606126cced77a1e30865641;hb=28be7d552f62cc02fa86d7f79201d089bfb2d7b5;hp=e6df71fd1ccc420f5f8bcd0a19f43ff478776ca3;hpb=c060a85d811674888c31db9ee0407d8b5cc37b6e;p=lyx.git diff --git a/src/mathed/InsetMathBig.h b/src/mathed/InsetMathBig.h index e6df71fd1c..83010a9260 100644 --- a/src/mathed/InsetMathBig.h +++ b/src/mathed/InsetMathBig.h @@ -14,8 +14,6 @@ #include "InsetMath.h" -#include - namespace lyx { @@ -26,6 +24,8 @@ public: InsetMathBig(docstring const & name, docstring const & delim); /// docstring name() const; + /// class is different for l(eft), r(ight) and m(iddle) + MathClass mathClass() const; /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// @@ -37,17 +37,23 @@ public: /// void mathmlize(MathStream &) const; /// + void htmlize(HtmlStream &) const; + /// void infoize2(odocstream & os) const; /// static bool isBigInsetDelim(docstring const &); /// InsetCode lyxCode() const { return MATH_BIG_CODE; } + /// + void validate(LaTeXFeatures &) const; private: virtual Inset * clone() const; /// size_type size() const; /// double increase() const; + /// name with leading backslash stripped + docstring word() const; /// \\bigl or what? docstring const name_;