]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBoldSymbol.h
add busy.gif to resources (in line with cmake)
[lyx.git] / src / mathed / InsetMathBoldSymbol.h
index d91de3816a0918b484c427a251af6ce40db78d83..89f3813510d5651dfaef1ef7ce658f828b45bad8 100644 (file)
@@ -17,7 +17,6 @@
 
 namespace lyx {
 
-
 /// Inset for AMSTeX's \boldsymbol
 class InsetMathBoldSymbol : public InsetMathNest {
 public:
@@ -27,7 +26,7 @@ public:
                BM_HEAVY
        };
        ///
-       InsetMathBoldSymbol(Kind kind = AMS_BOLD);
+       InsetMathBoldSymbol(Buffer * buf, Kind kind = AMS_BOLD);
        ///
        docstring name() const;
        ///
@@ -43,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;