]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathMacro.h
last commit was incomplete... not sure how I managed this..
[lyx.git] / src / mathed / MathMacro.h
index 6193ec62febe70403c10a28fc4833e7acb52aea8..c0a9c7d4c0386ed95ddd068d7ce27741a473e4cb 100644 (file)
@@ -37,7 +37,7 @@ public:
        void drawDecoration(PainterInfo & pi, int x, int y) const
        { drawMarkers2(pi, x, y); }
        ///
-       bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        /// get cursor position
        void cursorPos(BufferView const & bv, CursorSlice const & sl,
                bool boundary, int & x, int & y) const;
@@ -48,10 +48,14 @@ public:
        /// target pos when we enter the inset from the right by pressing "Left"
        bool idxLast(Cursor &) const;
        ///
+       bool idxUpDown(Cursor & cur, bool up) const;
+       ///
        virtual bool notifyCursorLeaves(Cursor &);
        ///
        docstring name() const;
        ///
+       int kerning() const { return kerning_; }
+       ///
        void setExpansion(MathData const & exp, MathData const & args) const;
 
        ///
@@ -69,7 +73,7 @@ public:
        void infoize2(odocstream &) const;
 
 private:
-       virtual std::auto_ptr<Inset> doClone() const;
+       virtual Inset * clone() const;
        ///
        void updateExpansion() const;
 
@@ -83,6 +87,8 @@ private:
        mutable MacroData macroBackup_;
        ///
        mutable bool editing_;
+       ///
+       mutable int kerning_;
 };