]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/tex2lyx.h
df6e0371d150629c1b036892609d4322d973c3d1
[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
23 class Context;
24
25 /// in preamble.C
26 LyXTextClass const parse_preamble(Parser & p, std::ostream & os, std::string const & forceclass);
27
28
29 /// in text.C
30 void parse_text(Parser & p, std::ostream & os, unsigned flags, bool outer,
31                 Context & context);
32
33 //std::string parse_text(Parser & p, unsigned flags, const bool outer,
34 //                     Context & context);
35
36 void parse_text_in_inset(Parser & p, std::ostream & os, unsigned flags,
37                          bool outer, Context & context);
38
39
40 /// in math.C
41 void parse_math(Parser & p, std::ostream & os, unsigned flags, mode_type mode);
42
43
44 /// in table.C
45 void handle_tabular(Parser & p, std::ostream & os, Context & context);
46
47
48 /// in tex2lyx.C
49 std::string const trim(std::string const & a, char const * p = " \t\n\r");
50
51 void split(std::string const & s, std::vector<std::string> & result,
52         char delim = ',');
53 std::string join(std::vector<std::string> const & input,
54         char const * delim);
55
56 bool is_math_env(std::string const & name);
57 char const ** is_known(std::string const & str, char const ** what);
58
59 // Access to environment stack
60 extern std::vector<std::string> active_environments;
61 std::string active_environment();
62
63 /*! Reads tex input from \a is and writes lyx output to \a os.
64  *  Uses some common settings for the preamble, so this should only
65  *  be used more than once for included documents.
66  *  Caution: Overwrites the existing preamble settings if the new document
67  *  contains a preamble. */
68 void tex2lyx(std::istream &, std::ostream &);
69 /// \return true if the conversion was successful, else false.
70 bool tex2lyx(std::string const &, std::string const &);
71
72 #endif