2003-04-01 16:55:48 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \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<EFBFBD>nnes
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
2003-04-01 16:55:48 +00:00
|
|
|
|
|
|
|
|
|
#ifndef LYXROW_FUNCS_H
|
|
|
|
|
#define LYXROW_FUNCS_H
|
|
|
|
|
|
|
|
|
|
#include "support/types.h"
|
|
|
|
|
|
2003-08-15 08:03:54 +00:00
|
|
|
|
class Paragraph;
|
2003-10-17 10:31:47 +00:00
|
|
|
|
class Row;
|
2003-04-01 16:55:48 +00:00
|
|
|
|
|
2003-10-17 10:31:47 +00:00
|
|
|
|
int numberOfSeparators(Paragraph const & par, Row const & row);
|
2003-04-01 16:55:48 +00:00
|
|
|
|
|
2003-10-17 10:31:47 +00:00
|
|
|
|
int numberOfHfills(Paragraph const & par, Row const & row);
|
2003-04-01 16:55:48 +00:00
|
|
|
|
|
2003-10-17 10:31:47 +00:00
|
|
|
|
int numberOfLabelHfills(Paragraph const & par, Row const & row);
|
2003-04-01 16:55:48 +00:00
|
|
|
|
|
2003-10-17 10:31:47 +00:00
|
|
|
|
bool hfillExpansion(Paragraph const & par, Row const & row,
|
2003-08-15 08:03:54 +00:00
|
|
|
|
lyx::pos_type pos);
|
2003-04-01 16:55:48 +00:00
|
|
|
|
|
|
|
|
|
#endif
|