mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
5be51b4fb7
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7984 a592a061-630c-0410-9148-cb99ea01b6c8
31 lines
662 B
C++
31 lines
662 B
C++
// -*- 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 "support/types.h"
|
|
|
|
class Paragraph;
|
|
class Row;
|
|
|
|
int numberOfSeparators(Paragraph const & par, Row const & row);
|
|
|
|
int numberOfHfills(Paragraph const & par, Row const & row);
|
|
|
|
int numberOfLabelHfills(Paragraph const & par, Row const & row);
|
|
|
|
bool hfillExpansion(Paragraph const & par, Row const & row,
|
|
lyx::pos_type pos);
|
|
|
|
#endif
|