X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxrow_funcs.h;h=2eee7cf2821be054b002d203c91ef592bbf5c8b3;hb=9ee46b846e5e84ad40ceda4f4af94aeb86cd90a2;hp=0ed8955b5a4de20fd6471588d94d9fc83baf6ea1;hpb=0d876bc179f099b5b9ebe427180bce9a996e730f;p=lyx.git diff --git a/src/lyxrow_funcs.h b/src/lyxrow_funcs.h index 0ed8955b5a..2eee7cf282 100644 --- a/src/lyxrow_funcs.h +++ b/src/lyxrow_funcs.h @@ -1,25 +1,24 @@ // -*- C++ -*- +/** + * \file lyxrow_funcs.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Lars Gullik Bjønnes + * \author André Pönitz + * + * Full author contact details are available in file CREDITS. + */ #ifndef LYXROW_FUNCS_H #define LYXROW_FUNCS_H -#include "RowList.h" #include "support/types.h" -class LyXText; +class Paragraph; +class Row; -bool isParEnd(LyXText const & lt, RowList::iterator rit); - -lyx::pos_type lastPos(LyXText const & lt, RowList::iterator rit); - -lyx::pos_type lastPrintablePos(LyXText const & lt, RowList::iterator rit); - -int numberOfSeparators(LyXText const & lt, RowList::iterator rit); - -int numberOfHfills(LyXText const & lt, RowList::iterator rit); - -int numberOfLabelHfills(LyXText const & lt, RowList::iterator rit); - -bool hfillExpansion(LyXText const & lt, RowList::iterator rit, lyx::pos_type pos); +bool hfillExpansion(Paragraph const & par, Row const & row, + lyx::pos_type pos); #endif