]> git.lyx.org Git - lyx.git/blobdiff - src/DocIterator.h
Center correctly top labels like Abstract.
[lyx.git] / src / DocIterator.h
index 0653de86e950b7f20286b5e8d5e9539ff4a1062c..69930fcc7d09b3e50f3dc7e08bd5c30c87960bac 100644 (file)
@@ -69,10 +69,10 @@ public:
 
        /// does this iterator have any content?
        bool empty() const { return slices_.empty(); }
+       /// is this the begin position?
+       bool atBegin() const { return depth() == 1 && pit() == 0 && pos() == 0; }
        /// is this the end position?
        bool atEnd() const { return slices_.empty(); }
-       /// is this the last possible position?
-       bool atLastPos() const { return pit() == lastpit() && pos() == lastpos(); }
 
        /// checks the cursor slices for disabled spell checker insets
        bool allowSpellCheck() const;
@@ -212,6 +212,8 @@ public:
        void forwardInset();
        /// move backward one logical position
        void backwardPos();
+       /// move backward one logical position, skip collapsed insets
+       void backwardPosIgnoreCollapsed();
        /// move backward one physical character or inset
        void backwardChar();
        /// move backward one paragraph