]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/tex2lyx.h
Fix #10778 (issue with CJK and language nesting)
[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
53 /*!
54  * Parses a subdocument, usually useful in insets (whence the name).
55  *
56  * It ignores \c context.need_layout and \c context.need_end_layout and
57  * starts and ends always a new layout.
58  * Therefore this may only be used to parse text in insets or table cells.
59  */
60 void parse_text_in_inset(Parser & p, std::ostream & os, unsigned flags,
61                          bool outer, Context const & context,
62                          InsetLayout const * layout = 0);
63
64 /// Guess document language from \p p if CJK is used.
65 /// \p lang is used for all non-CJK contents.
66 std::string guessLanguage(Parser & p, std::string const & lang);
67
68
69 /// in math.cpp
70 void parse_math(Parser & p, std::ostream & os, unsigned flags, mode_type mode);
71
72
73 /// in table.cpp
74 void handle_tabular(Parser & p, std::ostream & os, std::string const & name,
75                     std::string const & width, Context & context);
76
77
78 /// in tex2lyx.cpp
79 std::string const trimSpaceAndEol(std::string const & a);
80
81 void split(std::string const & s, std::vector<std::string> & result,
82         char delim = ',');
83 std::string join(std::vector<std::string> const & input,
84         char const * delim);
85
86 bool is_math_env(std::string const & name);
87 bool is_display_math_env(std::string const & name);
88 char const * const * is_known(std::string const &, char const * const *);
89
90 /*!
91  * Adds the command \p command to the list of known commands.
92  * \param o1 first optional parameter to the latex command \\newcommand
93  * (with brackets), or the empty string if there were no optional arguments.
94  * \param o2 wether \\newcommand had a second optional parameter.
95  * If \p definition is not empty the command is assumed to be from the LyX
96  * preamble and added to possible_textclass_commands.
97  */
98 void add_known_command(std::string const & command, std::string const & o1,
99         bool o2, docstring const & definition = docstring());
100 extern void add_known_environment(std::string const & environment,
101         std::string const & o1, bool o2, docstring const & beg,
102         docstring const & end);
103 extern void add_known_theorem(std::string const & theorem,
104         std::string const & o1, bool o2, docstring const & definition);
105 extern Layout const * findLayoutWithoutModule(TextClass const & textclass,
106         std::string const & name, bool command);
107 extern InsetLayout const * findInsetLayoutWithoutModule(
108         TextClass const & textclass, std::string const & name, bool command);
109 /*!
110  * Check whether a module provides command (if \p command is true) or
111  * environment (if \p command is false) \p name, and add the module to the
112  * list of used modules if yes.
113  */
114 extern bool checkModule(std::string const & name, bool command);
115 /// Is this feature already provided e.g. by the document class?
116 extern bool isProvided(std::string const & name);
117 // Access to environment stack
118 extern std::vector<std::string> active_environments;
119 std::string active_environment();
120
121 enum ArgumentType {
122         required,
123         req_group,
124         verbatim,
125         item,
126         optional,
127         opt_group,
128         displaymath,
129 };
130
131 class FullCommand {
132 public:
133         FullCommand() {}
134         FullCommand(std::vector<ArgumentType> const & a, docstring const & d)
135                 : args(a), def(d) {}
136         std::vector<ArgumentType> args;
137         docstring def;
138 };
139
140 class FullEnvironment {
141 public:
142         FullEnvironment() {}
143         FullEnvironment(std::vector<ArgumentType> const & a,
144                         docstring const & b, docstring const & e)
145                 : args(a), beg(b), end(e) {}
146         std::vector<ArgumentType> args;
147         docstring beg;
148         docstring end;
149 };
150
151 typedef std::map<std::string, std::vector<ArgumentType> > CommandMap;
152 typedef std::map<std::string, FullCommand> FullCommandMap;
153 typedef std::map<std::string, FullEnvironment> FullEnvironmentMap;
154
155 /// Known TeX commands with arguments that get parsed into ERT.
156 extern CommandMap known_commands;
157 /// Known TeX environments with arguments that get parsed into ERT.
158 extern CommandMap known_environments;
159 /// Known TeX math environments with arguments that get parsed into LyX mathed.
160 extern CommandMap known_math_environments;
161 /// Commands that might be defined by the document class or modules
162 extern FullCommandMap possible_textclass_commands;
163 /// Environments that might be defined by the document class or modules
164 extern FullEnvironmentMap possible_textclass_environments;
165 /// Theorems that might be defined by the document class or modules
166 extern FullCommandMap possible_textclass_theorems;
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 /// Does tex2lyx run in roundtrip mode?
189 extern bool roundtripMode();
190
191
192 /*!
193  *  Reads tex input from \a infilename and writes lyx output to \a outfilename.
194  *  The iconv name of the encoding can be provided as \a encoding.
195  *  Uses some common settings for the preamble, so this should only
196  *  be used more than once for included documents.
197  *  Caution: Overwrites the existing preamble settings if the new document
198  *  contains a preamble.
199  *  \return true if the conversion was successful, else false.
200  */
201 bool tex2lyx(std::string const & infilename,
202              support::FileName const & outfilename,
203              std::string const & encoding);
204
205
206 } // namespace lyx
207
208 #endif