]> git.lyx.org Git - lyx.git/blobdiff - src/CursorSlice.h
Do not use \&@#^_~$ as lstinline delimiter, as suggested by Herbert
[lyx.git] / src / CursorSlice.h
index cf32cc611decb458c4d6c475519d6d60c36d7d82..cdd13ecec0124ac7275f607a07e88ee645540339 100644 (file)
@@ -20,6 +20,9 @@
 #include "support/types.h"
 #include "insets/Inset.h"
 
+#include <boost/signal.hpp>
+#include <boost/signals/trackable.hpp>
+
 #include <cstddef>
 #include <iosfwd>
 
@@ -28,18 +31,24 @@ namespace lyx {
 
 class Inset;
 class MathData;
-class LyXText;
+class Text;
 class Paragraph;
 
 /// This encapsulates a single slice of a document iterator as used e.g.
 /// for cursors.
 
 // After IU, the distinction of MathInset and InsetOld as well as
-// that of MathData and LyXText should vanish. They are conceptually the
+// that of MathData and Text should vanish. They are conceptually the
 // same (now...)
 
-class CursorSlice {
+class CursorSlice : public boost::signals::trackable {
 public:
+       /// Those needs inset_ access.
+       ///@{
+       friend class DocIterator;
+       friend class StableDocIterator;
+       ///@}
+
        /// type for cell number in inset
        typedef size_t idx_type;
        /// type for row indices
@@ -50,7 +59,13 @@ public:
        ///
        CursorSlice();
        ///
+       CursorSlice(CursorSlice const &);
+       ///
        explicit CursorSlice(Inset &);
+       ///
+       CursorSlice & operator=(CursorSlice const &);
+       ///
+       bool isValid() const;
 
        /// the current inset
        Inset & inset() const { return *inset_; }
@@ -95,9 +110,9 @@ public:
        /// texted specific stuff
        ///
        /// returns text corresponding to this position
-       LyXText * text() { return inset_->getText(idx_); }
+       Text * text() { return inset_->getText(idx_); }
        /// returns text corresponding to this position
-       LyXText const * text() const { return inset_->getText(idx_); }
+       Text const * text() const { return inset_->getText(idx_); }
        /// paragraph in this cell
        Paragraph & paragraph();
        /// paragraph in this cell
@@ -113,10 +128,13 @@ public:
 
        /// write some debug information to \p os
        friend std::ostream & operator<<(std::ostream &, CursorSlice const &);
-public:
+private:
+       ///
+       void invalidate();
+
        /// pointer to 'owning' inset. This is some kind of cache.
        Inset * inset_;
-private:
+
        /*!
         * Cell index of a position in this inset.
         * This is the primary cell information also for grid like insets,