]> 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 c9322a56093fe947bd4aad44123c61787f13a320..ace89ee07d963e597e2d7f67b7adb8b2ef182b80 100644 (file)
@@ -1,38 +1,42 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file paragraph_funcs.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #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,
-                   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);
 
-/** 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(Buffer * buf,
+                   ParagraphList::iterator par);
 
 
 #if 0
@@ -49,4 +53,23 @@ bool isFirstInSequence(Paragraph * par);
 int getEndLabel(Paragraph * para, BufferParams const & bparams);
 #endif
 
-#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