X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBoldSymbol.h;h=89f3813510d5651dfaef1ef7ce658f828b45bad8;hb=f67cf6f4bb3e3d22ac9aebfa22027c3537cbdf61;hp=e0ba049d14c54161449032379c24637cc6ae822d;hpb=2ad48f204b2a2a6aba7f845cb43819d07dbece98;p=lyx.git diff --git a/src/mathed/InsetMathBoldSymbol.h b/src/mathed/InsetMathBoldSymbol.h index e0ba049d14..89f3813510 100644 --- a/src/mathed/InsetMathBoldSymbol.h +++ b/src/mathed/InsetMathBoldSymbol.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. */ @@ -17,7 +17,6 @@ namespace lyx { - /// Inset for AMSTeX's \boldsymbol class InsetMathBoldSymbol : public InsetMathNest { public: @@ -27,7 +26,9 @@ public: BM_HEAVY }; /// - InsetMathBoldSymbol(Kind kind = AMS_BOLD); + InsetMathBoldSymbol(Buffer * buf, Kind kind = AMS_BOLD); + /// + docstring name() const; /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// @@ -41,8 +42,14 @@ public: /// void write(WriteStream & os) const; /// + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; + /// void infoize(odocstream & os) const; /// + InsetCode lyxCode() const { return MATH_BOLDSYMBOL_CODE; } + /// Kind kind_; private: virtual Inset * clone() const;