]> 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 eddc808c63c369f3c4f22a1ee3feffe88dbfe29e..e6427ea0cbf69b0db87b8c98ba2bc8270f57c130 100644 (file)
@@ -23,6 +23,7 @@ class InsetMathUnknown : public InsetMath {
 public:
        ///
        explicit InsetMathUnknown(docstring const & name,
+               docstring const & selection = docstring(),
                bool final = true, bool black = false);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
@@ -32,6 +33,10 @@ public:
        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,7 +57,8 @@ public:
        ///
        bool final() const;
        ///
-       int kerning() const { return kerning_; }
+       int kerning(BufferView const *) const { return kerning_; }
+
 private:
        virtual Inset * clone() const;
        ///
@@ -63,6 +69,8 @@ private:
        bool black_;
        ///
        mutable int kerning_;
+       /// the selection which was replaced by this
+       docstring selection_;
 };