]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_iterator.h
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_iterator.h
index e351080906326e0f94aaa3c00ae2bfd347899d96..7b484b030b41be4c37166a333024513a6c3c0510 100644 (file)
@@ -1,3 +1,4 @@
+// -*- C++ -*-
 #ifndef MATH_ITERATOR_H
 #define MATH_ITERATOR_H
 
@@ -9,16 +10,18 @@ class MathIterator {
 public:
        /// default constructor, used for end of range
        //MathIterator();
-       /// start with given formula
-       explicit MathIterator(MathAtom & t);
+       /// start with given inset
+       explicit MathIterator(MathInset * p);
        /// start with given position
-       explicit MathIterator(MathCursor::cursor_type const & cursor);
+       //explicit MathIterator(MathCursor::cursor_type const & cursor);
        ///
        MathCursorPos const & operator*() const;
        ///
        MathCursorPos const & operator->() const;
-       ///
+       /// move on one step
        void operator++();
+       /// move on several steps
+       void jump(MathInset::difference_type);
        /// read access to top most item
        MathCursorPos const & position() const;
        /// write access to top most item
@@ -26,19 +29,21 @@ public:
        /// read access to full path
        MathCursor::cursor_type const & cursor() const;
        /// read access to top most inset
-       MathAtom const & par() const;
+       MathInset const * par() const;
        /// read access to top most inset
-       MathAtom & par();
+       MathInset * par();
        /// helper for iend
        void goEnd();
-       
-private:
-       /// write access to top most item
+       /// read access to top most item
+       MathArray const & cell() const;
+
+private:       
+       /// read access to top most item
        MathXArray const & xcell() const;
        /// write access to top most item
-       MathAtom * nextInset() const;
+       MathInset * nextInset() const;
        /// own level down
-       void push(MathAtom &);
+       void push(MathInset *);
        /// own level up
        void pop();
 
@@ -52,8 +57,8 @@ bool operator==(MathIterator const &, MathIterator const &);
 bool operator!=(MathIterator const &, MathIterator const &);
 
 ///
-MathIterator ibegin(MathAtom & p);
+MathIterator ibegin(MathInset * p);
 ///
-MathIterator iend(MathAtom & p);
+MathIterator iend(MathInset * p);
 
 #endif