]> git.lyx.org Git - lyx.git/blobdiff - src/Cursor.h
fix #9826: Outline disclosure of subsection content disappears one second after
[lyx.git] / src / Cursor.h
index 1cd51c2d11a7f7fc229d55bbbdbe4de2dfd8538b..de2405692a9f70065dcadcaf04ef3ed50e1dd2b1 100644 (file)
@@ -216,6 +216,9 @@ public:
        bool macromode() const { return macromode_; }
        /// are we entering a macro name?
        bool & macromode() { return macromode_; }
+
+       /// returns true when all insets in cursor stack are in cache
+       bool inCoordCache() const;
        /// returns x,y position
        void getPos(int & x, int & y) const;
        /// return logical positions between which the cursor is situated
@@ -294,10 +297,9 @@ public:
 
        /// access to normalized selection anchor
        CursorSlice normalAnchor() const;
-       // FIXME: this can't be a const & and a const function because
-       // LFUN_TAB_* wants to move the real anchor.
        /// access to real selection anchor
-       DocIterator & realAnchor();
+       DocIterator const & realAnchor() const { return anchor_; }
+       DocIterator & realAnchor() { return anchor_; }
        /// sets anchor to cursor position
        void resetAnchor();
        /// access to owning BufferView