]> git.lyx.org Git - lyx.git/blobdiff - src/lyxcursor.h
zlib stuff
[lyx.git] / src / lyxcursor.h
index f19915e0657ff7e37cb6611978c536942321910e..8cbea6ce3d223b5c0e61dc5e41316bb0b7eb687d 100644 (file)
@@ -10,7 +10,6 @@
 #ifndef LYXCURSOR_H
 #define LYXCURSOR_H
 
-#include "RowList.h"
 #include "ParagraphList.h"
 #include "support/types.h"
 
@@ -79,20 +78,6 @@ public:
         * FIXME: explain why we need this ? especially for y...
         */
        int iy() const;
-       /// set the row of the paragraph the cursor is in
-       void row(RowList::iterator r);
-       /// return the row of the paragraph this cursor is in
-       RowList::iterator row() const;
-       /// set the stored next row
-       void irow(RowList::iterator r);
-       /**
-        * Return the next row, when this
-        * cursor is at the end of the previous row, for insets that take
-        * a full row.
-        *
-        * FIXME: explain why we need this ? especially for y...
-        */
-       RowList::iterator irow() const;
 private:
        /// The paragraph the cursor is in.
        ParagraphList::iterator par_;
@@ -124,51 +109,11 @@ private:
        int y_;
        /// the stored next-row y position
        int iy_;
-       /// the containing row
-       RowList::iterator row_;
-       /// the containing row for the next line
-       RowList::iterator irow_;
 };
 
-/// these three dictate the others
-inline
-bool operator==(LyXCursor const & a, LyXCursor const & b)
-{
-       return (a.par() == b.par())
-               && (a.pos() == b.pos())
-               && a.boundary() == b.boundary();
-}
-
-inline
-bool operator!=(LyXCursor const & a, LyXCursor const & b)
-{
-       return !(a == b);
-}
-
-/// only compares y() and pos(). Can this be done in another way?
-inline
-bool operator<(LyXCursor const & a, LyXCursor const & b)
-{
-       return (a.y() < b.y() && a.pos() < b.pos());
-}
-
-inline
-bool operator>(LyXCursor const & a, LyXCursor const & b)
-{
-       return b < a;
-}
-
-inline
-bool operator>=(LyXCursor const & a, LyXCursor const & b)
-{
-       return !(a < b);
-}
-
-
-inline
-bool operator<=(LyXCursor const & a, LyXCursor const & b)
-{
-       return !(a > b);
-}
+/// 
+bool operator==(LyXCursor const & a, LyXCursor const & b);
+///
+bool operator!=(LyXCursor const & a, LyXCursor const & b);
 
 #endif // LYXCURSOR_H