]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/tex2lyx.h
Add -skipchildren command line switch (bug #4435)
[lyx.git] / src / tex2lyx / tex2lyx.h
1 // -*- C++ -*-
2 /**
3  * \file tex2lyx.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  * \author Jean-Marc Lasgouttes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef TEX2LYX_H
14 #define TEX2LYX_H
15
16 #include "Parser.h"
17 #include "TextClass.h"
18
19 #include <iosfwd>
20 #include <string>
21 #include <vector>
22 #include <map>
23
24
25 namespace lyx {
26
27 namespace support { class FileName; }
28
29 /// Simple support for frontend::Alert::warning().
30 namespace frontend { 
31 namespace Alert {
32         void warning(docstring const & title, docstring const & message,
33                                  bool const &);
34 }
35 }
36
37 class Context;
38
39 /// A trivial subclass, just to give us a public default constructor
40 class TeX2LyXDocClass : public DocumentClass
41 {
42 public:
43         void setName(std::string const & name) { name_ = name; }
44 };
45
46 /// Translate babel language name to LyX language name
47 extern std::string babel2lyx(std::string const & language);
48 /// Translate polyglossia language name to LyX language name
49 extern std::string polyglossia2lyx(std::string const & language);
50 /// Translate basic color name or RGB color in LaTeX syntax to LyX color code
51 extern std::string rgbcolor2code(std::string const & name);
52
53 /// in text.cpp
54 std::string translate_len(std::string const &);
55
56 void parse_text(Parser & p, std::ostream & os, unsigned flags, bool outer,
57                 Context & context);
58
59 /*!
60  * Parses a subdocument, usually useful in insets (whence the name).
61  *
62  * It ignores \c context.need_layout and \c context.need_end_layout and
63  * starts and ends always a new layout.
64  * Therefore this may only be used to parse text in insets or table cells.
65  */
66 void parse_text_in_inset(Parser & p, std::ostream & os, unsigned flags,
67                          bool outer, Context const & context,
68                          InsetLayout const * layout = 0);
69
70 /// Guess document language from \p p if CJK is used.
71 /// \p lang is used for all non-CJK contents.
72 std::string guessLanguage(Parser & p, std::string const & lang);
73
74
75 /// in math.cpp
76 void parse_math(Parser & p, std::ostream & os, unsigned flags, mode_type mode);
77
78
79 /// in table.cpp
80 void handle_tabular(Parser & p, std::ostream & os, std::string const & name,
81                     std::string const & width, Context & context);
82
83
84 /// in tex2lyx.cpp
85 std::string const trimSpaceAndEol(std::string const & a);
86
87 void split(std::string const & s, std::vector<std::string> & result,
88         char delim = ',');
89 std::string join(std::vector<std::string> const & input,
90         char const * delim);
91
92 bool is_math_env(std::string const & name);
93 bool is_display_math_env(std::string const & name);
94 char const * const * is_known(std::string const &, char const * const *);
95
96 /*!
97  * Adds the command \p command to the list of known commands.
98  * \param o1 first optional parameter to the latex command \\newcommand
99  * (with brackets), or the empty string if there were no optional arguments.
100  * \param o2 wether \\newcommand had a second optional parameter.
101  * If \p definition is not empty the command is assumed to be from the LyX
102  * preamble and added to possible_textclass_commands.
103  */
104 void add_known_command(std::string const & command, std::string const & o1,
105         bool o2, docstring const & definition = docstring());
106 extern void add_known_environment(std::string const & environment,
107         std::string const & o1, bool o2, docstring const & beg,
108         docstring const & end);
109 extern Layout const * findLayoutWithoutModule(TextClass const & textclass,
110         std::string const & name, bool command);
111 extern InsetLayout const * findInsetLayoutWithoutModule(
112         TextClass const & textclass, std::string const & name, bool command);
113 /*!
114  * Check whether a module provides command (if \p command is true) or
115  * environment (if \p command is false) \p name, and add the module to the
116  * list of used modules if yes.
117  */
118 extern bool checkModule(std::string const & name, bool command);
119 // Access to environment stack
120 extern std::vector<std::string> active_environments;
121 std::string active_environment();
122
123 enum ArgumentType {
124         required,
125         req_group,
126         verbatim,
127         item,
128         optional,
129         opt_group,
130         displaymath,
131 };
132
133 class FullCommand {
134 public:
135         FullCommand() {}
136         FullCommand(std::vector<ArgumentType> const & a, docstring const & d)
137                 : args(a), def(d) {}
138         std::vector<ArgumentType> args;
139         docstring def;
140 };
141
142 class FullEnvironment {
143 public:
144         FullEnvironment() {}
145         FullEnvironment(std::vector<ArgumentType> const & a,
146                         docstring const & b, docstring const & e)
147                 : args(a), beg(b), end(e) {}
148         std::vector<ArgumentType> args;
149         docstring beg;
150         docstring end;
151 };
152
153 typedef std::map<std::string, std::vector<ArgumentType> > CommandMap;
154 typedef std::map<std::string, FullCommand> FullCommandMap;
155 typedef std::map<std::string, FullEnvironment> FullEnvironmentMap;
156
157 /// Known TeX commands with arguments that get parsed into ERT.
158 extern CommandMap known_commands;
159 /// Known TeX environments with arguments that get parsed into ERT.
160 extern CommandMap known_environments;
161 /// Known TeX math environments with arguments that get parsed into LyX mathed.
162 extern CommandMap known_math_environments;
163 /// Commands that might be defined by the document class or modules
164 extern FullCommandMap possible_textclass_commands;
165 /// Environments that might be defined by the document class or modules
166 extern FullEnvironmentMap possible_textclass_environments;
167 ///
168 extern bool noweb_mode;
169 /// Did we recognize any pdflatex-only construct?
170 extern bool pdflatex;
171 /// Did we recognize any xetex-only construct?
172 extern bool xetex;
173 /// Do we have non-CJK Japanese?
174 extern bool is_nonCJKJapanese;
175 /// LyX format that is created by tex2lyx
176 extern int const LYX_FORMAT;
177
178 /// Absolute path of the master .lyx or .tex file
179 extern std::string getMasterFilePath(bool input);
180 /// Absolute path of the currently processed .lyx or .tex file
181 extern std::string getParentFilePath(bool input);
182 /// Is it allowed to overwrite existing files?
183 extern bool overwriteFiles();
184 /// Do we need to copy included files to the output directory?
185 extern bool copyFiles();
186 /// Shall we skip child documents and keep them as TeX?
187 extern bool skipChildren();
188
189
190 /*!
191  *  Reads tex input from \a infilename and writes lyx output to \a outfilename.
192  *  The (latex) encoding can be provided as \a encoding.
193  *  Uses some common settings for the preamble, so this should only
194  *  be used more than once for included documents.
195  *  Caution: Overwrites the existing preamble settings if the new document
196  *  contains a preamble.
197  *  \return true if the conversion was successful, else false.
198  */
199 bool tex2lyx(std::string const & infilename, 
200              support::FileName const & outfilename, 
201              std::string const & encoding);
202
203
204 } // namespace lyx
205
206 #endif