X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBig.h;h=996a30a39d27ecf3946553ad3c88446c3e424ae5;hb=5fdc577badb1cb133d6a0dc7d831bb1f82576adb;hp=9a47c6580affc33041991121e33c055ba22bd432;hpb=ed858d73e57ce7aa89e38c1bc4d799362edb0227;p=lyx.git diff --git a/src/mathed/InsetMathBig.h b/src/mathed/InsetMathBig.h index 9a47c6580a..996a30a39d 100644 --- a/src/mathed/InsetMathBig.h +++ b/src/mathed/InsetMathBig.h @@ -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. */ @@ -14,8 +14,6 @@ #include "InsetMath.h" -#include - namespace lyx { @@ -27,7 +25,7 @@ public: /// docstring name() const; /// - bool metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -35,16 +33,25 @@ public: /// void normalize(NormalStream & os) const; /// + 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_;