]> 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 80e8a606fbff6060c1b2ee2e23a761f5d0057e5f..34f93337891f9851ef2ed385b9fc0977e621b927 100644 (file)
 #include "math_defs.h"
 
 class MathInset;
+class MathAtom;
+class MathArrayInset;
 class MathFuncInset;
+class MathMatrixInset;
 class MathScriptInset;
 class MathSpaceInset;
-class MathArrayInset;
 class InsetFormulaBase;
 class MathArray;
 class MathXArray;
 class Painter;
+class latexkeys;
 
 /// Description of a position 
 struct MathCursorPos {
@@ -49,14 +52,6 @@ struct MathCursorPos {
        MathXArray & xcell() const;
        /// returns xcell corresponding to this position
        MathXArray & xcell(int idx) const;
-       /// moves position on cell to the left
-       bool idxLeft();
-       /// moves position on cell to the right
-       bool idxRight();
-       /// moves position on cell up
-       bool idxUp();
-       /// moves position on cell up
-       bool idxDown();
 };
 
 /// 
@@ -71,19 +66,17 @@ public:
        ///
        explicit MathCursor(InsetFormulaBase *);
        ///
-       ~MathCursor();
-       ///
-       void insert(char, MathTextCodes t = LM_TC_MIN);
-       ///
        void insert(MathInset *);
        ///
        void insert(MathArray const &);
        ///
        void erase();
        ///
-       void home();
+       void backspace();
+       ///
+       void home(bool sel = false);
        ///
-       void end();
+       void end(bool sel = false);
        ///
        bool right(bool sel = false);
        ///
@@ -96,15 +89,29 @@ public:
        void first();
        /// Put the cursor in the last position
        void last();
+       /// moves cursor position one cell to the left
+       bool posLeft();
+       /// moves cursor position one cell to the right
+       bool posRight();
+       /// moves cursor index one cell to the left
+       bool idxLeft();
+       /// moves cursor index one cell to the right
+       bool idxRight();
+       /// moves position somehow up
+       bool goUp();
+       /// moves position somehow down
+       bool goDown();
        ///
-       bool plainLeft();
+       void idxNext();
        ///
-       bool plainRight();
+       void idxPrev();
        ///
        void plainErase();
        ///
        void plainInsert(MathInset * p);
        ///
+       void niceInsert(MathInset * p);
+       ///
        void delLine();
        /// This is in pixels from (maybe?) the top of inset
        void setPos(int, int);
@@ -119,6 +126,10 @@ public:
        ///
        int pos() const;
        ///
+       int idx() const;
+       ///
+       int size() const;
+       ///
        void interpret(string const &);
        ///
        void setSize(MathStyles);
@@ -126,8 +137,6 @@ public:
        bool toggleLimits();
        ///
        // Macro mode methods
-       void macroModeOpen();
-       ///
        void macroModeClose();
        ///
        bool inMacroMode() const;
@@ -152,15 +161,11 @@ public:
        ///
        void drawSelection(Painter & pain) const;
        ///
-       void clearLastCode();
-       ///
-       void setLastCode(MathTextCodes t);
-       ///
        void handleFont(MathTextCodes t);
        ///
-       void handleAccent(string const & name);
+       void handleDelim(latexkeys const * l, latexkeys const * r);
        ///
-       void handleDelim(int l, int r);
+       void handleNest(MathInset * p);
        /// Splits cells and shifts right part to the next cell
        void splitCell();
        /// Splits line and insert new row of cell 
@@ -168,20 +173,12 @@ public:
        ///
        MathTextCodes getLastCode() const;
        ///
-       int idx() const { return cursor().idx_; }
-       ///
-       void idxNext();
-       ///
-       void idxPrev();
-       ///
        void pullArg(bool goright);
        ///
-       bool isInside(MathInset *) const;
+       bool isInside(MathInset const *) const;
        ///
        MathTextCodes nextCode() const;
        ///
-       MathTextCodes prevCode() const;
-       ///
        char valign() const;
        ///
        char halign() const;
@@ -195,37 +192,32 @@ public:
        /// Make sure cursor position is valid
        void normalize() const;
        
-       /// Enter a new MathInset from the front or the back
-       void push(MathInset * par, bool first);
-       /// Leave current MathInset
-       bool pop();
+       /// enter a MathInset from the front
+       void pushLeft(MathInset * par);
+       /// enter a MathInset from the back
+       void pushRight(MathInset * par);
+       /// leave current MathInset to the left
+       bool popLeft();
+       /// leave current MathInset to the left
+       bool popRight();
 
-//private:
        ///
-       InsetFormulaBase * const formula_;
+       MathArray & array() const;
        ///
-       MathTextCodes lastcode_;
+       MathXArray & xarray() const;
        ///
-       MathFuncInset * imacro_;
-       // Selection stuff
-       /// do we currently select
-       bool selection_;
-
+       MathAtom const * prevAtom() const;
        ///
-       MathArray & array() const;
+       MathAtom * prevAtom();
        ///
-       MathXArray & xarray() const;
+       MathAtom const * nextAtom() const;
+       ///
+       MathAtom * nextAtom();
 
-       /// returns the first position of the (normalized) selection
-       MathCursorPos firstSelectionPos() const;
-       /// returns the last position of the (normalized) selection
-       MathCursorPos lastSelectionPos() const;
        /// 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_;
@@ -243,19 +235,12 @@ public:
        ///
        MathInset * parInset(int i) const;
        ///
+       MathMatrixInset * outerPar() const;
+       ///
        void seldump(char const * str) const;
        ///
        void dump(char const * str) const;
 
-       ///
-       int xpos() const;
-       ///
-       void gotoX(int x);
-
-       ///
-       bool nextIsInset() const;
-       ///
-       bool prevIsInset() const;
        ///
        void merge(MathArray const & arr);
        ///
@@ -266,6 +251,37 @@ public:
        MathScriptInset * prevScriptInset() const;
        ///
        MathSpaceInset * prevSpaceInset() const;
+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;
+       /// y-offset of current cell relative to par yo
+       int cellYOffset() const;
+       /// current x position relative to par xo
+       int xpos() const;
+       /// current y position relative to par yo
+       int ypos() const;
+       /// adjust position in current cell according to x. idx is not changed.
+       void gotoX(int x);
+
+       ///
+       InsetFormulaBase * const formula_;
+       ///
+       MathTextCodes lastcode_;
+       // Selection stuff
+       /// do we currently select
+       bool selection_;
 };
 
 extern MathCursor * mathcursor;