]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_mboxinset.h
Make Helge happy: no more crash on arrow up/down in math macro
[lyx.git] / src / mathed / math_mboxinset.h
index 9a8be27272e2f4d2f4381cbf107c92d5435fa501..cf0a58873debb064b62af51c3b0cc2446e05a7da 100644 (file)
 class MathMBoxInset : public MathDimInset {
 public:
        ///
-       MathMBoxInset(BufferView & bv);
-       ///
-       std::auto_ptr<InsetBase> clone() const;
+       explicit MathMBoxInset(BufferView & bv);
        /// this stores metrics information in cache_
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        /// draw according to cached metrics
        void draw(PainterInfo &, int x, int y) const;
        ///
-       void priv_dispatch(LCursor & cur, FuncRequest & cmd);
-
+       void drawSelection(PainterInfo & pi, int x, int y) const;
        ///
        bool inMathed() const { return false; }
        ///
@@ -44,12 +41,16 @@ public:
        ///
        LyXText * getText(int) const;
        ///
-       void getCursorPos(LCursor const & cur, int & x, int & y) const;
+       void getCursorPos(CursorSlice const & sl, int & x, int & y) const;
 protected:
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
+
        ///
        mutable LyXText text_;
        ///
        BufferView * const bv_;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
 #endif