]> git.lyx.org Git - lyx.git/blob - src/mathed/math_iterator.h
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_iterator.h
1 // -*- C++ -*-
2 #ifndef MATH_ITERATOR_H
3 #define MATH_ITERATOR_H
4
5 #include "math_cursor.h"
6
7 // this helper struct is used for traversing math insets
8
9 class MathIterator {
10 public:
11         /// default constructor, used for end of range
12         //MathIterator();
13         /// start with given inset
14         explicit MathIterator(MathInset * p);
15         /// start with given position
16         //explicit MathIterator(MathCursor::cursor_type const & cursor);
17         ///
18         MathCursorPos const & operator*() const;
19         ///
20         MathCursorPos const & operator->() const;
21         /// move on one step
22         void operator++();
23         /// move on several steps
24         void jump(MathInset::difference_type);
25         /// read access to top most item (inline after running gprof!)
26         MathCursorPos const & position() const { return cursor_.back(); }
27         /// write access to top most item
28         MathCursorPos & position() { return cursor_.back(); }
29         /// read access to full path
30         MathCursor::cursor_type const & cursor() const;
31         /// read access to top most inset
32         MathInset const * par() const;
33         /// read access to top most inset
34         MathInset * par();
35         /// helper for iend
36         void goEnd();
37         /// read access to top most item
38         MathArray const & cell() const;
39
40 private:
41         /// own level down
42         void push(MathInset *);
43         /// own level up
44         void pop();
45
46         /// current position
47         MathCursor::cursor_type cursor_;
48 };
49
50 ///
51 bool operator==(MathIterator const &, MathIterator const &);
52 ///
53 bool operator!=(MathIterator const &, MathIterator const &);
54
55 ///
56 MathIterator ibegin(MathInset * p);
57 ///
58 MathIterator iend(MathInset * p);
59
60 #endif