]> git.lyx.org Git - lyx.git/blobdiff - src/output_docbook.h
Do not scale statusbar icons
[lyx.git] / src / output_docbook.h
index 4dcc853df28baa340f66e18841c0809fe5cf13ce..a65e0c8f84d1b16914c859e3b812c86cd4eafb6e 100644 (file)
@@ -7,7 +7,7 @@
  * \author Lars Gullik Bjønnes
  * \author José Matos
  * \author Thibaut Cuvelier
- * \author Richard Heck
+ * \author Richard Kimberly Heck
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -16,6 +16,7 @@
 #define OUTPUT_DOCBOOK_H
 
 #include "LayoutEnums.h"
+#include "ParagraphList.h"
 
 #include "support/docstream.h"
 #include "support/strfwd.h"
@@ -27,18 +28,23 @@ class Buffer;
 class OutputParams;
 class Text;
 
-///
-std::string const fontToDocBookTag(xml::FontTypes type);
-///
+/// generates an xml::StartTag for the given style
 xml::FontTag docbookStartFontTag(xml::FontTypes type);
-///
+/// generates an xml::EndTag for the given style
 xml::EndFontTag docbookEndFontTag(xml::FontTypes type);
 
-///
-void docbookParagraphs(Text const & text,
-                              Buffer const & buf,
-                       XMLStream & os,
-                              OutputParams const & runparams);
+/// output a series of paragraphs into the XMLStream
+void docbookParagraphs(Text const &,
+                              Buffer const &,
+                       XMLStream &,
+                              OutputParams const &);
+
+/// output a single paragraph into the XMLStream
+ParagraphList::const_iterator makeAny(Text const &,
+                                      Buffer const &,
+                                      XMLStream &,
+                                      OutputParams const &,
+                                      ParagraphList::const_iterator);
 
 } // namespace lyx