mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
003bb374a5
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7536 a592a061-630c-0410-9148-cb99ea01b6c8
35 lines
860 B
C++
35 lines
860 B
C++
// -*- C++ -*-
|
|
|
|
#ifndef LYXROW_FUNCS_H
|
|
#define LYXROW_FUNCS_H
|
|
|
|
#include "RowList.h"
|
|
#include "ParagraphList.h"
|
|
|
|
#include "support/types.h"
|
|
|
|
class LyXText;
|
|
|
|
bool isParEnd(LyXText const & lt,
|
|
ParagraphList::iterator pit, RowList::iterator rit);
|
|
|
|
lyx::pos_type lastPos(LyXText const & lt,
|
|
ParagraphList::iterator pit, RowList::iterator rit);
|
|
|
|
lyx::pos_type lastPrintablePos(LyXText const & lt,
|
|
ParagraphList::iterator pit, RowList::iterator rit);
|
|
|
|
int numberOfSeparators(LyXText const & lt,
|
|
ParagraphList::iterator pit, RowList::iterator rit);
|
|
|
|
int numberOfHfills(LyXText const & lt,
|
|
ParagraphList::iterator pit, RowList::iterator rit);
|
|
|
|
int numberOfLabelHfills(LyXText const & lt,
|
|
ParagraphList::iterator pit, RowList::iterator rit);
|
|
|
|
bool hfillExpansion(LyXText const & lt,
|
|
ParagraphList::iterator pit, RowList::iterator rit, lyx::pos_type pos);
|
|
|
|
#endif
|