]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrow_funcs.h
Add GTK bibitem dialog
[lyx.git] / src / lyxrow_funcs.h
index c09a04f283e5dbd8f84a601e3b99e662b6d5e490..2eee7cf2821be054b002d203c91ef592bbf5c8b3 100644 (file)
@@ -1,34 +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 "ParagraphList.h"
-
 #include "support/types.h"
 
-class LyXText;
-
-bool isParEnd(LyXText const & lt,
-       ParagraphList::iterator pit, RowList::iterator rit);
-
-lyx::pos_type lastPos(LyXText const & lt,
-       ParagraphList::iterator pit, RowList::iterator rit);
-
-lyx::pos_type lastPrintablePos(LyXText const & lt,
-       ParagraphList::iterator pit, RowList::iterator rit);
-
-int numberOfSeparators(LyXText const & lt,
-       ParagraphList::iterator pit, RowList::iterator rit);
-
-int numberOfHfills(LyXText const & lt,
-       ParagraphList::iterator pit, RowList::iterator rit);
-
-int numberOfLabelHfills(LyXText const & lt,
-       ParagraphList::iterator pit, RowList::iterator rit);
+class Paragraph;
+class Row;
 
-bool hfillExpansion(LyXText const & lt,
-       ParagraphList::iterator pit, RowList::iterator rit, lyx::pos_type pos);
+bool hfillExpansion(Paragraph const & par, Row const & row,
+       lyx::pos_type pos);
 
 #endif