]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathUnknown.h
simplify GuiToc / TocWidget interaction. Much can still be simplified...
[lyx.git] / src / mathed / InsetMathUnknown.h
index 7872e73b36db211b5b7878415b9d23c3e6ac93e9..60146a34c22a30b2b4a3ff0e189031153e1a0798 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(docstring const & name,
@@ -51,14 +51,18 @@ public:
        void finalize();
        ///
        bool final() const;
+       ///
+       int kerning(BufferView const *) const { return kerning_; }
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
        ///
        docstring name_;
        /// are we finished creating the name?
        bool final_;
        ///
        bool black_;
+       ///
+       mutable int kerning_;
 };