]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBoldSymbol.h
* InsetMathHull:
[lyx.git] / src / mathed / InsetMathBoldSymbol.h
index 80e0e43da74ddb68a22ebf9a0300ceade82157ef..e0ba049d14c54161449032379c24637cc6ae822d 100644 (file)
@@ -21,8 +21,13 @@ namespace lyx {
 /// Inset for AMSTeX's \boldsymbol
 class InsetMathBoldSymbol : public InsetMathNest {
 public:
+       enum Kind {
+               AMS_BOLD,
+               BM_BOLD,
+               BM_HEAVY
+       };
        ///
-       InsetMathBoldSymbol();
+       InsetMathBoldSymbol(Kind kind = AMS_BOLD);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -37,6 +42,8 @@ public:
        void write(WriteStream & os) const;
        ///
        void infoize(odocstream & os) const;
+       ///
+       Kind kind_;
 private:
        virtual Inset * clone() const;
 };