]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_cursor.h
small mouse click stuff. still not ok...
[lyx.git] / src / mathed / math_cursor.h
index 3b9d2eb4912a4da8d447605558b14b516033b9e9..3aa02de9566447b9f43027439356b67e1aa575de 100644 (file)
 #endif
 
 #include "math_defs.h"
+#include "math_inset.h"
+#include "LString.h"
 
-class MathInset;
-class MathAtom;
-class MathArrayInset;
-class MathFuncInset;
-class MathMatrixInset;
-class MathScriptInset;
-class MathSpaceInset;
 class InsetFormulaBase;
-class MathArray;
-class MathXArray;
 class Painter;
-class latexkeys;
+class Selection;
 
 /// Description of a position 
 struct MathCursorPos {
        /// inset
-       MathInset * par_;
+       MathAtom * par_;
        /// cell index
-       int idx_;
+       MathInset::idx_type idx_;
        /// cell position
-       int pos_;
+       MathInset::pos_type pos_;
+
        /// returns cell corresponding to this position
        MathArray & cell() const;
        /// returns cell corresponding to this position
-       MathArray & cell(int idx) const;
+       MathArray & cell(MathInset::idx_type idx) const;
        /// returns xcell corresponding to this position
        MathXArray & xcell() const;
        /// returns xcell corresponding to this position
-       MathXArray & xcell(int idx) const;
+       MathXArray & xcell(MathInset::idx_type idx) const;
 };
 
 /// 
@@ -63,13 +57,26 @@ bool operator<(MathCursorPos const &, MathCursorPos const &);
 /// This is the external interface of Math's subkernel
 class MathCursor {
 public:
+       /// short of anything else reasonable
+       typedef MathInset::size_type    size_type;
+       /// type for cursor positions within a cell
+       typedef MathInset::pos_type     pos_type;
+       /// type for cell indices
+       typedef MathInset::idx_type     idx_type;
+       /// type for row numbers
+       typedef MathInset::row_type     row_type;
+       /// type for column numbers
+       typedef MathInset::col_type     col_type;
+
        ///
-       explicit MathCursor(InsetFormulaBase *);
+       explicit MathCursor(InsetFormulaBase *, bool left);
        ///
-       void insert(MathInset *);
+       void insert(MathAtom const &);
        ///
        void insert(MathArray const &);
        ///
+       void paste(MathArray const &);
+       ///
        void erase();
        ///
        void backspace();
@@ -89,18 +96,6 @@ 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();
        ///
        void idxNext();
        ///
@@ -108,31 +103,34 @@ public:
        ///
        void plainErase();
        ///
-       void plainInsert(MathInset * p);
+       void plainInsert(MathAtom const &);
        ///
-       void niceInsert(MathInset * p);
+       void niceInsert(MathAtom const &);
+
        ///
        void delLine();
        /// This is in pixels from (maybe?) the top of inset
-       void setPos(int, int);
+       // don't move further in than the Anchor's inset if respect_anchor == true
+       void setPos(int x, int y, bool respect_anchor = false);
+       /// This is in pixels from (maybe?) the top of inset, don't move further
        ///
        void getPos(int & x, int & y);
        ///
-       MathInset * par() const;
+       MathAtom & par() const;
        /// return the next enclosing grid inset and the cursor's index in it
-       MathArrayInset * enclosingArray(int &) const;
+       MathGridInset * enclosingGrid(idx_type &) const;
        ///
        InsetFormulaBase const * formula();
        ///
-       int pos() const;
+       pos_type pos() const;
        ///
-       int idx() const;
+       idx_type idx() const;
        ///
-       int size() const;
+       size_type size() const;
        ///
-       void interpret(string const &);
+       bool interpret(string const &);
        ///
-       void setSize(MathStyles);
+       bool interpret(char);
        ///
        bool toggleLimits();
        ///
@@ -159,17 +157,21 @@ public:
        ///
        void selClear();
        ///
+       void selGet(MathArray & ar);
+       ///
        void drawSelection(Painter & pain) const;
        ///
        void handleFont(MathTextCodes t);
        ///
-       void handleDelim(latexkeys const * l, latexkeys const * r);
+       void handleDelim(string const & l, string const & 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 
        void breakLine();
+       /// read contents of line into an array
+       void readLine(MathArray & ar) const;
        ///
        MathTextCodes getLastCode() const;
        ///
@@ -183,19 +185,23 @@ public:
        ///
        char halign() const;
        ///
-       int col() const;
+       col_type ncols() const;
        ///
-       int row() const;
-
+       col_type col() const;
        ///
-       MathStyles style() const;
+       row_type row() const;
+
        /// Make sure cursor position is valid
        void normalize() const;
-       
+       ///
+       UpdatableInset * asHyperActiveInset() const;
+
+       /// enter a MathInset 
+       void push(MathAtom & par);
        /// enter a MathInset from the front
-       void pushLeft(MathInset * par);
+       void pushLeft(MathAtom & par);
        /// enter a MathInset from the back
-       void pushRight(MathInset * par);
+       void pushRight(MathAtom & par);
        /// leave current MathInset to the left
        bool popLeft();
        /// leave current MathInset to the left
@@ -206,13 +212,17 @@ public:
        ///
        MathXArray & xarray() const;
        ///
-       MathAtom const * prevAtom() const;
+       bool hasPrevAtom() const;
+       ///
+       bool hasNextAtom() const;
+       ///
+       MathAtom const & prevAtom() const;
        ///
-       MathAtom * prevAtom();
+       MathAtom & prevAtom();
        ///
-       MathAtom const * nextAtom() const;
+       MathAtom const & nextAtom() const;
        ///
-       MathAtom * nextAtom();
+       MathAtom & nextAtom();
 
        /// returns the selection
        void getSelection(MathCursorPos &, MathCursorPos &) const;
@@ -229,51 +239,44 @@ public:
        ///
        MathCursorPos const & cursor() const;
 
-
-       ///  
-       int last() const;
-       ///
-       MathInset * parInset(int i) const;
-       ///
-       MathMatrixInset * outerPar() const;
        ///
        void seldump(char const * str) const;
        ///
        void dump(char const * str) const;
-
-       ///
-       void merge(MathArray const & arr);
-       ///
-       MathInset * nextInset() const;
        ///
-       MathInset * prevInset() const;
-       ///
-       MathScriptInset * prevScriptInset() const;
+       void stripFromLastEqualSign();
+
        ///
-       MathSpaceInset * prevSpaceInset() const;
+       friend class Selection;
+
 private:
+       /// 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();
+
        ///
        string macroName() const;
        ///
-       void insert(char, MathTextCodes t = LM_TC_MIN);
+       int macroNamePos() const;
+       ///
+       void insert(char, MathTextCodes t);
        /// can we enter the inset? 
-       bool openable(MathInset *, bool selection) const;
+       bool openable(MathAtom const &, bool selection) const;
        /// can the setPos routine enter that inset?
-       bool positionable(MathInset *, bool selection) const;
+       bool positionable(MathAtom const &, int x, int y) const;
        /// write access to cursor cell position
-       int & pos();
+       pos_type & 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);
+       idx_type & idx();
 
        ///
        InsetFormulaBase * const formula_;