]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathNumber.h
Get package things working with modules prior to UI patch.
[lyx.git] / src / mathed / InsetMathNumber.h
index 5bd373c2e06e6e92546b9e1b518d5c9143a79322..e9142256a39329e35e7e2516be2c0f44c9d4f77a 100644 (file)
 #include "InsetMath.h"
 
 
+namespace lyx {
+
+
 /** Some inset that "is" a number
  *  mainly for math-extern
  */
 class InsetMathNumber : public InsetMath {
 public:
        ///
-       explicit InsetMathNumber(std::string const & s);
+       explicit InsetMathNumber(docstring const & s);
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       bool metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo &, int x, int y) const;
        ///
-       std::string str() const { return str_; }
+       docstring str() const { return str_; }
        ///
        InsetMathNumber * asNumberInset() { return this; }
 
@@ -40,13 +43,16 @@ public:
        ///
        void mathematica(MathematicaStream &) const;
        ///
-       void mathmlize(MathMLStream &) const;
+       void mathmlize(MathStream &) const;
        ///
        void write(WriteStream & os) const;
 
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual std::auto_ptr<Inset> doClone() const;
        /// the number as string
-       std::string str_;
+       docstring str_;
 };
+
+
+} // namespace lyx
 #endif