]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_mboxinset.h
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / mathed / math_mboxinset.h
index c4cd9a20d5a6d7574140e2c42c69e5ffc8ed7e50..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(CursorSlice 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