whitespace.
[lyx.git] / src / OutputParams.h
blob00a1e11030e896b973a35a4ddc372b82a91f0fdd
1 // -*- C++ -*-
2 /**
3 * \file OutputParams.h
4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
7 * \author Angus Leeming
9 * Full author contact details are available in file CREDITS.
12 #ifndef OUTPUTPARAMS_H
13 #define OUTPUTPARAMS_H
15 #include <string>
17 #include "support/types.h"
18 #include <boost/shared_ptr.hpp>
19 #include "Changes.h"
22 namespace lyx {
25 class Encoding;
26 class ExportData;
27 class Font;
30 class OutputParams {
31 public:
32 enum FLAVOR {
33 LATEX,
34 PDFLATEX,
35 XML
38 enum TableCell {
39 NO,
40 PLAIN,
41 ALIGNED
44 enum Float {
45 NONFLOAT,
46 MAINFLOAT,
47 SUBFLOAT
50 OutputParams(Encoding const *);
51 ~OutputParams();
53 /** The latex that we export depends occasionally on what is to
54 compile the file.
56 FLAVOR flavor;
58 /** Are we to write a 'nice' LaTeX file or not.
59 This esentially seems to mean whether InsetInclude, InsetGraphics
60 and InsetExternal should add the absolute path to any external
61 files or not.
63 bool nice;
65 /** moving_arg == true means that the environment in which the inset
66 is typeset is a moving argument. The inset should take care about
67 fragile commands by preceding the latex with \\protect.
69 bool moving_arg;
71 /** intitle == true means that the environment in which the
72 inset is typeset is part of a title (before a \\maketitle).
73 Footnotes in such environments have moving arguments.
75 bool intitle;
77 /** the font at the point where the inset is
79 Font const * local_font;
81 /** Document language babel name
83 mutable std::string document_language;
85 /** Current stream encoding. Only used for LaTeX.
86 This must be set to the document encoding (via the constructor)
87 before output starts. Afterwards it must be kept up to date for
88 each single character (\sa Paragraph::latex).
89 This does also mean that you need to set it back if you use a
90 copy (e.g. in insets): \code
91 int InsetFoo::latex(..., OutputParams const & runparams_in) const
93 OutputParams runparams(runparams_in);
94 runparams.inComment = true;
95 ...
96 InsetBla::latex(..., runparams);
97 ...
98 runparams_in.encoding = runparams.encoding;
100 \endcode
102 mutable Encoding const * encoding;
104 /** free_spacing == true means that the inset is in a free-spacing
105 paragraph.
107 bool free_spacing;
109 /** This var is set by the return value from BufferParams::writeLaTeX
111 bool use_babel;
113 /** Are we using japanese (pLaTeX)?
115 bool use_japanese;
117 /** Line length to use with plaintext export.
119 size_type linelen;
121 /** The depth of the current paragraph, set for plaintext
122 * export and used by InsetTabular
124 int depth;
126 /** Export data filled in by the latex(), docbook() etc methods.
127 This is a hack: Make it possible to add stuff to constant
128 OutputParams instances.
130 boost::shared_ptr<ExportData> exportdata;
132 /** Whether we are inside a comment inset. Insets that are including
133 * external files like InsetGraphics, InsetInclude and InsetExternal
134 * may only write the usual output and must not attempt to do
135 * something with the included files (e.g. copying, converting)
136 * if this flag is true, since they may not exist.
138 bool inComment;
140 /** Whether we are in a table cell.
141 * For newline, it matters whether its content is aligned or not.
143 TableCell inTableCell;
145 /** Whether we are inside a float or subfloat.
146 * Needed for subfloat detection on the command line.
148 Float inFloat;
150 /** Whether we are inside an inset that is logically deleted.
151 * A value > 0 indicates a deleted inset.
153 int inDeletedInset;
155 /** The change information of the outermost logically deleted inset.
156 * changeOfDeletedInset shall only be evaluated if inDeletedInset > 0.
158 Change changeOfDeletedInset;
160 /** allow output of only part of the top-level paragraphs
161 * par_begin: beginning paragraph
163 pit_type par_begin;
165 /** allow output of only part of the top-level paragraphs
166 * par_end: par_end-1 is the ending paragraph
167 * if par_begin=par_end, output all paragraphs
169 pit_type par_end;
171 /// is this the last paragraph in the current buffer/inset?
172 bool isLastPar;
174 /** whether or not do actual file copying and image conversion
175 * This mode will be used to preview the source code
177 bool dryrun;
178 /// Should we output verbatim or escape LaTeX's special chars?
179 bool verbatim;
183 } // namespace lyx
185 #endif // NOT OUTPUTPARAMS_H