X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fdociterator.h;h=da4f082c0c1ec09f9ddb243e747d6d023d2692a4;hb=37e82a546392d43f787826b85481a11f2a27af15;hp=22e49c8b455ecf6d9c2bbf8eaf82dd473c0a89e3;hpb=4c8d536692beabcec88771a53b40eaf6acd76f49;p=lyx.git diff --git a/src/dociterator.h b/src/dociterator.h index 22e49c8b45..da4f082c0c 100644 --- a/src/dociterator.h +++ b/src/dociterator.h @@ -17,9 +17,8 @@ #include #include -class BufferView; -class MathAtom; class LyXText; +class MathAtom; class Paragraph; class Row; @@ -35,13 +34,13 @@ bool ptr_cmp(A const * a, B const * b) // The public inheritance should go in favour of a suitable data member // (or maybe private inheritance) at some point of time. -class DocumentIterator : public std::vector +class DocIterator : public std::vector { public: /// type for cell number in inset typedef CursorSlice::idx_type idx_type; /// type for paragraph numbers positions within a cell - typedef CursorSlice::par_type par_type; + typedef CursorSlice::pit_type pit_type; /// type for cursor positions within a cell typedef CursorSlice::pos_type pos_type; /// type for row indices @@ -51,11 +50,14 @@ public: public: /// - DocumentIterator(); + DocIterator(); /// - explicit DocumentIterator(BufferView & bv); - /// - BufferView & bv() const { return *bv_; } + explicit DocIterator(InsetBase & inset); + + /// is the iterator valid? + operator const void*() const { return empty() ? 0 : this; } + /// is this iterator invalid? + bool operator!() const { return empty(); } // // access to slice at tip @@ -64,10 +66,14 @@ public: CursorSlice & top() { return back(); } /// access to tip CursorSlice const & top() const { return back(); } + /// access to outermost slice + CursorSlice & bottom() { return front(); } + /// access to outermost slicetip + CursorSlice const & bottom() const { return front(); } /// how many nested insets do we have? size_t depth() const { return size(); } /// the containing inset - InsetBase * inset() const { return back().inset(); } + InsetBase & inset() const { return back().inset(); } /// return the cell of the inset this cursor is in idx_type idx() const { return back().idx(); } /// return the cell of the inset this cursor is in @@ -75,21 +81,17 @@ public: /// return the last possible cell in this inset idx_type lastidx() const; /// return the paragraph this cursor is in - par_type par() const { return back().par(); } + pit_type pit() const { return back().pit(); } /// return the paragraph this cursor is in - par_type & par() { return back().par(); } + pit_type & pit() { return back().pit(); } /// return the last possible paragraph in this inset - par_type lastpar() const; + pit_type lastpit() const; /// return the position within the paragraph pos_type pos() const { return back().pos(); } /// return the position within the paragraph pos_type & pos() { return back().pos(); } /// return the last position within the paragraph pos_type lastpos() const; - /// return the display row of the cursor with in the top par - row_type crow() const; - /// return the display row of the cursor with in the top par - row_type lastcrow() const; /// return the number of embedded cells size_t nargs() const; @@ -151,8 +153,6 @@ public: /// LyXText * text() const; /// - CursorSlice const & innerTextSlice() const; - /// InsetBase * innerInsetOfType(int code) const; /// LyXText * innerText() const; @@ -160,58 +160,66 @@ public: // // elementary moving // - /// move on one position + /// move on one logical position void forwardPos(); + /// move on one physical character or inset + void forwardChar(); /// move on one paragraph void forwardPar(); /// move on one cell void forwardIdx(); /// move on one inset void forwardInset(); + /// move backward one logical position + void backwardPos(); + /// move backward one physical character or inset + void backwardChar(); + /// move backward one paragraph + void backwardPar(); + /// move backward one cell + void backwardIdx(); + /// move backward one inset + void backwardInset(); + + /// are we some 'extension' (i.e. deeper nested) of the given iterator + bool hasPart(DocIterator const & it) const; + /// output friend std::ostream & - operator<<(std::ostream & os, DocumentIterator const & cur); - + operator<<(std::ostream & os, DocIterator const & cur); private: - /// - BufferView * bv_; + InsetBase * inset_; }; -/// -DocumentIterator bufferBegin(BufferView & bv); -/// -DocumentIterator bufferEnd(); -/// -DocumentIterator insetBegin(BufferView & bv, InsetBase * inset); -/// -DocumentIterator insetEnd(); +DocIterator doc_iterator_begin(InsetBase & inset); +DocIterator doc_iterator_end(InsetBase & inset); -// The difference to a ('non stable') DocumentIterator is the removed +// The difference to a ('non stable') DocIterator is the removed // (overwritte by 0...) part of the CursorSlice data items. So this thing // is suitable for external storage, but not for iteration as such. -class StableDocumentIterator { +class StableDocIterator { public: /// - StableDocumentIterator() {} + StableDocIterator() {} /// non-explicit intended - StableDocumentIterator(const DocumentIterator & it); + StableDocIterator(const DocIterator & it); /// - DocumentIterator asDocumentIterator(BufferView & bv) const; + DocIterator asDocIterator(InsetBase * start) const; /// size_t size() const { return data_.size(); } /// friend std::ostream & - operator<<(std::ostream & os, StableDocumentIterator const & cur); + operator<<(std::ostream & os, StableDocIterator const & cur); /// friend std::istream & - operator>>(std::istream & is, StableDocumentIterator & cur); + operator>>(std::istream & is, StableDocIterator & cur); private: std::vector data_; }; -bool operator==(StableDocumentIterator const &, StableDocumentIterator const &); +bool operator==(StableDocIterator const &, StableDocIterator const &); #endif