]> git.lyx.org Git - lyx.git/blobdiff - src/Cursor.h
* lfuns doxification for math macros
[lyx.git] / src / Cursor.h
index a275260bf895953ddc7397e3eaec7eedadc63bfc..0d49502ef1903ece576a8f1ea496cb439ada44eb 100644 (file)
@@ -188,6 +188,7 @@ public:
 
        /// output
        friend std::ostream & operator<<(std::ostream & os, Cursor const & cur);
+       friend LyXErr & operator<<(LyXErr & os, Cursor const & cur);
 
        ///
        bool textUndo();
@@ -253,10 +254,6 @@ private:
        // of a big inset spanning a whole row and computing coordinates for
        // displaying the cursor.
        bool logicalpos_;
-       /// x position before dispatch started
-       int beforeDispX_;
-       /// y position before dispatch started
-       int beforeDispY_;
        /// position before dispatch started
        DocIterator beforeDispatchCursor_;
 
@@ -333,7 +330,7 @@ public:
        // selection in given cell of atom
        void handleNest(MathAtom const & at, int cell = 0);
        ///
-       bool isInside(Inset const *);
+       bool isInside(Inset const *) const;
 
        /// make sure cursor position is valid
        /// FIXME: It does a subset of fixIfBroken. Maybe merge them?