lyx_mirror/src/lyxrow_funcs.h

27 lines
646 B
C
Raw Normal View History

// -*- C++ -*-
#ifndef LYXROW_FUNCS_H
#define LYXROW_FUNCS_H
#include "RowList.h"
#include "support/types.h"
class Paragraph;
bool isParEnd(Paragraph const & par, RowList::iterator rit);
lyx::pos_type lastPos(Paragraph const & par, RowList::iterator rit);
lyx::pos_type lastPrintablePos(Paragraph const & par, RowList::iterator rit);
int numberOfSeparators(Paragraph const & par, RowList::iterator rit);
int numberOfHfills(Paragraph const & par, RowList::iterator rit);
int numberOfLabelHfills(Paragraph const & par, RowList::iterator rit);
bool hfillExpansion(Paragraph const & par, RowList::iterator rit,
lyx::pos_type pos);
#endif