]> git.lyx.org Git - lyx.git/blobdiff - src/lyxcursor.C
Lars says _(_(b)) is a bug ... fix
[lyx.git] / src / lyxcursor.C
index 098b385689829e8892baa4e8544630f2543299d2..b653075525477e25ca1cbc26bdffa5af3519df18 100644 (file)
@@ -1,49 +1,51 @@
-/* This file is part of
- * ====================================================== 
- * 
- *           LyX, The Document Processor
- *      
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team.
+/**
+ * \file lyxcursor.C
+ * Copyright 1995-2001 the LyX Team
+ * Read the file COPYING
  *
- * ====================================================== */
+ * \author Matthias Ettrich
+ */
 
 #include <config.h>
 
+#ifdef __GNUG__
+#pragma implementation
+#endif
+
 #include "lyxcursor.h"
 
 
-void LyXCursor::par(LyXParagraph * p) 
-{
-       par_ = p;
-}
+LyXCursor::LyXCursor()
+       : par_(0), pos_(0), boundary_(false),
+         x_(0), ix_(0), x_fix_(0), y_(0), iy_(0), row_(0)
+{}
 
 
-LyXParagraph * LyXCursor::par()
+void LyXCursor::par(Paragraph * p)
 {
-       return par_;
+       par_ = p;
 }
 
 
-LyXParagraph * LyXCursor::par() const
+Paragraph * LyXCursor::par() const
 {
        return par_;
 }
 
 
-void LyXCursor::pos(LyXParagraph::size_type p)
+void LyXCursor::pos(lyx::pos_type p)
 {
        pos_ = p;
 }
 
 
-LyXParagraph::size_type LyXCursor::pos() const
+lyx::pos_type LyXCursor::pos() const
 {
        return pos_;
 }
 
 
-void LyXCursor::boundary(bool b) 
+void LyXCursor::boundary(bool b)
 {
        boundary_ = b;
 }
@@ -66,6 +68,17 @@ int LyXCursor::x() const
 }
 
 
+void LyXCursor::ix(int n)
+{
+       ix_ = n;
+}
+
+int LyXCursor::ix() const
+{
+       return ix_;
+}
+
+
 void LyXCursor::x_fix(int i)
 {
        x_fix_ = i;
@@ -78,31 +91,49 @@ int LyXCursor::x_fix() const
 }
 
 
-void LyXCursor::y(unsigned long i)
+void LyXCursor::y(int i)
 {
        y_ = i;
 }
 
 
-unsigned long LyXCursor::y() const
+int LyXCursor::y() const
 {
        return y_;
 }
 
 
+void LyXCursor::iy(int i)
+{
+       iy_ = i;
+}
+
+
+int LyXCursor::iy() const
+{
+       return iy_;
+}
+
+
 void LyXCursor::row(Row * r)
 {
        row_ = r;
 }
 
 
-Row * LyXCursor::row()
+Row * LyXCursor::row() const
 {
        return row_;
 }
 
 
-Row * LyXCursor::row() const
+void LyXCursor::irow(Row * r)
 {
-       return row_;
+       irow_ = r;
+}
+
+
+Row * LyXCursor::irow() const
+{
+       return irow_;
 }