]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/tex2lyx.h
Bug fix; ensure that all is Ok after the combox is moved with
[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 "texparser.h"
17 #include "lyxtextclass.h"
18
19 #include <iosfwd>
20 #include <string>
21 #include <vector>
22 #include <map>
23
24 class Context;
25
26 /// in preamble.C
27 LyXTextClass const parse_preamble(Parser & p, std::ostream & os, std::string const & forceclass);
28
29
30 /// in text.C
31 void parse_text(Parser & p, std::ostream & os, unsigned flags, bool outer,
32                 Context & context);
33
34 //std::string parse_text(Parser & p, unsigned flags, const bool outer,
35 //                     Context & context);
36
37 void parse_text_in_inset(Parser & p, std::ostream & os, unsigned flags,
38                          bool outer, Context & context);
39
40
41 /// in math.C
42 void parse_math(Parser & p, std::ostream & os, unsigned flags, mode_type mode);
43
44
45 /// in table.C
46 void handle_tabular(Parser & p, std::ostream & os, Context & context);
47
48
49 /// in tex2lyx.C
50 std::string const trim(std::string const & a, char const * p = " \t\n\r");
51
52 void split(std::string const & s, std::vector<std::string> & result,
53         char delim = ',');
54 std::string join(std::vector<std::string> const & input,
55         char const * delim);
56
57 bool is_math_env(std::string const & name);
58 char const ** is_known(std::string const & str, char const ** what);
59
60 // Access to environment stack
61 extern std::vector<std::string> active_environments;
62 std::string active_environment();
63
64 enum ArgumentType {
65         required,
66         verbatim,
67         optional
68 };
69
70 /// Known TeX commands with arguments that get parsed into ERT.
71 extern std::map<std::string, std::vector<ArgumentType> > known_commands;
72
73 /*! Reads tex input from \a is and writes lyx output to \a os.
74  *  Uses some common settings for the preamble, so this should only
75  *  be used more than once for included documents.
76  *  Caution: Overwrites the existing preamble settings if the new document
77  *  contains a preamble. */
78 void tex2lyx(std::istream &, std::ostream &);
79 /// \return true if the conversion was successful, else false.
80 bool tex2lyx(std::string const &, std::string const &);
81
82 #endif