]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_mboxinset.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_mboxinset.h
index 9a8be27272e2f4d2f4381cbf107c92d5435fa501..59f13be5067a324c6f9d1a8e928088b45e98c6e7 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 cursorPos(CursorSlice const & sl, bool boundary, 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