]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/tex2lyx.h
Increase tex2lyx output format to 368.
[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 /// in preamble.cpp
47 void parse_preamble(Parser & p, std::ostream & os, 
48         std::string const & forceclass, TeX2LyXDocClass & tc);
49 /// Translate babel language name to LyX language name
50 extern std::string babel2lyx(std::string const & language);
51
52 /// used packages with options
53 extern std::map<std::string, std::vector<std::string> > used_packages;
54 extern const char * const modules_placeholder;
55 extern std::string h_inputencoding;
56
57 /// in text.cpp
58 std::string translate_len(std::string const &);
59
60 void parse_text(Parser & p, std::ostream & os, unsigned flags, bool outer,
61                 Context & context);
62
63 /*!
64  * Parses a subdocument, usually useful in insets (whence the name).
65  *
66  * It ignores \c context.need_layout and \c context.need_end_layout and
67  * starts and ends always a new layout.
68  * Therefore this may only be used to parse text in insets or table cells.
69  */
70 void parse_text_in_inset(Parser & p, std::ostream & os, unsigned flags,
71                          bool outer, Context const & context,
72                          InsetLayout const * layout = 0);
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, bool is_long_tabular,
81                     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 char const * const * is_known(std::string const &, char const * const *);
94
95 /*!
96  * Adds the command \p command to the list of known commands.
97  * \param o1 first optional parameter to the latex command \\newcommand
98  * (with brackets), or the empty string if there were no optional arguments.
99  * \param o2 wether \\newcommand had a second optional parameter.
100  * If \p definition is not empty the command is assumed to be from the LyX
101  * preamble and added to possible_textclass_commands.
102  */
103 void add_known_command(std::string const & command, std::string const & o1,
104         bool o2, docstring const & definition = docstring());
105 extern void add_known_environment(std::string const & environment,
106         std::string const & o1, bool o2, docstring const & beg,
107         docstring const & end);
108 extern Layout const * findLayoutWithoutModule(TextClass const & textclass,
109         std::string const & name, bool command);
110 extern InsetLayout const * findInsetLayoutWithoutModule(
111         TextClass const & textclass, std::string const & name, bool command);
112 /*!
113  * Check whether a module provides command (if \p command is true) or
114  * environment (if \p command is false) \p name, and add the module to the
115  * list of used modules if yes.
116  */
117 extern bool checkModule(std::string const & name, bool command);
118 // Access to environment stack
119 extern std::vector<std::string> active_environments;
120 std::string active_environment();
121
122 enum ArgumentType {
123         required,
124         verbatim,
125         item,
126         optional
127 };
128
129 class FullCommand {
130 public:
131         FullCommand() {}
132         FullCommand(std::vector<ArgumentType> const & a, docstring const & d)
133                 : args(a), def(d) {}
134         std::vector<ArgumentType> args;
135         docstring def;
136 };
137
138 class FullEnvironment {
139 public:
140         FullEnvironment() {}
141         FullEnvironment(std::vector<ArgumentType> const & a,
142                         docstring const & b, docstring const & e)
143                 : args(a), beg(b), end(e) {}
144         std::vector<ArgumentType> args;
145         docstring beg;
146         docstring end;
147 };
148
149 typedef std::map<std::string, std::vector<ArgumentType> > CommandMap;
150 typedef std::map<std::string, FullCommand> FullCommandMap;
151 typedef std::map<std::string, FullEnvironment> FullEnvironmentMap;
152
153 /// Known TeX commands with arguments that get parsed into ERT.
154 extern CommandMap known_commands;
155 /// Known TeX environments with arguments that get parsed into ERT.
156 extern CommandMap known_environments;
157 /// Known TeX math environments with arguments that get parsed into LyX mathed.
158 extern CommandMap known_math_environments;
159 /// Commands that might be defined by the document class or modules
160 extern FullCommandMap possible_textclass_commands;
161 /// Environments that might be defined by the document class or modules
162 extern FullEnvironmentMap possible_textclass_environments;
163 ///
164 extern bool noweb_mode;
165 /// Did we recognize any pdflatex-only construct?
166 extern bool pdflatex;
167 /// LyX format that is created by tex2lyx
168 int const LYX_FORMAT = 368;
169
170 /// path of the master .tex file
171 extern std::string getMasterFilePath();
172 /// path of the currently processed .tex file
173 extern std::string getParentFilePath();
174
175
176 /*!
177  *  Reads tex input from \a infilename and writes lyx output to \a outfilename.
178  *  The (latex) encoding can be provided as \a encoding.
179  *  Uses some common settings for the preamble, so this should only
180  *  be used more than once for included documents.
181  *  Caution: Overwrites the existing preamble settings if the new document
182  *  contains a preamble.
183  *  \return true if the conversion was successful, else false.
184  */
185 bool tex2lyx(std::string const & infilename, 
186              support::FileName const & outfilename, 
187              std::string const & encoding);
188
189
190 } // namespace lyx
191
192 #endif