]> git.lyx.org Git - features.git/blob - src/Layout.h
Backend support for layout categorization.
[features.git] / src / Layout.h
1 // -*- C++ -*-
2 /**
3  * \file Layout.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  * \author Jean-Marc Lasgouttes
9  * \author André Pönitz
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef LAYOUT_H
15 #define LAYOUT_H
16
17 #include "FontInfo.h"
18 #include "LayoutEnums.h"
19 #include "Spacing.h"
20 #include "support/docstring.h"
21
22 #include <set>
23 #include <string>
24
25 namespace lyx {
26
27 class Lexer;
28 class TextClass;
29
30 /* Fix labels are printed flushright, manual labels flushleft.
31  * MARGIN_MANUAL and MARGIN_FIRST_DYNAMIC are *only* for LABEL_MANUAL,
32  * MARGIN_DYNAMIC and MARGIN_STATIC are *not* for LABEL_MANUAL.
33  * This seems a funny restriction, but I think other combinations are
34  * not needed, so I will not change it yet.
35  * Correction: MARGIN_FIRST_DYNAMIC also usable with LABEL_STATIC
36  */
37
38
39 /* There is a parindent and a parskip. Which one is used depends on the
40  * paragraph_separation-flag of the text-object.
41  * BUT: parindent is only thrown away, if a parskip is defined! So if you
42  * want a space between the paragraphs and a parindent at the same time,
43  * you should set parskip to zero and use topsep, parsep and bottomsep.
44  *
45  * The standard layout is an exception: its parindent is only set, if the
46  * previous paragraph is standard too. Well, this is LateX and it is good!
47  */
48
49 ///
50 class Layout {
51 public:
52         ///
53         Layout();
54         /// Reads a layout definition from file
55         /// \return true on success.
56         bool read(Lexer &, TextClass const &);
57         ///
58         void readAlign(Lexer &);
59         ///
60         void readAlignPossible(Lexer &);
61         ///
62         void readLabelType(Lexer &);
63         ///
64         void readEndLabelType(Lexer &);
65         ///
66         void readMargin(Lexer &);
67         ///
68         void readLatexType(Lexer &);
69         ///
70         void readSpacing(Lexer &);
71         ///
72         docstring const & name() const;
73         ///
74         void setName(docstring const & n);
75         ///
76         docstring const & obsoleted_by() const;
77         ///
78         docstring const & depends_on() const;
79         ///
80         std::string const & latexname() const { return latexname_; }
81         ///
82         docstring const & labelstring() const { return labelstring_; }
83         ///
84         docstring const & endlabelstring() const { return endlabelstring_; }
85         ///
86         docstring const & category() const { return category_; }
87         ///
88         docstring const & preamble() const { return preamble_; }
89         ///
90         std::set<std::string> const & requires() const { return requires_; }
91         ///
92         std::string const & latexparam() const { return latexparam_; }
93         ///
94         std::string const & innertag() const { return innertag_; }
95         ///
96         std::string const & labeltag() const { return labeltag_; }
97         ///
98         std::string const & itemtag() const { return itemtag_; }
99         ///
100         docstring const & labelstring_appendix() const {
101                 return labelstring_appendix_;
102         }
103         /** Default font for this layout/environment.
104             The main font for this kind of environment. If an attribute has
105             INHERITED_*, it means that the value is specified by
106             the defaultfont for the entire layout. If we are nested, the
107             font is inherited from the font in the environment one level
108             up until the font is resolved. The values :IGNORE_*
109             and FONT_TOGGLE are illegal here.
110         */
111         FontInfo font;
112
113         /** Default font for labels.
114             Interpretation the same as for font above
115         */
116         FontInfo labelfont;
117
118         /** Resolved version of the font for this layout/environment.
119             This is a resolved version the default font. The font is resolved
120             against the defaultfont of the entire layout.
121         */
122         FontInfo resfont;
123
124         /** Resolved version of the font used for labels.
125             This is a resolved version the label font. The font is resolved
126             against the defaultfont of the entire layout.
127         */
128         FontInfo reslabelfont;
129
130         /// Text that dictates how wide the left margin is on the screen
131         docstring leftmargin;
132         /// Text that dictates how wide the right margin is on the screen
133         docstring rightmargin;
134         /// Text that dictates how much space to leave after a potential label
135         docstring labelsep;
136         /// Text that dictates how much space to leave before a potential label
137         docstring labelindent;
138         /// Text that dictates the width of the indentation of indented pars
139         docstring parindent;
140         ///
141         double parskip;
142         ///
143         double itemsep;
144         ///
145         double topsep;
146         ///
147         double bottomsep;
148         ///
149         double labelbottomsep;
150         ///
151         double parsep;
152         ///
153         Spacing spacing;
154         ///
155         LyXAlignment align;
156         ///
157         LyXAlignment alignpossible;
158         ///
159         LabelType labeltype;
160         ///
161         EndLabelType endlabeltype;
162         ///
163         MarginType margintype;
164         ///
165         bool fill_top;
166         ///
167         bool fill_bottom;
168         ///
169         bool newline_allowed;
170         ///
171         bool nextnoindent;
172         ///
173         bool free_spacing;
174         ///
175         bool pass_thru;
176         /**
177          * Whether this layout was declared with "Environment xxx" as opposed
178          * to "Style xxx". This is part of some unfinished generic environment
179          * handling (see also InsetEnvironment) started by Andre. No layout
180          * that is shipped with LyX has this flag set.
181          * Don't confuse this with isEnvironment()!
182          */
183         bool is_environment;
184         /// show this in toc
185         int toclevel;
186         /// special value of toclevel for non-section layouts
187         static const int NOT_IN_TOC;
188         /// for new environment insets
189         std::string latexheader;
190         /// for new environment insets
191         std::string latexfooter;
192         /// for new environment insets
193         std::string latexparagraph;
194
195         /** true when the fragile commands in the paragraph need to be
196             \protect'ed. */
197         bool needprotect;
198         /// true when empty paragraphs should be kept.
199         bool keepempty;
200         ///
201         bool isParagraph() const { return latextype == LATEX_PARAGRAPH; }
202         ///
203         bool isCommand() const { return latextype == LATEX_COMMAND; }
204         ///
205         bool isEnvironment() const {
206                 return latextype == LATEX_ENVIRONMENT
207                         || latextype == LATEX_BIB_ENVIRONMENT
208                         || latextype == LATEX_ITEM_ENVIRONMENT
209                         || latextype == LATEX_LIST_ENVIRONMENT;
210         }
211         /// Type of LaTeX object
212         LatexType latextype;
213         /// Does this object belong in the title part of the document?
214         bool intitle;
215         /// Does this layout allow for an optional parameter?
216         int optionalargs;
217         /// Which counter to step
218         docstring counter;
219         /// Depth of XML command
220         int commanddepth;
221
222         /// Return a pointer on a new layout suitable to describe a caption.
223         /// FIXME: remove this eventually. This is only for tex2lyx
224         /// until it has proper support for the caption inset (JMarc)
225         static Layout * forCaption();
226
227 private:
228         /// Name of the layout/paragraph environment
229         docstring name_;
230
231         /** Name of an layout that has replaced this layout.
232             This is used to rename a layout, while keeping backward
233             compatibility
234         */
235         docstring obsoleted_by_;
236
237         /** Name of an layout which preamble must come before this one
238             This is used when the preamble snippet uses macros defined in
239             another preamble
240          */
241         docstring depends_on_;
242
243         /// LaTeX name for environment
244         std::string latexname_;
245         /// Label string. "Abstract", "Reference", "Caption"...
246         docstring labelstring_;
247         ///
248         docstring endlabelstring_;
249         /// Label string inside appendix. "Appendix", ...
250         docstring labelstring_appendix_;
251         /// LaTeX parameter for environment
252         std::string latexparam_;
253         /// Internal tag to use (e.g., <title></title> for sect header)
254         std::string innertag_;
255         /// Internal tag to use e.g. to surround varlistentry label)
256         std::string labeltag_;
257         /// Internal tag to surround the item text in a list)
258         std::string itemtag_;
259         /// This is the `category' for this layout. The following are
260         /// recommended basic categories: FrontMatter, BackMatter, MainText,
261         /// Section, Starred, List, Theorem.
262         docstring category_;
263         /// Macro definitions needed for this layout
264         docstring preamble_;
265         /// Packages needed for this layout
266         std::set<std::string> requires_;
267 };
268
269 } // namespace lyx
270
271 #endif