2003-04-01 16:55:48 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
|
|
|
|
#ifndef LYXROW_FUNCS_H
|
|
|
|
#define LYXROW_FUNCS_H
|
|
|
|
|
|
|
|
#include "RowList.h"
|
|
|
|
#include "support/types.h"
|
|
|
|
|
2003-08-15 08:03:54 +00:00
|
|
|
class Paragraph;
|
2003-04-01 16:55:48 +00:00
|
|
|
|
2003-08-15 08:03:54 +00:00
|
|
|
bool isParEnd(Paragraph const & par, RowList::iterator rit);
|
2003-04-01 16:55:48 +00:00
|
|
|
|
2003-08-15 08:03:54 +00:00
|
|
|
lyx::pos_type lastPos(Paragraph const & par, RowList::iterator rit);
|
2003-04-01 16:55:48 +00:00
|
|
|
|
2003-08-15 08:03:54 +00:00
|
|
|
lyx::pos_type lastPrintablePos(Paragraph const & par, RowList::iterator rit);
|
2003-04-01 16:55:48 +00:00
|
|
|
|
2003-08-15 08:03:54 +00:00
|
|
|
int numberOfSeparators(Paragraph const & par, RowList::iterator rit);
|
2003-04-01 16:55:48 +00:00
|
|
|
|
2003-08-15 08:03:54 +00:00
|
|
|
int numberOfHfills(Paragraph const & par, RowList::iterator rit);
|
2003-04-01 16:55:48 +00:00
|
|
|
|
2003-08-15 08:03:54 +00:00
|
|
|
int numberOfLabelHfills(Paragraph const & par, RowList::iterator rit);
|
2003-04-01 16:55:48 +00:00
|
|
|
|
2003-08-15 08:03:54 +00:00
|
|
|
bool hfillExpansion(Paragraph const & par, RowList::iterator rit,
|
|
|
|
lyx::pos_type pos);
|
2003-04-01 16:55:48 +00:00
|
|
|
|
|
|
|
#endif
|