]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_scriptinset.h
mathed uglyfication
[lyx.git] / src / mathed / math_scriptinset.h
index 408f9015bbd5923627c693f7605e8329bb7f3604..32d0b5479c3572e8c07a0e1d186cfa136c51810e 100644 (file)
@@ -48,15 +48,15 @@ public:
        /// write content as something readable by Octave
        void octave(OctaveStream &) const;
        /// move cursor left
-       bool idxLeft(idx_type &, pos_type &) const;
+       bool idxLeft(BufferView &) const;
        /// move cursor right
-       bool idxRight(idx_type &, pos_type &) const;
+       bool idxRight(BufferView &) const;
        /// move cursor up or down
-       bool idxUpDown(idx_type & idx, pos_type & pos, bool up, int targetx) const;
+       bool idxUpDown(BufferView &, bool up, int targetx) const;
        /// Target pos when we enter the inset from the left by pressing "Right"
-       bool idxFirst(idx_type & idx, pos_type & pos) const;
+       bool idxFirst(BufferView &) const;
        /// Target pos when we enter the inset from the right by pressing "Left"
-       bool idxLast(idx_type & idx, pos_type & pos) const;
+       bool idxLast(BufferView &) const;
        /// can we enter this cell?
        bool validCell(idx_type i) const { return i == 2 || script_[i]; }
 
@@ -95,9 +95,11 @@ public:
        void infoize(std::ostream & os) const;
        /// say whether we have displayed limits
        void infoize2(std::ostream & os) const;
-       /// local dispatcher
-       dispatch_result dispatch(FuncRequest const & cmd, idx_type & idx, pos_type & pos);
-
+protected:
+       ///
+       virtual
+       DispatchResult
+       priv_dispatch(BufferView & bv, FuncRequest const & cmd);
 private:
        /// returns x offset for main part
        int dxx() const;