]> git.lyx.org Git - lyx.git/blob - src/output_latex.h
Also track local language switches
[lyx.git] / src / output_latex.h
1 // -*- C++ -*-
2 /**
3  * \file output_latex.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef OUTPUT_LATEX_H
13 #define OUTPUT_LATEX_H
14
15 #include <utility>
16
17 #include "support/docstream.h"
18 #include "Layout.h"
19 #include "ParagraphList.h"
20
21
22 namespace lyx {
23
24 class Buffer;
25 class BufferParams;
26 class Encoding;
27 class Layout;
28 class Paragraph;
29 class OutputParams;
30 class Text;
31
32 /** Register a language switch when using polyglossia.
33     Set \p localswitch to true if the \text<lang> command is used.
34  */
35 void pushPolyglossiaLang(std::string const & lang, bool localswitch = false);
36
37 /** Unregister the last language switch when using polyglossia.
38  */
39 void popPolyglossiaLang();
40
41 /** Export optional and required arguments of the paragraph \p par.
42     Non-existing required arguments are output empty: {}.
43  */
44 void latexArgInsets(Paragraph const & par,
45                 otexstream & os, OutputParams const & runparams,
46                 Layout::LaTeXArgMap const & latexargs,
47                 std::string const & prefix = std::string());
48 /// Same for multi-par sequences (e.g. merged environments or InsetLayouts)
49 void latexArgInsets(ParagraphList const & pars, ParagraphList::const_iterator pit,
50                 otexstream & os, OutputParams const & runparams,
51                 Layout::LaTeXArgMap const & latexargs,
52                 std::string const & prefix = std::string());
53 /** Export \p paragraphs of buffer \p buf to LaTeX.
54     Don't use a temporary stringstream for \p os if the final output is
55     supposed to go to a file.
56     \sa Buffer::writeLaTeXSource for the reason.
57  */
58 void latexParagraphs(Buffer const & buf,
59                      Text const & text,
60                      otexstream & ofs,
61                      OutputParams const &,
62                      std::string const & everypar = std::string());
63
64 /** Switch the encoding of \p os from runparams.encoding to \p newEnc if needed.
65     \p force forces this also within non-default or -auto encodings.
66     \return (did the encoding change?, number of characters written to \p os)
67  */
68 std::pair<bool, int> switchEncoding(odocstream & os,
69                      BufferParams const & bparams,
70                      OutputParams const &, Encoding const & newEnc,
71                      bool force = false);
72
73 /// FIXME: this should not be visible.
74 void TeXOnePar(Buffer const & buf,
75                    Text const & text,
76                    pit_type pit,
77                    otexstream & os,
78                    OutputParams const & runparams,
79                    std::string const & everypar = std::string(),
80                    int start_pos = -1, int end_pos = -1);
81
82 } // namespace lyx
83
84 #endif