]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/tex2lyx.h
Continue to improve GtkLengthEntry
[lyx.git] / src / tex2lyx / tex2lyx.h
index d1ea626aed2317c1adb2fa15c6625f026a17bcf2..a2ef8395425f2fb105b27f40b87692750eb4dc91 100644 (file)
@@ -34,12 +34,15 @@ extern std::map<std::string, std::vector<std::string> > used_packages;
 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);
-
-/// parses a subdocument, usually useful in insets (whence the name)
+/*!
+ * Parses a subdocument, usually useful in insets (whence the name).
+ *
+ * It ignores \c context.need_layout and \c context.need_end_layout and
+ * starts and ends always a new layout.
+ * Therefore this may only be used to parse text in insets or table cells.
+ */
 void parse_text_in_inset(Parser & p, std::ostream & os, unsigned flags,
-                        bool outer, Context & context);
+                        bool outer, Context const & context);
 
 
 /// in math.C
@@ -81,9 +84,14 @@ enum ArgumentType {
        optional
 };
 
-/// Known TeX commands with arguments that get parsed into ERT.
-extern std::map<std::string, std::vector<ArgumentType> > known_commands;
+typedef std::map<std::string, std::vector<ArgumentType> > CommandMap;
 
+/// Known TeX commands with arguments that get parsed into ERT.
+extern CommandMap known_commands;
+/// Known TeX environments with arguments that get parsed into ERT.
+extern CommandMap known_environments;
+/// Known TeX math environments with arguments that get parsed into LyX mathed.
+extern CommandMap known_math_environments;
 
 /// path of the master .tex file
 extern std::string getMasterFilePath();