]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathUnknown.h
* completion infrastructure
[lyx.git] / src / mathed / InsetMathUnknown.h
index 106fae98ea4c370728b59f7bc895a9f4f29592a9..d0c8480c783c57645e075dcff67e8df2f5335a8d 100644 (file)
 #ifndef MATH_UNKNOWNINSET_H
 #define MATH_UNKNOWNINSET_H
 
-#include "InsetMathDim.h"
+#include "InsetMath.h"
 
 
 namespace lyx {
 
 
 /// LaTeX names for objects that we really don't know
-class InsetMathUnknown : public InsetMathDim {
+class InsetMathUnknown : public InsetMath {
 public:
        ///
-       explicit InsetMathUnknown(std::string const & name,
+       explicit InsetMathUnknown(docstring const & name,
                bool final = true, bool black = false);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void setName(std::string const & name);
+       void setName(docstring const & name);
        ///
-       std::string name() const;
+       docstring name() const;
+
        /// identifies UnknownInsets
        InsetMathUnknown const * asUnknownInset() const { return this; }
        /// identifies UnknownInsets
@@ -44,21 +45,25 @@ public:
        ///
        void mathematica(MathematicaStream &) const;
        ///
-       void mathmlize(MathMLStream &) const;
+       void mathmlize(MathStream &) const;
        ///
        void octave(OctaveStream &) const;
        ///
        void finalize();
        ///
        bool final() const;
+       ///
+       int kerning(BufferView const *) const { return kerning_; }
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
        ///
-       std::string name_;
+       docstring name_;
        /// are we finished creating the name?
        bool final_;
        ///
        bool black_;
+       ///
+       mutable int kerning_;
 };