]> git.lyx.org Git - features.git/blob - src/mathed/math_iterator.h
drop another function unknown to the outer world...
[features.git] / src / mathed / math_iterator.h
1 // -*- C++ -*-
2 /**
3  * \file math_iterator.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_ITERATOR_H
13 #define MATH_ITERATOR_H
14
15 #include "cursor_slice.h"
16
17 #include <vector>
18
19
20 // this is used for traversing math insets
21
22 class MathIterator : private std::vector<CursorSlice> {
23 public:
24         // re-use inherited stuff
25         typedef std::vector<CursorSlice> base_type;
26         using base_type::clear;
27         using base_type::size;
28         using base_type::push_back;
29         using base_type::pop_back;
30         using base_type::back;
31         using base_type::begin;
32         using base_type::end;
33         using base_type::erase;
34         using base_type::operator[];
35         using base_type::size_type;
36         using base_type::difference_type;
37         using base_type::const_iterator;
38         friend bool operator!=(MathIterator const &, MathIterator const &);
39         friend bool operator==(MathIterator const &, MathIterator const &);
40
41         /// default constructor
42         MathIterator();
43         /// start with given inset
44         explicit MathIterator(MathInset * p);
45         /// move on one step
46         void operator++();
47         /// helper for iend
48         void goEnd();
49         /// read access to top most item
50         MathArray const & cell() const;
51         /// is this a non-end position
52         bool normal() const;
53         /// shrinks to at most i levels
54         void shrink(size_type i);
55
56 private:
57         /// own level down
58         void push(MathInset *);
59         /// own level up
60         void pop();
61 };
62
63 ///
64 bool operator==(MathIterator const &, MathIterator const &);
65 ///
66 bool operator!=(MathIterator const &, MathIterator const &);
67
68 ///
69 MathIterator ibegin(MathInset * p);
70 ///
71 MathIterator iend(MathInset * p);
72
73 #endif