]> git.lyx.org Git - lyx.git/blob - src/lyxrow_funcs.h
remove Row::pit_ member
[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 "ParagraphList.h"
8
9 #include "support/types.h"
10
11 class LyXText;
12
13 bool isParEnd(LyXText const & lt,
14         ParagraphList::iterator pit, RowList::iterator rit);
15
16 lyx::pos_type lastPos(LyXText const & lt,
17         ParagraphList::iterator pit, RowList::iterator rit);
18
19 lyx::pos_type lastPrintablePos(LyXText const & lt,
20         ParagraphList::iterator pit, RowList::iterator rit);
21
22 int numberOfSeparators(LyXText const & lt,
23         ParagraphList::iterator pit, RowList::iterator rit);
24
25 int numberOfHfills(LyXText const & lt,
26         ParagraphList::iterator pit, RowList::iterator rit);
27
28 int numberOfLabelHfills(LyXText const & lt,
29         ParagraphList::iterator pit, RowList::iterator rit);
30
31 bool hfillExpansion(LyXText const & lt,
32         ParagraphList::iterator pit, RowList::iterator rit, lyx::pos_type pos);
33
34 #endif