]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_cursor.h
fix cursor positioning using the mouse
[lyx.git] / src / mathed / math_cursor.h
index 523ec48dc782bbece32ae1183debba2db08ce456..34f93337891f9851ef2ed385b9fc0977e621b927 100644 (file)
@@ -24,6 +24,7 @@
 #include "math_defs.h"
 
 class MathInset;
+class MathAtom;
 class MathArrayInset;
 class MathFuncInset;
 class MathMatrixInset;
@@ -73,9 +74,9 @@ public:
        ///
        void backspace();
        ///
-       void home();
+       void home(bool sel = false);
        ///
-       void end();
+       void end(bool sel = false);
        ///
        bool right(bool sel = false);
        ///
@@ -204,13 +205,19 @@ public:
        MathArray & array() const;
        ///
        MathXArray & xarray() const;
+       ///
+       MathAtom const * prevAtom() const;
+       ///
+       MathAtom * prevAtom();
+       ///
+       MathAtom const * nextAtom() const;
+       ///
+       MathAtom * nextAtom();
 
        /// returns the selection
        void getSelection(MathCursorPos &, MathCursorPos &) const;
        /// returns the normalized anchor of the selection
        MathCursorPos normalAnchor() const;
-       /// returns the normalized anchor of the selection
-       bool openable(MathInset *, bool selection, bool useupdown) const;
 
        /// path of positions the cursor had to go if it were leving each inset
        std::vector<MathCursorPos> Cursor_;
@@ -249,9 +256,13 @@ private:
        string macroName() const;
        ///
        void insert(char, MathTextCodes t = LM_TC_MIN);
-       ///
+       /// can we enter the inset? 
+       bool openable(MathInset *, bool selection) const;
+       /// can the setPos routine enter that inset?
+       MathInset * positionable(MathAtom *, int x, int y) const;
+       /// write access to cursor cell position
        int & pos();
-       ///
+       /// write access to cursor cell index
        int & idx();
        /// x-offset of current cell relative to par xo
        int cellXOffset() const;