mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
120 lines
1.3 KiB
C++
120 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 "lyxrow.h"
|
||
|
|
||
|
|
||
|
Row::Row()
|
||
|
: par_(0), pos_(0), fill_(0), height_(0),
|
||
|
ascent_of_text_(0), baseline_(0), next_(0), previous_(0)
|
||
|
{}
|
||
|
|
||
|
|
||
|
void Row::par(LyXParagraph * p)
|
||
|
{
|
||
|
par_ = p;
|
||
|
}
|
||
|
|
||
|
|
||
|
LyXParagraph * Row::par()
|
||
|
{
|
||
|
return par_;
|
||
|
}
|
||
|
|
||
|
|
||
|
LyXParagraph * Row::par() const
|
||
|
{
|
||
|
return par_;
|
||
|
}
|
||
|
|
||
|
|
||
|
void Row::pos(LyXParagraph::size_type p)
|
||
|
{
|
||
|
pos_ = p;
|
||
|
}
|
||
|
|
||
|
|
||
|
LyXParagraph::size_type Row::pos() const
|
||
|
{
|
||
|
return pos_;
|
||
|
}
|
||
|
|
||
|
|
||
|
void Row::fill(int f)
|
||
|
{
|
||
|
fill_ = f;
|
||
|
}
|
||
|
|
||
|
|
||
|
int Row::fill() const
|
||
|
{
|
||
|
return fill_;
|
||
|
}
|
||
|
|
||
|
|
||
|
void Row::height(unsigned short h)
|
||
|
{
|
||
|
height_ = h;
|
||
|
}
|
||
|
|
||
|
|
||
|
unsigned short Row::height() const
|
||
|
{
|
||
|
return height_;
|
||
|
}
|
||
|
|
||
|
|
||
|
void Row::ascent_of_text(unsigned short a)
|
||
|
{
|
||
|
ascent_of_text_ = a;
|
||
|
}
|
||
|
|
||
|
|
||
|
unsigned short Row::ascent_of_text() const
|
||
|
{
|
||
|
return ascent_of_text_;
|
||
|
}
|
||
|
|
||
|
|
||
|
void Row::baseline(unsigned int b)
|
||
|
{
|
||
|
baseline_ = b;
|
||
|
}
|
||
|
|
||
|
|
||
|
unsigned int Row::baseline() const
|
||
|
{
|
||
|
return baseline_;
|
||
|
}
|
||
|
|
||
|
|
||
|
void Row::next(Row * r)
|
||
|
{
|
||
|
next_ = r;
|
||
|
}
|
||
|
|
||
|
|
||
|
Row * Row::next() const
|
||
|
{
|
||
|
return next_;
|
||
|
}
|
||
|
|
||
|
|
||
|
void Row::previous(Row * r)
|
||
|
{
|
||
|
previous_ = r;
|
||
|
}
|
||
|
|
||
|
|
||
|
Row * Row::previous() const
|
||
|
{
|
||
|
return previous_;
|
||
|
}
|