]> git.lyx.org Git - lyx.git/blobdiff - src/paragraph_funcs.h
Minimal fix needed to give Qt a label dialog again.
[lyx.git] / src / paragraph_funcs.h
index d136d619e409a9b67a8a81a6d7a5a0b07e6914b3..ace89ee07d963e597e2d7f67b7adb8b2ef182b80 100644 (file)
@@ -12,6 +12,7 @@
 #ifndef PARAGRAPH_FUNCS_H
 #define PARAGRAPH_FUNCS_H
 
+#include "ParagraphList.h"
 #include "support/types.h"
 
 class Buffer;
@@ -20,21 +21,22 @@ class Paragraph;
 class TexRow;
 
 ///
-void breakParagraph(BufferParams const & bparams,
-                   Paragraph *,
+void breakParagraph(Buffer * buf,
+                   ParagraphList::iterator par,
                    lyx::pos_type pos,
                    int flag);
 
 ///
-void breakParagraphConservative(BufferParams const & bparams,
-                               Paragraph *,
+void breakParagraphConservative(Buffer * buf,
+                               ParagraphList::iterator par,
                                lyx::pos_type pos);
 
 /**
  * Append the next paragraph onto the tail of this one.
  * Be careful, this doesent make any check at all.
  */
-void mergeParagraph(BufferParams const & bparams, Paragraph *);
+void mergeParagraph(Buffer * buf,
+                   ParagraphList::iterator par);
 
 
 #if 0
@@ -51,20 +53,23 @@ bool isFirstInSequence(Paragraph * par);
 int getEndLabel(Paragraph * para, BufferParams const & bparams);
 #endif
 
-Paragraph * TeXDeeper(Buffer const * buf,
-                     BufferParams const & bparams,
-                     Paragraph * pit,
-                     std::ostream & os, TexRow & texrow);
+ParagraphList::iterator
+TeXDeeper(Buffer const * buf,
+         BufferParams const & bparams,
+         ParagraphList::iterator pit,
+         std::ostream & os, TexRow & texrow);
 
-Paragraph * TeXEnvironment(Buffer const * buf,
-                          BufferParams const & bparams,
-                          Paragraph * pit,
-                          std::ostream & os, TexRow & texrow);
+ParagraphList::iterator
+TeXEnvironment(Buffer const * buf,
+              BufferParams const & bparams,
+              ParagraphList::iterator pit,
+              std::ostream & os, TexRow & texrow);
 
-Paragraph * TeXOnePar(Buffer const * buf,
-                     BufferParams const & bparams,
-                     Paragraph * pit,
-                     std::ostream & os, TexRow & texrow,
-                     bool moving_arg);
+ParagraphList::iterator
+TeXOnePar(Buffer const * buf,
+         BufferParams const & bparams,
+         ParagraphList::iterator pit,
+         std::ostream & os, TexRow & texrow,
+         bool moving_arg);
 
 #endif // PARAGRAPH_FUNCS_H