]> git.lyx.org Git - features.git/blob - src/DocIterator.h
#6401 improve doc iterator to allow easy backward navigation
[features.git] / src / DocIterator.h
1 // -*- C++ -*-
2 /**
3  * \file DocIterator.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 DOCITERATOR_H
13 #define DOCITERATOR_H
14
15 #include "CursorSlice.h"
16
17 #include <vector>
18 #include <algorithm>
19
20 namespace lyx {
21
22 class DocIterator;
23 class Encoding;
24 class FontSpan;
25 class InsetIterator;
26 class LyXErr;
27 class MathAtom;
28 class Paragraph;
29 class Text;
30
31 DocIterator doc_iterator_begin(Buffer const * buf, Inset const * inset = 0);
32 DocIterator doc_iterator_end(Buffer const * buf, Inset const * inset = 0);
33
34
35 class DocIterator
36 {
37 public:
38         /// type for cell number in inset
39         typedef CursorSlice::idx_type idx_type;
40         /// type for row indices
41         typedef CursorSlice::row_type row_type;
42         /// type for col indices
43         typedef CursorSlice::col_type col_type;
44
45 public:
46         ///
47         DocIterator();
48         ///
49         explicit DocIterator(Buffer *buf);
50
51         /// access to owning buffer
52         Buffer * buffer() const { return buffer_; }
53         /// access to owning buffer
54         void setBuffer(Buffer * buf) { buffer_ = buf; }
55
56         /// Clone this for given \p buffer.
57         /// \p buffer must be a clone of buffer_.
58         DocIterator clone(Buffer * buffer) const;
59
60         /// access slice at position \p i
61         CursorSlice const & operator[](size_t i) const { return slices_[i]; }
62         /// access slice at position \p i
63         CursorSlice & operator[](size_t i) { return slices_[i]; }
64         /// chop a few slices from the iterator
65         void resize(size_t i) { slices_.resize(i); }
66
67         /// is the iterator valid?
68         explicit operator bool() const { return !empty(); }
69
70         /// does this iterator have any content?
71         bool empty() const { return slices_.empty(); }
72         /// is this the begin position?
73         bool atBegin() const { return depth() == 1 && pit() == 0 && pos() == 0; }
74         /// is this the end position?
75         bool atEnd() const { return slices_.empty(); }
76
77         /// checks the cursor slices for disabled spell checker insets
78         bool allowSpellCheck() const;
79
80         //
81         // access to slice at tip
82         //
83         /// access to tip
84         CursorSlice & top() { return slices_.back(); }
85         /// access to tip
86         CursorSlice const & top() const { return slices_.back(); }
87         /// access to outermost slice
88         CursorSlice & bottom() { return slices_.front(); }
89         /// access to outermost slice
90         CursorSlice const & bottom() const { return slices_.front(); }
91         /// how many nested insets do we have?
92         size_t depth() const { return slices_.size(); }
93         /// the containing inset
94         Inset & inset() const { return top().inset(); }
95         /// return the cell of the inset this cursor is in
96         idx_type idx() const { return top().idx(); }
97         /// return the cell of the inset this cursor is in
98         idx_type & idx() { return top().idx(); }
99         /// return the last possible cell in this inset
100         idx_type lastidx() const;
101         /// return the paragraph this cursor is in
102         pit_type pit() const { return top().pit(); }
103         /// return the paragraph this cursor is in
104         pit_type & pit() { return top().pit(); }
105         /// return the last possible paragraph in this inset
106         pit_type lastpit() const;
107         /// return the position within the paragraph
108         pos_type pos() const { return top().pos(); }
109         /// return the position within the paragraph
110         pos_type & pos() { return top().pos(); }
111         /// return the last position within the paragraph
112         pos_type lastpos() const;
113
114         /// return the number of embedded cells
115         size_t nargs() const;
116         /// return the number of embedded cells
117         size_t ncols() const;
118         /// return the number of embedded cells
119         size_t nrows() const;
120         /// return the grid row of the top cell
121         row_type row() const;
122         /// return the last row of the top grid
123         row_type lastrow() const { return nrows() - 1; }
124         /// return the grid column of the top cell
125         col_type col() const;
126         /// return the last column of the top grid
127         col_type lastcol() const { return ncols() - 1; }
128         /// the inset just behind the cursor
129         /// returns 0 if there is no inset (e.g. normal text)
130         Inset * nextInset() const;
131         /// the inset just in front of the cursor
132         Inset * prevInset() const;
133         ///
134         bool boundary() const { return boundary_; }
135         ///
136         void boundary(bool b) { boundary_ = b; }
137
138         // the two methods below have been inlined out because of
139         // profiling results under linux when opening a document.
140         /// are we in mathed?.
141         bool inMathed() const
142         { return !empty() && inset().inMathed(); }
143         /// are we in texted?.
144         bool inTexted() const
145         { return !empty() && !inset().inMathed(); }
146         /// are we in regexp-mode ?
147         bool inRegexped() const;
148
149         //
150         // math-specific part
151         //
152         /// return the mathed cell this cursor is in
153         MathData & cell() const;
154         ///
155         InsetMath & nextMath();
156         ///
157         InsetMath & prevMath();
158         /// the mathatom left of the cursor
159         MathAtom & prevAtom() const;
160         /// the mathatom right of the cursor
161         MathAtom & nextAtom() const;
162
163         // text-specific part
164         //
165         /// the paragraph we're in in text mode.
166         /// \warning only works within text!
167         Paragraph & paragraph() const;
168         /// the paragraph we're in in any case.
169         /// This method will give the containing paragraph even
170         /// if not in text mode (ex: in mathed).
171         Paragraph & innerParagraph() const;
172         /// return the inner text slice.
173         CursorSlice const & innerTextSlice() const;
174         // convert a DocIterator into an argument to LFUN_PARAGRAPH_GOTO
175         docstring paragraphGotoArgument() const;
176         /// returns a DocIterator for the containing text inset
177         DocIterator getInnerText() const;
178         /// the first and last positions of a word at top cursor slice
179         /// \warning only works within text!
180         FontSpan locateWord(word_location const loc) const;
181         ///
182         Text * text() const;
183         /// the containing inset or the cell, respectively
184         Inset * realInset() const;
185         ///
186         Inset * innerInsetOfType(int code) const;
187         ///
188         Text * innerText() const;
189
190         //
191         // elementary moving
192         //
193         /// move one step backwards
194         bool posBackward();
195         /// move one step forward
196         bool posForward();
197         /**
198          * move on one logical position, descend into nested insets
199          * including collapsed insets
200          */
201         void forwardPos();
202         /**
203          * move on one logical position, descend into nested insets
204          * skip collapsed insets
205          */
206         void forwardPosIgnoreCollapsed();
207         /// move on one physical character or inset
208         void forwardChar();
209         /// move on one paragraph
210         void forwardPar();
211         /// move on to the next closest inset
212         void forwardInset();
213         /// move backward one logical position
214         void backwardPos();
215         /// move backward one logical position, skip collapsed insets
216         void backwardPosIgnoreCollapsed();
217         /// move backward one physical character or inset
218         void backwardChar();
219         /// move backward one paragraph
220         void backwardPar();
221         /// move backward one inset
222         /// not used currently, uncomment if you need it
223         //void backwardInset();
224
225         /// are we some 'extension' (i.e. deeper nested) of the given iterator
226         bool hasPart(DocIterator const & it) const;
227
228         /// output
229         friend std::ostream &
230         operator<<(std::ostream & os, DocIterator const & cur);
231         friend LyXErr & operator<<(LyXErr & os, DocIterator const & it);
232         ///
233         friend bool operator==(DocIterator const &, DocIterator const &);
234         friend bool operator<(DocIterator const &, DocIterator const &);
235         friend bool operator>(DocIterator const &, DocIterator const &);
236         friend bool operator<=(DocIterator const &, DocIterator const &);
237         ///
238         friend class StableDocIterator;
239 //protected:
240         ///
241         void clear() { slices_.clear(); }
242         ///
243         void push_back(CursorSlice const & sl) { slices_.push_back(sl); }
244         ///
245         void pop_back() { slices_.pop_back(); }
246         /// recompute the inset parts of the cursor from the document data
247         void updateInsets(Inset * inset);
248         /// fix DocIterator in circumstances that should never happen.
249         /// \return true if the DocIterator was fixed.
250         bool fixIfBroken();
251         /// Repopulate the slices insets from bottom to top. Useful
252         /// for stable iterators or Undo data.
253         void sanitize();
254         ///
255         bool isInside(Inset const *) const;
256         /// make sure we are outside of given inset
257         void leaveInset(Inset const & inset);
258
259         /// find index of CursorSlice with &cell() == &cell (or -1 if not found)
260         int find(MathData const & cell) const;
261         /// find index of CursorSlice with inset() == inset (or -1 of not found)
262         int find(Inset const * inset) const;
263         /// cut off CursorSlices with index > above and store cut off slices in cut.
264         void cutOff(int above, std::vector<CursorSlice> & cut);
265         /// cut off CursorSlices with index > above
266         void cutOff(int above);
267         /// push CursorSlices on top
268         void append(std::vector<CursorSlice> const & x);
269         /// push one CursorSlice on top and set its index and position
270         void append(idx_type idx, pos_type pos);
271
272         ///
273         docstring getPossibleLabel() const;
274
275         ///
276         Encoding const * getEncoding() const;
277 private:
278         friend class InsetIterator;
279         friend DocIterator doc_iterator_begin(Buffer const * buf, Inset const * inset);
280         friend DocIterator doc_iterator_end(Buffer const * buf, Inset const * inset);
281         ///
282         explicit DocIterator(Buffer * buf, Inset * inset);
283         /**
284          * Normally, when the cursor is at position i, it is painted *before*
285          * the character at position i. However, what if we want the cursor
286          * painted *after* position i? That's what boundary_ is for: if
287          * boundary_==true, the cursor is painted *after* position i-1, instead
288          * of before position i.
289          *
290          * Note 1: Usually, after i-1 or before i are actually the same place!
291          * However, this is not the case when i-1 and i are not painted
292          * contiguously, and in these cases we sometimes do want to have control
293          * over whether to paint before i or after i-1.
294          * Some concrete examples of where this happens:
295          * a. i-1 at the end of one row, i at the beginning of next row
296          * b. in bidi text, at transitions between RTL and LTR or vice versa
297          *
298          * Note 2: Why i and i-1? Why, if boundary_==false means: *before* i,
299          * couldn't boundary_==true mean: *after* i?
300          * Well, the reason is this: cursor position is not used only for
301          * painting the cursor, but it also affects other things, for example:
302          * where the next insertion will be placed (it is inserted at the current
303          * position, pushing anything at the current position and beyond forward).
304          * Now, when the current position is i and boundary_==true, insertion would
305          * happen *before* i. If the cursor, however, were painted *after* i, that
306          * would be very unnatural...
307          */
308         bool boundary_;
309         ///
310         std::vector<CursorSlice> const & internalData() const { return slices_; }
311         ///
312         std::vector<CursorSlice> slices_;
313         ///
314         Inset * inset_;
315         ///
316         Buffer * buffer_;
317 };
318
319
320 inline bool operator==(DocIterator const & di1, DocIterator const & di2)
321 {
322         return di1.slices_ == di2.slices_;
323 }
324
325
326 inline bool operator!=(DocIterator const & di1, DocIterator const & di2)
327 {
328         return !(di1 == di2);
329 }
330
331
332 inline
333 bool operator<(DocIterator const & p, DocIterator const & q)
334 {
335         size_t depth = std::min(p.depth(), q.depth());
336         for (size_t i = 0 ; i < depth ; ++i) {
337                 if (p[i] != q[i])
338                         return p[i] < q[i];
339         }
340         return p.depth() < q.depth();
341 }
342
343
344 inline
345 bool operator>(DocIterator const & p, DocIterator const & q)
346 {
347         return q < p;
348 }
349
350
351 inline
352 bool operator<=(DocIterator const & p, DocIterator const & q)
353 {
354         return !(q < p);
355 }
356
357
358 inline
359 bool operator>=(DocIterator const & p, DocIterator const & q)
360 {
361         return !(p < q);
362 }
363
364
365 // The difference to a ('non stable') DocIterator is the removed
366 // (overwritten by 0...) part of the CursorSlice data items. So this thing
367 // is suitable for external storage, but not for iteration as such.
368
369 class StableDocIterator
370 {
371 public:
372         ///
373         StableDocIterator() {}
374         /// non-explicit intended
375         StableDocIterator(const DocIterator & it);
376         ///
377         DocIterator asDocIterator(Buffer * buf) const;
378         ///
379         size_t size() const { return data_.size(); }
380         ///  return the position within the paragraph
381         pos_type pos() const { return data_.back().pos(); }
382         ///  return the position within the paragraph
383         pos_type & pos() { return data_.back().pos(); }
384         ///
385         friend std::ostream &
386         operator<<(std::ostream & os, StableDocIterator const & cur);
387         ///
388         friend std::istream &
389         operator>>(std::istream & is, StableDocIterator & cur);
390         ///
391         friend bool
392         operator==(StableDocIterator const &, StableDocIterator const &);
393 private:
394         std::vector<CursorSlice> data_;
395 };
396
397 } // namespace lyx
398
399 #endif // DOCITERATOR_H