]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_cursor.h
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_cursor.h
index 836c43ee007a1ecfa34ad3037635acf14af7845c..6e2742fd6505e64415185e9b946663798f44836f 100644 (file)
 #endif
 
 #include "math_defs.h"
+#include "math_inset.h"
+#include "math_pos.h"
+#include "LString.h"
 
-class MathInset;
-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_;
-       /// cell index
-       int idx_;
-       /// cell position
-       int pos_;
-       /// returns cell corresponding to this position
-       MathArray & cell() const;
-       /// returns cell corresponding to this position
-       MathArray & cell(int idx) const;
-       /// returns xcell corresponding to this position
-       MathXArray & xcell() const;
-       /// returns xcell corresponding to this position
-       MathXArray & xcell(int idx) const;
-};
+/**
+
+[Have a look at math_inset.h first]
+
+The MathCursor is different from the kind of cursor used in the Outer
+World. It contains a stack of MathCursorPositions, each of which is made
+up of a inset pointer, an index and a position offset, marking a path from
+this formula's mathHullInset to the current position.
 
-/// 
-bool operator==(MathCursorPos const &, MathCursorPos const &);
-/// 
-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;
+       /// how to store a cursor
+       typedef std::vector<MathCursorPos> cursor_type;
+
        ///
-       explicit MathCursor(InsetFormulaBase *);
-       ///
-       ~MathCursor();
-       ///
-       void insert(char, MathTextCodes t = LM_TC_MIN);
+       explicit MathCursor(InsetFormulaBase *, bool left);
        ///
-       void insert(MathInset *);
+       void insert(MathAtom const &);
        ///
        void insert(MathArray const &);
        ///
+       void paste(MathArray const &);
+       ///
        void erase();
        ///
        void backspace();
-       ///
-       void home();
-       ///
-       void end();
-       ///
+       /// called for LFUN_HOME etc
+       void home(bool sel = false);
+       /// called for LFUN_END etc
+       void end(bool sel = false);
+       /// called for LFUN_RIGHT and LFUN_RIGHTSEL
        bool right(bool sel = false);
-       ///
+       /// called for LFUN_LEFT etc
        bool left(bool sel = false);
-       ///
+       /// called for LFUN_UP etc
        bool up(bool sel = false);
-       ///
+       /// called for LFUN_DOWN etc
        bool down(bool sel = false);
        /// Put the cursor in the first position
        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();
-       ///
+       /// move to next cell in current inset
        void idxNext();
-       ///
+       /// move to previous cell in current inset
        void idxPrev();
        ///
        void plainErase();
        ///
-       void plainInsert(MathInset * p);
+       void plainInsert(MathAtom const &);
        ///
-       void delLine();
-       /// This is in pixels from (maybe?) the top of inset
-       void setPos(int, int);
+       void niceInsert(MathAtom const &);
+
        ///
+       void delLine();
+       /// in pixels from top of screen
+       void setPos(int x, int y);
+       /// in pixels from top of screen
        void getPos(int & x, int & y);
-       ///
+       /// current inset
        MathInset * 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();
+       InsetFormulaBase * formula();
+       /// current offset in the current cell
+       pos_type pos() const;
+       /// current cell
+       idx_type idx() const;
+       /// size of current cell
+       size_type size() const;
        ///
-       int pos() const;
+       bool script(bool);
        ///
-       int idx() const;
+       bool interpret(string const &);
        ///
-       int size() const;
-       ///
-       void interpret(string const &);
-       ///
-       void setSize(MathStyles);
+       bool interpret(char);
        ///
        bool toggleLimits();
-       ///
-       // Macro mode methods
-       void macroModeOpen();
-       ///
+       /// interpret name a name of a macro
        void macroModeClose();
        ///
        bool inMacroMode() const;
@@ -162,25 +145,23 @@ public:
        ///
        void selClear();
        ///
-       void drawSelection(Painter & pain) const;
-       ///
-       void clearLastCode();
+       void selGet(MathArray & ar);
        ///
-       void setLastCode(MathTextCodes t);
+       void drawSelection(Painter & pain) const;
        ///
        void handleFont(MathTextCodes t);
        ///
-       void handleAccent(string const & name);
-       ///
-       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
+       /// splits cells and shifts right part to the next cell
        void splitCell();
-       /// Splits line and insert new row of cell 
+       /// splits line and insert new row of cell 
        void breakLine();
-       ///
-       MathTextCodes getLastCode() const;
+       /// read contents of line into an array
+       void readLine(MathArray & ar) const;
+       /// remove this as soon as LyXFunc::getStatus is "localized"
+       MathTextCodes getLastCode() const { return lastcode_; }
        ///
        void pullArg(bool goright);
        ///
@@ -192,19 +173,25 @@ public:
        ///
        char halign() const;
        ///
-       int col() const;
+       col_type hullCol() const;
+       ///
+       row_type hullRow() const;
+       ///
+       col_type gridCol() const;
        ///
-       int row() const;
+       row_type gridRow() const;
 
+       /// make sure cursor position is valid
+       void normalize();
        ///
-       MathStyles style() 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
@@ -214,68 +201,77 @@ public:
        MathArray & array() const;
        ///
        MathXArray & xarray() const;
+       ///
+       bool hasPrevAtom() const;
+       ///
+       bool hasNextAtom() 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_;
+       cursor_type Cursor_;
        /// path of positions the anchor had to go if it were leving each inset
-       std::vector<MathCursorPos> Anchor_;
+       mutable cursor_type Anchor_;
 
-       /// reference to the last item of the path
+       /// reference to the last item of the path, i.e. "The Cursor"
        MathCursorPos & cursor();
-       ///
+       /// reference to the last item of the path, i.e. "The Cursor"
        MathCursorPos const & cursor() const;
 
-
-       ///  
-       int last() const;
-       ///
-       MathInset * parInset(int i) const;
-       ///
-       MathMatrixInset * outerPar() const;
-       ///
+       /// dump selection information for debugging
        void seldump(char const * str) const;
-       ///
+       /// dump selection information for debugging
        void dump(char const * str) const;
-
-       ///
-       void merge(MathArray const & arr);
        ///
-       MathInset * nextInset() const;
+       void stripFromLastEqualSign();
+       /// moves on 
+       void setSelection(cursor_type const & where, size_type n);
+
        ///
-       MathInset * prevInset() 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 or down
+       bool goUpDown(bool up);
+       /// moves position into box
+       bool bruteFind(int xo, int yo, int xlow, int xhigh, int ylow, int yhigh);
+
        ///
-       MathScriptInset * prevScriptInset() const;
+       string macroName() const;
        ///
-       MathSpaceInset * prevSpaceInset() const;
-private:
+       MathInset::difference_type macroNamePos() const;
        ///
-       int & pos();
-       ///
-       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);
+       void insert(char, MathTextCodes t);
+       /// can we enter the inset? 
+       bool openable(MathAtom const &, bool selection) const;
+       /// write access to cursor cell position
+       pos_type & pos();
+       /// write access to cursor cell index
+       idx_type & idx();
 
        ///
-       InsetFormulaBase * const formula_;
+       InsetFormulaBase * formula_;
        ///
        MathTextCodes lastcode_;
-       ///
-       MathFuncInset * imacro_;
        // Selection stuff
        /// do we currently select
        bool selection_;