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