]> 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 24dfe866c40767f23e28b94d3541a80fe598dfdd..cf0a58873debb064b62af51c3b0cc2446e05a7da 100644 (file)
 #include "math_diminset.h"
 #include "lyxtext.h"
 
-class BufferView;
 
-
-// not yet a substitute for the real text inset...
+// almost a substitute for the real text inset...
 
 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; }
+       ///
+       bool isActive() const { return true; }
 
        ///
        void write(WriteStream & os) const;
        ///
-       bool inMathed() const { return false; }
-
+       int latex(Buffer const &, std::ostream & os,
+                       OutputParams const & runparams) const;
        ///
        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