]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathUnknown.h
Change the interface to a paragraph's layout. We still store a LayoutPtr, but now...
[lyx.git] / src / mathed / InsetMathUnknown.h
index 9d30e1980732fbcde7c6b417993b0ad7e9fa7eb6..e6427ea0cbf69b0db87b8c98ba2bc8270f57c130 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,
+               docstring const & selection = docstring(),
                bool final = true, bool black = false);
        ///
-       bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
        void setName(docstring const & name);
        ///
        docstring name() const;
+
+       ///
+       docstring const & selection() const { return selection_; }
+       
        /// identifies UnknownInsets
        InsetMathUnknown const * asUnknownInset() const { return this; }
        /// identifies UnknownInsets
@@ -52,9 +57,10 @@ public:
        ///
        bool final() const;
        ///
-       int kerning() const { return kerning_; }
+       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?
@@ -63,6 +69,8 @@ private:
        bool black_;
        ///
        mutable int kerning_;
+       /// the selection which was replaced by this
+       docstring selection_;
 };