]> 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 d2b296d4719f373485d05d7e4b6101927433b372..3d26f373e2d68e6fab67571217dafe74f777b758 100644 (file)
@@ -1,3 +1,15 @@
+// -*- 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 <string>
 #include <vector>
 
-class LyXTextClass;
+class Context;
 
+/// in preamble.C
 LyXTextClass const parse_preamble(Parser & p, std::ostream & os);
 
+
+/// in text.C
 void parse_text(Parser & p, std::ostream & os, unsigned flags, bool outer,
-               LyXTextClass const & textclass,
-               LyXLayout_ptr layout_ptr = LyXLayout_ptr());
+               Context & context);
 
-void parse_text_in_inset(Parser & p, std::ostream & os, unsigned flags, 
-                        bool outer, LyXTextClass const & textclass, 
-                        LyXLayout_ptr layout = LyXLayout_ptr());
+//std::string parse_text(Parser & p, unsigned flags, const bool outer,
+//                    Context & context);
 
-void parse_table(Parser & p, std::ostream & os, unsigned flags);
+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, 
-                      LyXLayout_ptr layout_ptr = LyXLayout_ptr());
+/// in table.C
+void handle_tabular(Parser & p, std::ostream & os, Context & context);
+
 
-void check_end_layout(std::ostream & os);
+/// in tex2lyx.C
 void handle_comment(Parser & p);
 std::string const trim(std::string const & a, char const * p = " \t\n\r");