]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathUnknown.h
revert last patch. there's something wrong, possibly unrelated to this
[lyx.git] / src / mathed / InsetMathUnknown.h
index 9d30e1980732fbcde7c6b417993b0ad7e9fa7eb6..daae372557c4244ec2c1fe0f10608c5dd1d9c331 100644 (file)
 #ifndef MATH_UNKNOWNINSET_H
 #define MATH_UNKNOWNINSET_H
 
-#include "InsetMathDim.h"
+#include "InsetMath.h"
 
+#include "support/docstring.h"
 
-namespace lyx {
 
+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 +58,12 @@ public:
        ///
        bool final() const;
        ///
-       int kerning() const { return kerning_; }
+       int kerning(BufferView const *) const { return kerning_; }
+
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       ///
+       Inset * clone() const { return new InsetMathUnknown(*this); }
+
        ///
        docstring name_;
        /// are we finished creating the name?
@@ -63,8 +72,10 @@ private:
        bool black_;
        ///
        mutable int kerning_;
+       /// the selection which was replaced by this
+       docstring selection_;
 };
 
-
 } // namespace lyx
+
 #endif