]> git.lyx.org Git - lyx.git/blob - src/lyxrow_funcs.h
rowlist10
[lyx.git] / src / lyxrow_funcs.h
1 // -*- C++ -*-
2
3 #ifndef LYXROW_FUNCS_H
4 #define LYXROW_FUNCS_H
5
6 #include "RowList.h"
7 #include "support/types.h"
8
9 class LyXText;
10
11 bool isParEnd(LyXText const & lt, RowList::iterator rit);
12
13 lyx::pos_type lastPos(LyXText const & lt, RowList::iterator rit);
14
15 lyx::pos_type lastPrintablePos(LyXText const & lt, RowList::iterator rit);
16
17 int numberOfSeparators(LyXText const & lt, RowList::iterator rit);
18
19 int numberOfHfills(LyXText const & lt, RowList::iterator rit);
20
21 int numberOfLabelHfills(LyXText const & lt, RowList::iterator rit);
22
23 bool hfillExpansion(LyXText const & lt, RowList::iterator rit, lyx::pos_type pos);
24
25 #endif