X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBoldSymbol.h;h=89f3813510d5651dfaef1ef7ce658f828b45bad8;hb=e1d9ad9f2802875bc233122e14c8d273a95dd1ed;hp=229f28c9855825e12aa786b78d3fe56b0efaceba;hpb=32871c1284f15265f652ff01c438e539a7c8181f;p=lyx.git diff --git a/src/mathed/InsetMathBoldSymbol.h b/src/mathed/InsetMathBoldSymbol.h index 229f28c985..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,14 +17,20 @@ namespace lyx { - /// Inset for AMSTeX's \boldsymbol class InsetMathBoldSymbol : public InsetMathNest { public: + enum Kind { + AMS_BOLD, + BM_BOLD, + BM_HEAVY + }; + /// + InsetMathBoldSymbol(Buffer * buf, Kind kind = AMS_BOLD); /// - InsetMathBoldSymbol(); + 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; /// @@ -36,9 +42,17 @@ 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 std::auto_ptr doClone() const; + virtual Inset * clone() const; };