]> git.lyx.org Git - lyx.git/blobdiff - src/output_xhtml.h
Buffer: Rename function names:
[lyx.git] / src / output_xhtml.h
index 0e69424426be5b86441d890f4462b1b3149237b6..986070ddd6745155144f5afcb119ff60ef0547f9 100644 (file)
@@ -12,6 +12,7 @@
 #ifndef OUTPUT_XHTML_H
 #define OUTPUT_XHTML_H
 
+#include "LayoutEnums.h"
 #include "support/docstream.h"
 #include "support/strfwd.h"
 
@@ -32,7 +33,7 @@ namespace html {
 /// be escaped before being passed to the constructor.
 struct StartTag {
        ///
-       explicit StartTag(std::string const & tag) : tag_(tag) {}
+       explicit StartTag(std::string const & tag) : tag_(tag), keepempty_(false) {}
        ///
        explicit StartTag(std::string const & tag, std::string const & attr, 
                bool keepempty = false) 
@@ -109,6 +110,8 @@ public:
        ///
        XHTMLStream & operator<<(int);
        ///
+       XHTMLStream & operator<<(char);
+       ///
        XHTMLStream & operator<<(html::StartTag const &);
        ///
        XHTMLStream & operator<<(html::EndTag const &);
@@ -149,6 +152,10 @@ void xhtmlParagraphs(Text const & text,
                       XHTMLStream & xs,
                       OutputParams const & runparams);
 
+/// \return a string appropriate for setting alignment in CSS
+/// Does NOT return "justify" for "block"
+std::string alignmentToCSS(LyXAlignment align);
+
 namespace html {
 ///
 docstring escapeChar(char_type c);