lyx_mirror/src/lyxrow_funcs.h
André Pönitz 003bb374a5 next try...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7536 a592a061-630c-0410-9148-cb99ea01b6c8
2003-08-14 08:34:13 +00:00

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