]> git.lyx.org Git - features.git/blob - src/PosIterator.h
use std::advance and std::distance instead of home-grown versions
[features.git] / src / PosIterator.h
1 // -*- C++ -*-
2 /* \file PosIterator.h
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alfredo Braunstein
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #ifndef POSITERATOR_H
12 #define POSITERATOR_H
13
14 #include "ParagraphList_fwd.h"
15
16 #include "iterators.h"
17
18 #include "support/types.h"
19
20 #include <vector>
21
22
23 class BufferView;
24
25 struct PosIteratorItem {
26         PosIteratorItem(ParagraphList * pl,
27                         ParagraphList::iterator pit,
28                         lyx::pos_type pos,
29                         int index = 0)
30                 : pl(pl), pit(pit), pos(pos), index(index) {};
31         ParagraphList * pl;
32         ParagraphList::iterator pit;
33         lyx::pos_type pos;
34         int index;
35 };
36
37
38 class PosIterator : public std::iterator<
39         std::bidirectional_iterator_tag,
40         ParagraphList::value_type> {
41 public:
42         PosIterator(BufferView & bv);
43         PosIterator(ParIterator & par, lyx::pos_type pos);
44         PosIterator(ParagraphList * pl, ParagraphList::iterator pit,
45                     lyx::pos_type pos);
46         PosIterator(ParIterator const & parit, lyx::pos_type p);
47         PosIterator & operator++();
48         PosIterator & operator--();
49         friend bool operator==(PosIterator const &, PosIterator const &);
50
51         ParagraphList::iterator pit() const { return stack_.back().pit; }
52         lyx::pos_type pos() const { return stack_.back().pos; }
53         bool at_end() const;
54         InsetBase * inset() const;
55         friend PosIterator ParIterator::asPosIterator(lyx::pos_type) const;
56         friend ParIterator::ParIterator(PosIterator const &);
57
58 private:
59         PosIterator() {};
60         //this is conceptually a stack, but we need random access sometimes
61         std::vector<PosIteratorItem> stack_;
62 };
63
64
65 bool operator!=(PosIterator const &, PosIterator const &);
66 bool operator==(PosIterator const &, PosIterator const &);
67
68 #endif