]> git.lyx.org Git - lyx.git/blobdiff - src/sgml.h
Store and use QImage rather than QPixmap.
[lyx.git] / src / sgml.h
index 332535bc70d0877358a7a1a8653f8bcc3752e78c..e3f65c49e01cbce991ee0012d8d48a77b152356e 100644 (file)
 #ifndef SGML_H
 #define SGML_H
 
-#include "paragraph.h"
+#include "support/types.h"
 
-#include "support/std_string.h"
-#include <algorithm>
 #include <iosfwd>
+#include <utility>
 
 namespace sgml {
 
@@ -26,15 +25,24 @@ namespace sgml {
  * to an SGML entity. Returns true
  * if it was a whitespace character.
  */
-std::pair<bool, string> escapeChar(char c);
+std::pair<bool, std::string> escapeChar(char c);
 
 /// FIXME
-int openTag(std::ostream & os, Paragraph::depth_type depth,
-           bool mixcont, string const & latexname);
+int openTag(std::ostream & os, lyx::depth_type depth,
+           bool mixcont, std::string const & latexname,
+               std::string const & latexparam = std::string());
 
 /// FIXME
-int closeTag(std::ostream & os, Paragraph::depth_type depth,
-           bool mixcont, string const & latexname);
+int closeTag(std::ostream & os, lyx::depth_type depth,
+           bool mixcont, std::string const & latexname);
+
+///
+unsigned int closeEnvTags(std::ostream & os,
+               bool mixcont,
+               std::string const & environment_inner_depth,
+               std::string const & item_tag,
+               lyx::depth_type total_depth);
+
 }
 
 #endif // SGML_H