X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Foutput_docbook.h;h=a65e0c8f84d1b16914c859e3b812c86cd4eafb6e;hb=7a000652c02f98dcff4d3c611b22af244409df73;hp=46e495f0057afb8f93c1dca04d55bf6b7fdacc51;hpb=8c053ea10ce1187499bc112ae88d04d956ae48f9;p=lyx.git diff --git a/src/output_docbook.h b/src/output_docbook.h index 46e495f005..a65e0c8f84 100644 --- a/src/output_docbook.h +++ b/src/output_docbook.h @@ -6,6 +6,8 @@ * * \author Lars Gullik Bjønnes * \author José Matos + * \author Thibaut Cuvelier + * \author Richard Kimberly Heck * * Full author contact details are available in file CREDITS. */ @@ -13,7 +15,12 @@ #ifndef OUTPUT_DOCBOOK_H #define OUTPUT_DOCBOOK_H +#include "LayoutEnums.h" +#include "ParagraphList.h" + +#include "support/docstream.h" #include "support/strfwd.h" +#include "xml.h" namespace lyx { @@ -21,11 +28,23 @@ class Buffer; class OutputParams; class Text; -/// -void docbookParagraphs(Text const & text, - Buffer const & buf, - odocstream & os, - OutputParams const & runparams); +/// 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); + +/// 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