]> git.lyx.org Git - lyx.git/blobdiff - src/paragraph_funcs.h
the spellcheck cleanup
[lyx.git] / src / paragraph_funcs.h
index 7a7c763f0dbc0f640b6ff3751388ed9b65720815..7eef615309b3439c3b04c5f8dabf85623b65137b 100644 (file)
 #ifndef PARAGRAPH_FUNCS_H
 #define PARAGRAPH_FUNCS_H
 
-#include "ParagraphList.h"
+#include "ParagraphList_fwd.h"
 #include "support/types.h"
 
+#include <string>
+
+
 class Buffer;
 class BufferParams;
 class TexRow;
 class LatexRunParams;
+class LyXFont;
 class LyXLex;
 class InsetOld;
 
@@ -47,7 +51,7 @@ void mergeParagraph(BufferParams const & bparams,
 /// for the environments
 ParagraphList::iterator depthHook(ParagraphList::iterator pit,
                                  ParagraphList const & plist,
-                                 Paragraph::depth_type depth);
+                                 lyx::depth_type depth);
 
 ParagraphList::iterator outerHook(ParagraphList::iterator pit,
                                  ParagraphList const & plist);
@@ -67,8 +71,25 @@ void latexParagraphs(Buffer const & buf,
                     std::ostream & ofs,
                     TexRow & texrow,
                     LatexRunParams const &,
-                    string const & everypar = string());
+                    std::string const & everypar = std::string());
 
+///
+void asciiParagraph(Buffer const & buf,
+                   Paragraph const & paragraphs,
+                   std::ostream & ofs,
+                   LatexRunParams const &,
+                   bool noparbreak = false);
+
+void linuxdocParagraphs(Buffer const & buf,
+                       ParagraphList const & paragraphs,
+                       std::ostream & os,
+                       LatexRunParams const & runparams);
+
+void docbookParagraphs(Buffer const & buf,
+                      ParagraphList const & paragraphs,
+                      std::ostream & os,
+                      LatexRunParams const & runparams);
+       
 /// read a paragraph from a .lyx file. Returns number of unrecognised tokens
 int readParagraph(Buffer & buf, Paragraph & par, LyXLex & lex);