]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/tex2lyx.h
Add a Buffer::fully_loaded member function, returning true only when
[lyx.git] / src / tex2lyx / tex2lyx.h
index 365462e5109472d4a60eec861669ad27d043c35d..3d26f373e2d68e6fab67571217dafe74f777b758 100644 (file)
@@ -1,30 +1,51 @@
+// -*- C++ -*-
+/**
+ * \file tex2lyx.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ * \author Jean-Marc Lasgouttes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef TEX2LYX_H
 #define TEX2LYX_H
 
 #include "texparser.h"
+#include "lyxtextclass.h"
 
 #include <iosfwd>
 #include <string>
 #include <vector>
 
-class LyXTextClass;
+class Context;
 
+/// in preamble.C
 LyXTextClass const parse_preamble(Parser & p, std::ostream & os);
 
-void parse_text(Parser & p, std::ostream & os, unsigned flags,
-               bool outer, LyXTextClass const & textclass);
 
-void parse_table(Parser & p, std::ostream & os, unsigned flags);
+/// in text.C
+void parse_text(Parser & p, std::ostream & os, unsigned flags, bool outer,
+               Context & context);
+
+//std::string parse_text(Parser & p, unsigned flags, const bool outer,
+//                    Context & context);
+
+void parse_text_in_inset(Parser & p, std::ostream & os, unsigned flags,
+                        bool outer, Context & context);
 
+
+/// in math.C
 void parse_math(Parser & p, std::ostream & os, unsigned flags, mode_type mode);
 
-void handle_tabular(Parser & p, std::ostream & os,
-                   LyXTextClass const & textclass);
 
-// Helper
-std::string parse_text(Parser & p, unsigned flags, const bool outer,
-                      LyXTextClass const & textclass);
+/// in table.C
+void handle_tabular(Parser & p, std::ostream & os, Context & context);
+
 
+/// in tex2lyx.C
 void handle_comment(Parser & p);
 std::string const trim(std::string const & a, char const * p = " \t\n\r");