]> git.lyx.org Git - lyx.git/blobdiff - src/paragraph_funcs.h
ws changes only
[lyx.git] / src / paragraph_funcs.h
index ea54a654ebdcfe7f096dff4d3b5f864f32b09f9b..cac2d988b033574d6edf616dd4babea4be4e7e30 100644 (file)
 #ifndef PARAGRAPH_FUNCS_H
 #define PARAGRAPH_FUNCS_H
 
+#include "ParagraphList.h"
 #include "support/types.h"
 
+class Buffer;
 class BufferParams;
 class Paragraph;
+class TexRow;
 
 ///
 void breakParagraph(BufferParams const & bparams,
@@ -28,11 +31,11 @@ void breakParagraphConservative(BufferParams const & bparams,
                                Paragraph *,
                                lyx::pos_type pos);
 
-/** Paste this paragraph with the next one.
   Be carefull, this doesent make any check at all.
-*/
-void pasteParagraph(BufferParams const & bparams,
-                   Paragraph *);
+/**
* 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 *);
 
 
 #if 0
@@ -49,4 +52,23 @@ bool isFirstInSequence(Paragraph * par);
 int getEndLabel(Paragraph * para, BufferParams const & bparams);
 #endif
 
+ParagraphList::iterator
+TeXDeeper(Buffer const * buf,
+         BufferParams const & bparams,
+         ParagraphList::iterator pit,
+         std::ostream & os, TexRow & texrow);
+
+ParagraphList::iterator
+TeXEnvironment(Buffer const * buf,
+              BufferParams const & bparams,
+              ParagraphList::iterator pit,
+              std::ostream & os, TexRow & texrow);
+
+ParagraphList::iterator
+TeXOnePar(Buffer const * buf,
+         BufferParams const & bparams,
+         ParagraphList::iterator pit,
+         std::ostream & os, TexRow & texrow,
+         bool moving_arg);
+
 #endif // PARAGRAPH_FUNCS_H