lyx_mirror/src/lyxcursor.C
Jean-Marc Lasgouttes 7fa7d43740 Bugfixes, de.po and sl.po updates, lyxlookup cleanup
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1304 a592a061-630c-0410-9148-cb99ea01b6c8
2001-01-08 14:19:29 +00:00

119 lines
1.3 KiB
C

/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1995 Matthias Ettrich
* Copyright 1995-2000 The LyX Team.
*
* ====================================================== */
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "lyxcursor.h"
LyXCursor::LyXCursor() : par_(0), pos_(0), boundary_(false),
x_(0), x_fix_(0), y_(0), row_(0)
{
}
void LyXCursor::par(LyXParagraph * p)
{
par_ = p;
}
LyXParagraph * LyXCursor::par()
{
return par_;
}
LyXParagraph * LyXCursor::par() const
{
return par_;
}
void LyXCursor::pos(LyXParagraph::size_type p)
{
pos_ = p;
}
LyXParagraph::size_type LyXCursor::pos() const
{
return pos_;
}
void LyXCursor::boundary(bool b)
{
boundary_ = b;
}
bool LyXCursor::boundary() const
{
return boundary_;
}
void LyXCursor::x(int n)
{
x_ = n;
}
int LyXCursor::x() const
{
return x_;
}
void LyXCursor::x_fix(int i)
{
x_fix_ = i;
}
int LyXCursor::x_fix() const
{
return x_fix_;
}
void LyXCursor::y(int i)
{
y_ = i;
}
int LyXCursor::y() const
{
return y_;
}
void LyXCursor::row(Row * r)
{
row_ = r;
}
Row * LyXCursor::row()
{
return row_;
}
Row * LyXCursor::row() const
{
return row_;
}