]> git.lyx.org Git - lyx.git/blob - src/insets/InsetLayout.h
delete unused variable, fix multicolumn and some clean up
[lyx.git] / src / insets / InsetLayout.h
1 // -*- C++ -*-
2 /**
3  * \file InsetLayout.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Martin Vermeer
8  * \author Richard Heck
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef INSET_LAYOUT_H
14 #define INSET_LAYOUT_H
15
16 #include "ColorCode.h"
17 #include "FontInfo.h"
18
19 #include "support/docstring.h"
20
21 #include <set>
22 #include <string>
23
24 namespace lyx {
25
26 class Lexer;
27 class TextClass;
28
29 ///
30 class InsetLayout {
31 public:
32         ///
33         InsetLayout();
34         ///
35         enum InsetDecoration {
36                 CLASSIC,
37                 MINIMALISTIC,
38                 CONGLOMERATE,
39                 DEFAULT
40         };
41         ///
42         enum InsetLyXType {
43                 NOLYXTYPE,
44                 CHARSTYLE,
45                 CUSTOM,
46                 ELEMENT,
47                 END,
48                 STANDARD
49         };
50         ///
51         enum InsetLaTeXType {
52                 NOLATEXTYPE,
53                 COMMAND,
54                 ENVIRONMENT,
55                 ILT_ERROR
56         };
57         ///
58         bool read(Lexer & lexrc, TextClass const & tclass);
59         ///
60         docstring name() const { return name_; }
61         ///
62         void setName(docstring const & n) { name_ = n; }
63         ///
64         InsetLyXType lyxtype() const { return lyxtype_; }
65         ///
66         docstring labelstring() const { return labelstring_; }
67         ///
68         bool contentaslabel() const { return contentaslabel_; }
69         ///
70         InsetDecoration decoration() const { return decoration_; }
71         ///
72         InsetLaTeXType latextype() const { return latextype_; }
73         ///
74         std::string latexname() const { return latexname_; }
75         ///
76         std::string latexparam() const { return latexparam_; }
77         ///
78         FontInfo font() const { return font_; }
79         ///
80         FontInfo labelfont() const { return labelfont_; }
81         ///
82         ColorCode bgcolor() const { return bgcolor_; }
83         ///
84         docstring preamble() const { return preamble_; }
85         ///
86         docstring counter() const { return counter_; }
87         /// The tag enclosing all the material in this inset. Default is "span".
88         std::string const & htmltag() const;
89         /// Additional attributes for inclusion with the start tag. Default (if
90         /// a tag is provided) is: class="name".
91         std::string const & htmlattr() const;
92         /// Tag for individual paragraphs in the inset. Default is none.
93         std::string const & htmlinnertag() const { return htmlinnertag_; }
94         /// Attributes for that tag. Default (if a tag is provided) is: 
95         /// class="name_inner".
96         std::string const & htmlinnerattr() const;
97         /// A label for this environment, possibly including a reference
98         /// to a counter. E.g., for footnote, it might be:
99         ///    \arabic{footnote}
100         /// No default.
101         /// FIXME Could we get this from the layout?
102         std::string const & htmllabel() const { return htmllabel_; }
103         ///
104         inline std::string htmllabeltag() const { return "span"; }
105         ///
106         std::string htmllabelattr() const 
107                 { return "class=\"" + defaultCSSClass() + "_label\""; }
108         /// CSS associated with this inset.
109         docstring htmlstyle() const;
110         /// Additional material for the header.
111         docstring htmlpreamble() const { return htmlpreamble_; }
112         /// Whether this inset represents a "block" of material, i.e., a set
113         /// of paragraphs of its own (true), or should be run into the previous
114         /// paragraph (false). Examples:
115         ///   For branches, this is false.
116         ///   For footnotes, this is true.
117         /// Defaults to true.
118         bool htmlisblock() const { return htmlisblock_; }
119         ///
120         std::set<std::string> requires() const { return requires_; }
121         ///
122         bool isMultiPar() const { return multipar_; }
123         ///
124         bool forcePlainLayout() const { return forceplain_; }
125         ///
126         bool allowParagraphCustomization() const { return custompars_; }
127         ///
128         bool isPassThru() const { return passthru_; }
129         ///
130         bool isNeedProtect() const { return needprotect_; }
131         ///
132         bool isFreeSpacing() const { return freespacing_; }
133         ///
134         bool isKeepEmpty() const { return keepempty_; }
135         ///
136         bool forceLTR() const { return forceltr_; }
137         ///
138         bool isInToc() const { return intoc_; }
139         ///
140 private:
141         ///
142         void makeDefaultCSS() const;
143         ///
144         std::string defaultCSSClass() const;
145         ///
146         std::string defaultCSSLabelClass() const { return defaultCSSClass() + "_label"; }
147         ///
148         docstring name_;
149         /**
150                 * This is only used (at present) to decide where to put them on the menus.
151                 * Values are 'charstyle', 'custom' (things that by default look like a
152                 * footnote), 'element' (docbook), 'standard'.
153                 */
154         InsetLyXType lyxtype_;
155         ///
156         docstring labelstring_;
157         ///
158         bool contentaslabel_;
159         ///
160         InsetDecoration decoration_;
161         ///
162         InsetLaTeXType latextype_;
163         ///
164         std::string latexname_;
165         ///
166         std::string latexparam_;
167         ///
168         FontInfo font_;
169         ///
170         FontInfo labelfont_;
171         ///
172         ColorCode bgcolor_;
173         ///
174         docstring counter_;
175         ///
176         docstring preamble_;
177         ///
178         mutable std::string htmltag_;
179         ///
180         mutable std::string htmlattr_;
181         ///
182         std::string htmlinnertag_;
183         ///
184         mutable std::string htmlinnerattr_;
185         ///
186         std::string htmllabel_;
187         ///
188         docstring htmlstyle_;
189         /// Cache for default CSS info for this inset.
190         mutable docstring htmldefaultstyle_;
191         /// Cache for default CSS class.
192         mutable std::string defaultcssclass_;
193         /// Whether to force generation of default CSS even if some is given.
194         /// False by default.
195         bool htmlforcecss_;
196         ///
197         docstring htmlpreamble_;
198         ///
199         bool htmlisblock_;
200         ///
201         std::set<std::string> requires_;
202         ///
203         bool multipar_;
204         /// 
205         bool custompars_;
206         ///
207         bool forceplain_;
208         ///
209         bool passthru_;
210         ///
211         bool needprotect_;
212         ///
213         bool freespacing_;
214         ///
215         bool keepempty_;
216         ///
217         bool forceltr_;
218         /// should the contents be written to TOC strings?
219         bool intoc_;
220 };
221
222 ///
223 InsetLayout::InsetLyXType translateLyXType(std::string const & str);
224
225 } // namespace lyx
226
227 #endif