2003-04-01 16:55:48 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "lyxrow_funcs.h"
|
|
|
|
#include "lyxtext.h"
|
|
|
|
#include "paragraph.h"
|
|
|
|
#include "lyxlayout.h"
|
|
|
|
|
|
|
|
#include <boost/next_prior.hpp>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
using lyx::pos_type;
|
|
|
|
using std::max;
|
|
|
|
using std::min;
|
|
|
|
|
|
|
|
|
2003-08-14 08:17:27 +00:00
|
|
|
bool isParEnd(LyXText const & lt, RowList::iterator rit)
|
2003-04-01 16:55:48 +00:00
|
|
|
{
|
|
|
|
RowList::iterator next_row = boost::next(rit);
|
2003-08-14 08:17:27 +00:00
|
|
|
return next_row == lt.rows().end() || next_row->par() != rit->par();
|
2003-04-01 16:55:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-14 08:17:27 +00:00
|
|
|
pos_type lastPos(LyXText const & lt, RowList::iterator rit)
|
2003-04-01 16:55:48 +00:00
|
|
|
{
|
2003-08-14 08:17:27 +00:00
|
|
|
if (rit->par()->empty())
|
2003-04-01 16:55:48 +00:00
|
|
|
return 0;
|
|
|
|
|
2003-08-14 08:17:27 +00:00
|
|
|
if (isParEnd(lt, rit))
|
|
|
|
return rit->par()->size() - 1;
|
2003-07-29 01:46:09 +00:00
|
|
|
|
|
|
|
return boost::next(rit)->pos() - 1;
|
2003-04-01 16:55:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2003-08-14 08:17:27 +00:00
|
|
|
bool nextRowIsAllInset(Row const & row, pos_type last)
|
2003-04-01 16:55:48 +00:00
|
|
|
{
|
2003-08-14 08:17:27 +00:00
|
|
|
ParagraphList::iterator pit = row.par();
|
|
|
|
|
2003-04-02 23:01:39 +00:00
|
|
|
if (last + 1 >= pit->size())
|
2003-04-01 16:55:48 +00:00
|
|
|
return false;
|
|
|
|
|
2003-04-02 23:01:39 +00:00
|
|
|
if (!pit->isInset(last + 1))
|
2003-04-01 16:55:48 +00:00
|
|
|
return false;
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
InsetOld const * i = pit->getInset(last + 1);
|
2003-04-01 16:55:48 +00:00
|
|
|
return i->needFullRow() || i->display();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // anon namespace
|
|
|
|
|
|
|
|
|
2003-08-14 08:17:27 +00:00
|
|
|
pos_type lastPrintablePos(LyXText const & lt, RowList::iterator rit)
|
2003-04-01 16:55:48 +00:00
|
|
|
{
|
2003-08-14 08:17:27 +00:00
|
|
|
pos_type const last = lastPos(lt, rit);
|
2003-04-01 16:55:48 +00:00
|
|
|
|
|
|
|
// if this row is an end of par, just act like lastPos()
|
2003-08-14 08:17:27 +00:00
|
|
|
if (isParEnd(lt, rit))
|
2003-04-01 16:55:48 +00:00
|
|
|
return last;
|
|
|
|
|
2003-08-14 08:17:27 +00:00
|
|
|
bool const nextrownotinset = !nextRowIsAllInset(*rit, last);
|
|
|
|
|
|
|
|
if (nextrownotinset && rit->par()->isSeparator(last))
|
2003-04-01 16:55:48 +00:00
|
|
|
return last - 1;
|
|
|
|
|
|
|
|
return last;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-14 08:17:27 +00:00
|
|
|
int numberOfSeparators(LyXText const & lt, RowList::iterator rit)
|
2003-04-01 16:55:48 +00:00
|
|
|
{
|
2003-08-14 08:17:27 +00:00
|
|
|
pos_type const last = lastPrintablePos(lt, rit);
|
|
|
|
ParagraphList::iterator pit = rit->par();
|
2003-07-29 01:46:09 +00:00
|
|
|
int n = 0;
|
|
|
|
pos_type p = max(rit->pos(), pit->beginningOfBody());
|
|
|
|
for ( ; p < last; ++p)
|
|
|
|
if (pit->isSeparator(p))
|
|
|
|
++n;
|
|
|
|
return n;
|
2003-04-01 16:55:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This is called _once_ from LyXText and should at least be moved into
|
|
|
|
// an anonymous namespace there. (Lgb)
|
2003-08-14 08:17:27 +00:00
|
|
|
int numberOfHfills(LyXText const & lt, RowList::iterator rit)
|
2003-04-01 16:55:48 +00:00
|
|
|
{
|
2003-08-14 08:17:27 +00:00
|
|
|
pos_type const last = lastPos(lt, rit);
|
2003-04-01 16:55:48 +00:00
|
|
|
pos_type first = rit->pos();
|
2003-08-14 08:17:27 +00:00
|
|
|
ParagraphList::iterator pit = rit->par();
|
2003-04-01 16:55:48 +00:00
|
|
|
|
|
|
|
// hfill *DO* count at the beginning of paragraphs!
|
|
|
|
if (first) {
|
2003-07-29 01:46:09 +00:00
|
|
|
while (first < last && pit->isHfill(first))
|
2003-04-01 16:55:48 +00:00
|
|
|
++first;
|
|
|
|
}
|
|
|
|
|
2003-04-02 23:01:39 +00:00
|
|
|
first = max(first, pit->beginningOfBody());
|
2003-04-01 16:55:48 +00:00
|
|
|
|
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
// last, because the end is ignored!
|
|
|
|
for (pos_type p = first; p < last; ++p) {
|
2003-04-02 23:01:39 +00:00
|
|
|
if (pit->isHfill(p))
|
2003-04-01 16:55:48 +00:00
|
|
|
++n;
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This is called _once_ from LyXText and should at least be moved into
|
|
|
|
// an anonymous namespace there. (Lgb)
|
2003-08-14 08:17:27 +00:00
|
|
|
int numberOfLabelHfills(LyXText const & lt, RowList::iterator rit)
|
2003-04-01 16:55:48 +00:00
|
|
|
{
|
2003-08-14 08:17:27 +00:00
|
|
|
pos_type last = lastPos(lt, rit);
|
2003-04-01 16:55:48 +00:00
|
|
|
pos_type first = rit->pos();
|
2003-08-14 08:17:27 +00:00
|
|
|
ParagraphList::iterator pit = rit->par();
|
2003-04-01 16:55:48 +00:00
|
|
|
|
|
|
|
// hfill *DO* count at the beginning of paragraphs!
|
|
|
|
if (first) {
|
2003-04-02 23:01:39 +00:00
|
|
|
while (first < last && pit->isHfill(first))
|
2003-04-01 16:55:48 +00:00
|
|
|
++first;
|
|
|
|
}
|
|
|
|
|
2003-04-02 23:01:39 +00:00
|
|
|
last = min(last, pit->beginningOfBody());
|
2003-04-01 16:55:48 +00:00
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
// last, because the end is ignored!
|
|
|
|
for (pos_type p = first; p < last; ++p) {
|
2003-04-02 23:01:39 +00:00
|
|
|
if (pit->isHfill(p))
|
2003-04-01 16:55:48 +00:00
|
|
|
++n;
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-14 08:17:27 +00:00
|
|
|
bool hfillExpansion(LyXText const & lt, RowList::iterator rit, pos_type pos)
|
2003-04-01 16:55:48 +00:00
|
|
|
{
|
2003-08-14 08:17:27 +00:00
|
|
|
ParagraphList::iterator pit = rit->par();
|
|
|
|
|
2003-04-02 23:01:39 +00:00
|
|
|
if (!pit->isHfill(pos))
|
2003-04-01 16:55:48 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// at the end of a row it does not count
|
|
|
|
// unless another hfill exists on the line
|
2003-08-14 08:17:27 +00:00
|
|
|
if (pos >= lastPos(lt, rit))
|
2003-07-29 01:46:09 +00:00
|
|
|
for (pos_type i = rit->pos(); i < pos && !pit->isHfill(i); ++i)
|
2003-04-01 16:55:48 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// at the beginning of a row it does not count, if it is not
|
|
|
|
// the first row of a paragaph
|
|
|
|
if (rit->isParStart())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// in some labels it does not count
|
2003-04-02 23:01:39 +00:00
|
|
|
if (pit->layout()->margintype != MARGIN_MANUAL
|
|
|
|
&& pos < pit->beginningOfBody())
|
2003-04-01 16:55:48 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// if there is anything between the first char of the row and
|
|
|
|
// the specified position that is not a newline and not a hfill,
|
|
|
|
// the hfill will count, otherwise not
|
|
|
|
pos_type i = rit->pos();
|
2003-04-02 23:01:39 +00:00
|
|
|
while (i < pos && (pit->isNewline(i) || pit->isHfill(i)))
|
2003-04-01 16:55:48 +00:00
|
|
|
++i;
|
|
|
|
|
|
|
|
return i != pos;
|
|
|
|
}
|