]> git.lyx.org Git - lyx.git/blob - src/TextClass.h
Buffer param \cite_engine_type (authoryear|numerical).
[lyx.git] / src / TextClass.h
1 // -*- C++ -*-
2 /**
3  * \file TextClass.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * Full author contact details are available in file CREDITS.
8  */
9
10 #ifndef TEXTCLASS_H
11 #define TEXTCLASS_H
12
13 #include "ColorCode.h"
14 #include "Counters.h"
15 #include "FloatList.h"
16 #include "FontInfo.h"
17 #include "Layout.h"
18 #include "LayoutEnums.h"
19 #include "LayoutModuleList.h"
20
21 #include "insets/InsetLayout.h"
22
23 #include "support/docstring.h"
24 #include "support/types.h"
25
26 #include <boost/noncopyable.hpp>
27
28 #include <list>
29 #include <map>
30 #include <set>
31 #include <string>
32 #include <vector>
33
34 namespace lyx {
35
36 namespace support { class FileName; }
37
38 class Counters;
39 class FloatList;
40 class Layout;
41 class LayoutFile;
42 class Lexer;
43
44 /// Based upon ideas in boost::noncopyable, inheriting from this
45 /// class effectively makes the copy constructor protected but the
46 /// assignment constructor private.
47 class ProtectCopy
48 {
49 protected:
50         ProtectCopy() {}
51         ~ProtectCopy() {}
52         ProtectCopy(const ProtectCopy &) {}
53 private:
54         const ProtectCopy & operator=(const ProtectCopy &);
55 };
56
57
58 /// A TextClass represents a collection of layout information: At the
59 /// moment, this includes Layout's and InsetLayout's.
60 ///
61 /// There are two major subclasses of TextClass: LayoutFile and
62 /// DocumentClass. These subclasses are what are actually used in LyX.
63 /// Simple TextClass objects are not directly constructed in the main
64 /// LyX code---the constructor is protected. (That said, in tex2lyx
65 /// there are what amount to simple TextClass objects.)
66 ///
67 /// A LayoutFile (see LayoutFile.{h,cpp}) represents a *.layout file.
68 /// These are generally static objects---though they can be reloaded
69 /// from disk via LFUN_LAYOUT_RELOAD, so one should not assume that
70 /// they will never change.
71 ///
72 /// A DocumentClass (see below) represents the layout information that
73 /// is associated with a given Buffer. These are static, in the sense
74 /// that they will not themselves change, but which DocumentClass is
75 /// associated with a Buffer can change, as modules are loaded and
76 /// unloaded, for example.
77 ///
78 class TextClass : protected ProtectCopy {
79 public:
80         ///
81         virtual ~TextClass() {}
82         ///////////////////////////////////////////////////////////////////
83         // typedefs
84         ///////////////////////////////////////////////////////////////////
85         // NOTE Do NOT try to make this a container of Layout pointers, e.g.,
86         // std::list<Layout *>. This will lead to problems. The reason is
87         // that DocumentClass objects are generally created by copying a
88         // LayoutFile, which serves as a base for the DocumentClass. If the
89         // LayoutList is a container of pointers, then every DocumentClass
90         // that derives from a given LayoutFile (e.g., article) will SHARE
91         // a basic set of layouts. So if one Buffer were to modify a layout
92         // (say, Standard), that would modify that layout for EVERY Buffer
93         // that was based upon the same DocumentClass.
94         //
95         // NOTE: Layout pointers are directly assigned to paragraphs so a
96         // container that does not invalidate these pointers after insertion
97         // is needed.
98         /// The individual paragraph layouts comprising the document class
99         typedef std::list<Layout> LayoutList;
100         /// The inset layouts available to this class
101         typedef std::map<docstring, InsetLayout> InsetLayouts;
102         ///
103         typedef LayoutList::const_iterator const_iterator;
104
105         ///////////////////////////////////////////////////////////////////
106         // Iterators
107         ///////////////////////////////////////////////////////////////////
108         ///
109         const_iterator begin() const { return layoutlist_.begin(); }
110         ///
111         const_iterator end() const { return layoutlist_.end(); }
112
113
114         ///////////////////////////////////////////////////////////////////
115         // Layout Info
116         ///////////////////////////////////////////////////////////////////
117         ///
118         Layout const & defaultLayout() const;
119         ///
120         docstring const & defaultLayoutName() const;
121         ///
122         bool isDefaultLayout(Layout const &) const;
123         ///
124         bool isPlainLayout(Layout const &) const;
125         /// returns a special layout for use when we don't really want one,
126         /// e.g., in table cells
127         Layout const & plainLayout() const
128                         { return operator[](plain_layout_); }
129         /// the name of the plain layout
130         docstring const & plainLayoutName() const
131                         { return plain_layout_; }
132         /// Enumerate the paragraph styles.
133         size_t layoutCount() const { return layoutlist_.size(); }
134         ///
135         bool hasLayout(docstring const & name) const;
136         ///
137         bool hasInsetLayout(docstring const & name) const;
138         ///
139         Layout const & operator[](docstring const & vname) const;
140         /// Inset layouts of this doc class
141         InsetLayouts const & insetLayouts() const { return insetlayoutlist_; }
142
143         ///////////////////////////////////////////////////////////////////
144         // reading routines
145         ///////////////////////////////////////////////////////////////////
146         /// Enum used with TextClass::read
147         enum ReadType {
148                 BASECLASS, //>This is a base class, i.e., top-level layout file
149                 MERGE, //>This is a file included in a layout file
150                 MODULE, //>This is a layout module
151                 VALIDATION //>We're just validating
152         };
153         /// return values for read()
154         enum ReturnValues {
155                 OK,
156                 OK_OLDFORMAT,
157                 ERROR,
158                 FORMAT_MISMATCH
159         };
160
161         /// Performs the read of the layout file.
162         /// \return true on success.
163         // FIXME Should return ReturnValues....
164         bool read(support::FileName const & filename, ReadType rt = BASECLASS);
165         ///
166         ReturnValues read(std::string const & str, ReadType rt = MODULE);
167         ///
168         ReturnValues read(Lexer & lex, ReadType rt = BASECLASS);
169         /// validates the layout information passed in str
170         static ReturnValues validate(std::string const & str);
171         ///
172         static std::string convert(std::string const & str);
173
174         ///////////////////////////////////////////////////////////////////
175         // loading
176         ///////////////////////////////////////////////////////////////////
177         /// Sees to it the textclass structure has been loaded
178         /// This function will search for $classname.layout in default directories
179         /// and an optional path, but if path points to a file, it will be loaded
180         /// directly.
181         bool load(std::string const & path = std::string()) const;
182         /// Has this layout file been loaded yet?
183         /// Overridden by DocumentClass
184         virtual bool loaded() const { return loaded_; }
185
186         ///////////////////////////////////////////////////////////////////
187         // accessors
188         ///////////////////////////////////////////////////////////////////
189         ///
190         std::string const & name() const { return name_; }
191         ///
192         std::string const & description() const { return description_; }
193         ///
194         std::string const & latexname() const { return latexname_; }
195         ///
196         std::string const & prerequisites() const;
197         /// Can be LaTeX, DocBook, etc.
198         OutputType outputType() const { return outputType_; }
199         /// Can be latex, docbook ... (the name of a format)
200         std::string outputFormat() const { return outputFormat_; }
201 protected:
202         /// Protect construction
203         TextClass();
204         ///
205         Layout & operator[](docstring const & name);
206         /** Create an new, very basic layout for this textclass. This is used for
207             the Plain Layout common to all TextClass objects and also, in
208             DocumentClass, for the creation of new layouts `on the fly' when
209             previously unknown layouts are encountered.
210             \param unknown Set to true if this layout is used to represent an
211             unknown layout
212          */
213         Layout createBasicLayout(docstring const & name, bool unknown = false) const;
214
215         ///////////////////////////////////////////////////////////////////
216         // non-const iterators
217         ///////////////////////////////////////////////////////////////////
218         ///
219         typedef LayoutList::iterator iterator;
220         ///
221         iterator begin() { return layoutlist_.begin(); }
222         ///
223         iterator end() { return layoutlist_.end(); }
224
225         ///////////////////////////////////////////////////////////////////
226         // members
227         ///////////////////////////////////////////////////////////////////
228         /// Paragraph styles used in this layout
229         /// This variable is mutable because unknown layouts can be added
230         /// to const textclass.
231         mutable LayoutList layoutlist_;
232         /// Layout file name
233         std::string name_;
234         /// document class name
235         std::string latexname_;
236         /// document class description
237         std::string description_;
238         /// available types of float, eg. figure, algorithm.
239         mutable FloatList floatlist_;
240         /// Types of counters, eg. sections, eqns, figures, avail. in document class.
241         mutable Counters counters_;
242         /// Has this layout file been loaded yet?
243         mutable bool loaded_;
244         /// Is the TeX class available?
245         bool tex_class_avail_;
246         /// document class prerequisites
247         mutable std::string prerequisites_;
248         ///
249         std::string opt_fontsize_;
250         ///
251         std::string opt_pagestyle_;
252         /// Specific class options
253         std::string options_;
254         ///
255         std::string pagestyle_;
256         ///
257         std::string class_header_;
258         ///
259         docstring defaultlayout_;
260         /// name of plain layout
261         static const docstring plain_layout_;
262         /// preamble text to support layout styles
263         docstring preamble_;
264         /// same, but for HTML output
265         /// this is output as is to the header
266         docstring htmlpreamble_;
267         /// same, but specifically for CSS information
268         docstring htmlstyles_;
269         /// the paragraph style to use for TOCs, Bibliography, etc
270         mutable docstring html_toc_section_;
271         /// latex packages loaded by document class.
272         std::set<std::string> provides_;
273         /// latex packages requested by document class.
274         std::set<std::string> requires_;
275         /// default modules wanted by document class
276         LayoutModuleList default_modules_;
277         /// modules provided by document class
278         LayoutModuleList provided_modules_;
279         /// modules excluded by document class
280         LayoutModuleList excluded_modules_;
281         ///
282         unsigned int columns_;
283         ///
284         PageSides sides_;
285         /// header depth to have numbering
286         int secnumdepth_;
287         /// header depth to appear in table of contents
288         int tocdepth_;
289         /// Can be LaTeX, DocBook, etc.
290         OutputType outputType_;
291         /// Can be latex, docbook ... (the name of a format)
292         std::string outputFormat_;
293         /** Base font. The paragraph and layout fonts are resolved against
294             this font. This has to be fully instantiated. Attributes
295             FONT_INHERIT, FONT_IGNORE, and FONT_TOGGLE are
296             extremely illegal.
297         */
298         FontInfo defaultfont_;
299         /// Text that dictates how wide the left margin is on the screen
300         docstring leftmargin_;
301         /// Text that dictates how wide the right margin is on the screen
302         docstring rightmargin_;
303         /// The type of command used to produce a title
304         TitleLatexType titletype_;
305         /// The name of the title command
306         std::string titlename_;
307         /// Input layouts available to this layout
308         InsetLayouts insetlayoutlist_;
309         /// The minimal TocLevel of sectioning layouts
310         int min_toclevel_;
311         /// The maximal TocLevel of sectioning layouts
312         int max_toclevel_;
313         /// Citation formatting information
314         std::map<std::string, std::string> cite_formats_;
315         /// Citation macros
316         std::map<std::string, std::string> cite_macros_;
317 private:
318         ///////////////////////////////////////////////////////////////////
319         // helper routines for reading layout files
320         ///////////////////////////////////////////////////////////////////
321         ///
322         bool deleteLayout(docstring const &);
323         ///
324         bool convertLayoutFormat(support::FileName const &, ReadType);
325         /// Reads the layout file without running layout2layout.
326         ReturnValues readWithoutConv(support::FileName const & filename, ReadType rt);
327         /// \return true for success.
328         bool readStyle(Lexer &, Layout &) const;
329         ///
330         void readOutputType(Lexer &);
331         ///
332         void readTitleType(Lexer &);
333         ///
334         void readMaxCounter(Lexer &);
335         ///
336         void readClassOptions(Lexer &);
337         ///
338         void readCharStyle(Lexer &, std::string const &);
339         ///
340         bool readFloat(Lexer &);
341         ///
342         void readCiteFormat(Lexer &);
343 };
344
345
346 /// A DocumentClass represents the layout information associated with a
347 /// Buffer. It is based upon a LayoutFile, but may be modified by loading
348 /// various Modules.
349 ///
350 /// In that regard, DocumentClass objects are "dynamic". But this is really
351 /// an illusion, since DocumentClass objects are not (currently) changed
352 /// when, say, a new Module is loaded. Rather, the old DocumentClass is
353 /// discarded---actually, it's kept around in case something on the cut
354 /// stack needs it---and a new one is created from scratch.
355 ///
356 /// In the main LyX code, DocumentClass objects are created only by
357 /// DocumentClassBundle, for which see below.
358 ///
359 class DocumentClass : public TextClass, boost::noncopyable {
360 public:
361         ///
362         virtual ~DocumentClass() {}
363
364         ///////////////////////////////////////////////////////////////////
365         // Layout Info
366         ///////////////////////////////////////////////////////////////////
367         /// \return true if there is a Layout with latexname lay
368         bool hasLaTeXLayout(std::string const & lay) const;
369         /// A DocumentClass nevers count as loaded, since it is dynamic
370         virtual bool loaded() { return false; }
371         /// \return the layout object of an inset given by name. If the name
372         /// is not found as such, the part after the ':' is stripped off, and
373         /// searched again. In this way, an error fallback can be provided:
374         /// An erroneous 'CharStyle:badname' (e.g., after a documentclass switch)
375         /// will invoke the layout object defined by name = 'CharStyle'.
376         /// If that doesn't work either, an empty object returns (shouldn't
377         /// happen).  -- Idea JMarc, comment MV
378         InsetLayout const & insetLayout(docstring const & name) const;
379         /// a plain inset layout for use as a default
380         static InsetLayout const & plainInsetLayout() { return plain_insetlayout_; }
381         /// add a new layout \c name if it does not exist in layoutlist_
382         /// \return whether we had to add one.
383         bool addLayoutIfNeeded(docstring const & name) const;
384
385         ///////////////////////////////////////////////////////////////////
386         // accessors
387         ///////////////////////////////////////////////////////////////////
388         /// the list of floats defined in the document class
389         FloatList const & floats() const { return floatlist_; }
390         ///
391         Counters & counters() const { return counters_; }
392         ///
393         std::string const & opt_fontsize() const { return opt_fontsize_; }
394         ///
395         std::string const & opt_pagestyle() const { return opt_pagestyle_; }
396         ///
397         std::string const & options() const { return options_; }
398         ///
399         std::string const & class_header() const { return class_header_; }
400         ///
401         std::string const & pagestyle() const { return pagestyle_; }
402         ///
403         docstring const & preamble() const { return preamble_; }
404         ///
405         docstring const & htmlpreamble() const { return htmlpreamble_; }
406         ///
407         docstring const & htmlstyles() const { return htmlstyles_; }
408         /// the paragraph style to use for TOCs, Bibliography, etc
409         /// we will attempt to calculate this if it was not given
410         Layout const & htmlTOCLayout() const;
411         /// is this feature already provided by the class?
412         bool provides(std::string const & p) const;
413         /// features required by the class?
414         std::set<std::string> const & requires() const { return requires_; }
415         ///
416         unsigned int columns() const { return columns_; }
417         ///
418         PageSides sides() const { return sides_; }
419         ///
420         int secnumdepth() const { return secnumdepth_; }
421         ///
422         int tocdepth() const { return tocdepth_; }
423         ///
424         FontInfo const & defaultfont() const { return defaultfont_; }
425         /// Text that dictates how wide the left margin is on the screen
426         docstring const & leftmargin() const { return leftmargin_; }
427         /// Text that dictates how wide the right margin is on the screen
428         docstring const & rightmargin() const { return rightmargin_; }
429         /// The type of command used to produce a title
430         TitleLatexType titletype() const { return titletype_; }
431         /// The name of the title command
432         std::string const & titlename() const { return titlename_; }
433         ///
434         int size() const { return layoutlist_.size(); }
435         /// The minimal TocLevel of sectioning layouts
436         int min_toclevel() const { return min_toclevel_; }
437         /// The maximal TocLevel of sectioning layouts
438         int max_toclevel() const { return max_toclevel_; }
439         /// returns true if the class has a ToC structure
440         bool hasTocLevels() const;
441         ///
442         std::string const & getCiteFormat(std::string const & entry_type) const;
443         ///
444         std::string const & getCiteMacro(std::string const & macro) const;
445 protected:
446         /// Constructs a DocumentClass based upon a LayoutFile.
447         DocumentClass(LayoutFile const & tc);
448         /// Needed in tex2lyx
449         DocumentClass() {}
450 private:
451         /// The only class that can create a DocumentClass is
452         /// DocumentClassBundle, which calls the protected constructor.
453         friend class DocumentClassBundle;
454         ///
455         static InsetLayout plain_insetlayout_;
456 };
457
458
459 /// DocumentClassBundle is a container for DocumentClass objects, so that
460 /// they stay in memory for use by Insets, CutAndPaste, and the like, even
461 /// when their associated Buffers are destroyed.
462 /// FIXME Some sort of garbage collection or reference counting wouldn't
463 /// be a bad idea here. It might be enough to check when a Buffer is closed
464 /// (or makeDocumentClass is called) whether the old DocumentClass is in use
465 /// anywhere.
466 ///
467 /// This is a singleton class. Its sole instance is accessed via
468 /// DocumentClassBundle::get().
469 class DocumentClassBundle : boost::noncopyable {
470 public:
471         /// \return The sole instance of this class.
472         static DocumentClassBundle & get();
473         /// \return A new DocumentClass based on baseClass, with info added
474         /// from the modules in modlist.
475         DocumentClass & makeDocumentClass(LayoutFile const & baseClass,
476                         LayoutModuleList const & modlist);
477 private:
478         /// control instantiation
479         DocumentClassBundle() {}
480         /// clean up
481         ~DocumentClassBundle();
482         /// \return Reference to a new DocumentClass equal to baseClass
483         DocumentClass & newClass(LayoutFile const & baseClass);
484         ///
485         std::vector<DocumentClass *> documentClasses_;
486 };
487
488
489 /// convert page sides option to text 1 or 2
490 std::ostream & operator<<(std::ostream & os, PageSides p);
491
492 /// current format of layout files
493 extern int const LAYOUT_FORMAT;
494
495
496 } // namespace lyx
497
498 #endif