]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathString.h
Provide proper fallback if a bibliography processor is not found
[lyx.git] / src / mathed / InsetMathString.h
index 6e8f41bcfd5e4da2f4b29dc47c89be1cd121b44e..9f94a7457fe986f056a7054fe1f159e5ceded9c4 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.
  */
 
 #include "InsetMath.h"
 
+#include "support/docstring.h"
 
-namespace lyx {
 
+namespace lyx {
 
 /** Some collection of chars with similar properties
  *  mainly for math-extern
@@ -25,13 +26,13 @@ namespace lyx {
 class InsetMathString : public InsetMath {
 public:
        ///
-       explicit InsetMathString(std::string const & s);
+       explicit InsetMathString(docstring const & s);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       std::string str() const { return str_; }
+       docstring str() const { return str_; }
        ///
        InsetMathString * asStringInset() { return this; }
        ///
@@ -46,16 +47,18 @@ public:
        ///
        void mathematica(MathematicaStream &) const;
        ///
-       void mathmlize(MathMLStream &) const;
+       void mathmlize(MathStream &) const;
        ///
        void write(WriteStream & os) const;
+       ///
+       InsetCode lyxCode() const { return MATH_STRING_CODE; }
 
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
        /// the string
-       std::string str_;
+       docstring str_;
 };
 
-
 } // namespace lyx
+
 #endif