]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBoldSymbol.h
Merge branch 'master' into biblatex2
[lyx.git] / src / mathed / InsetMathBoldSymbol.h
index 0a998b149e7edfffd3b9192813d9ba0e64bb3c81..89f3813510d5651dfaef1ef7ce658f828b45bad8 100644 (file)
@@ -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.
  */
 
 namespace lyx {
 
-
 /// Inset for AMSTeX's \boldsymbol
 class InsetMathBoldSymbol : public InsetMathNest {
 public:
        enum Kind {
-               BOLD,
-               HEAVY
+               AMS_BOLD,
+               BM_BOLD,
+               BM_HEAVY
        };
        ///
-       InsetMathBoldSymbol(Kind kind = BOLD);
+       InsetMathBoldSymbol(Buffer * buf, Kind kind = AMS_BOLD);
+       ///
+       docstring name() const;
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -40,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;