]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/tex2lyx.h
hyperref support for tex2lyx
[lyx.git] / src / tex2lyx / tex2lyx.h
index 3ca64d2193273955d36dd71df5f003ccb6f4211a..f6fae1e9b4cb40ee0d9e5e1305fb1b4559badc0a 100644 (file)
@@ -26,6 +26,14 @@ namespace lyx {
 
 namespace support { class FileName; }
 
+/// Simple support for frontend::Alert::warning().
+namespace frontend { 
+namespace Alert {
+       void warning(docstring const & title, docstring const & message,
+                                bool const &);
+}
+}
+
 class Context;
 
 /// A trivial subclass, just to give us a public default constructor
@@ -92,6 +100,7 @@ std::string active_environment();
 enum ArgumentType {
        required,
        verbatim,
+       item,
        optional
 };
 
@@ -105,6 +114,10 @@ extern CommandMap known_environments;
 extern CommandMap known_math_environments;
 ///
 extern bool noweb_mode;
+/// Did we recognize any pdflatex-only construct?
+extern bool pdflatex;
+/// LyX format that is created by tex2lyx
+int const LYX_FORMAT = 345;
 
 /// path of the master .tex file
 extern std::string getMasterFilePath();