]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBoldSymbol.h
A little cleanup of the layout files.
[lyx.git] / src / mathed / InsetMathBoldSymbol.h
index 80e0e43da74ddb68a22ebf9a0300ceade82157ef..d91de3816a0918b484c427a251af6ce40db78d83 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.
  */
@@ -21,8 +21,15 @@ 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);
+       ///
+       docstring name() const;
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -37,6 +44,8 @@ public:
        void write(WriteStream & os) const;
        ///
        void infoize(odocstream & os) const;
+       ///
+       Kind kind_;
 private:
        virtual Inset * clone() const;
 };