]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathUnknown.h
* Inset and derivatives: insetName() -> name()
[lyx.git] / src / mathed / InsetMathUnknown.h
index 7872e73b36db211b5b7878415b9d23c3e6ac93e9..9c8a81b19aac141578bdc4fa24223553d1ee0c4e 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,
                bool final = true, bool black = false);
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       bool metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -51,14 +51,18 @@ public:
        void finalize();
        ///
        bool final() const;
+       ///
+       int kerning() const { return kerning_; }
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual std::auto_ptr<Inset> doClone() const;
        ///
        docstring name_;
        /// are we finished creating the name?
        bool final_;
        ///
        bool black_;
+       ///
+       mutable int kerning_;
 };