]> git.lyx.org Git - lyx.git/blob - src/BufferParams.h
Merge branch 'master' of git.lyx.org:lyx
[lyx.git] / src / BufferParams.h
1 // -*- C++ -*-
2 /**
3  * \file BufferParams.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 John Levon
10  * \author André Pönitz
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #ifndef BUFFERPARAMS_H
16 #define BUFFERPARAMS_H
17
18 #include "Author.h"
19 #include "Citation.h"
20 #include "DocumentClassPtr.h"
21 #include "Format.h"
22 #include "LayoutModuleList.h"
23 #include "OutputParams.h"
24 #include "paper.h"
25
26 #include "insets/InsetQuotes.h"
27
28 #include "support/copied_ptr.h"
29
30 #include <map>
31 #include <vector>
32
33 namespace lyx {
34
35 namespace support { class FileName; }
36
37 class BranchList;
38 class Bullet;
39 class DocumentClass;
40 class Encoding;
41 class Font;
42 class HSpace;
43 class IndicesList;
44 class Language;
45 class LayoutFile;
46 class LayoutFileIndex;
47 class Lexer;
48 class PDFOptions;
49 class Spacing;
50 class VSpace;
51
52 /** Buffer parameters.
53  *  This class contains all the parameters for this buffer's use. Some
54  *  work needs to be done on this class to make it nice. Now everything
55  *  is in public.
56  */
57 class BufferParams {
58 public:
59         ///
60         enum ParagraphSeparation {
61                 ///
62                 ParagraphIndentSeparation,
63                 ///
64                 ParagraphSkipSeparation
65         };
66         ///
67         BufferParams();
68
69         /// get l10n translated to the buffers language
70         docstring B_(std::string const & l10n) const;
71
72         /// read a header token, if unrecognised, return it or an unknown class name
73         std::string readToken(Lexer & lex,
74                 std::string const & token, ///< token to read.
75                 support::FileName const & filepath);
76
77         ///
78         void writeFile(std::ostream &, Buffer const *) const;
79
80         /// check what features are implied by the buffer parameters.
81         void validate(LaTeXFeatures &) const;
82
83         /** \returns true if the babel package is used (interrogates
84          *  the BufferParams, a LyXRC variable, and the document class).
85          *  This returned value can then be passed to the insets...
86          */
87         bool writeLaTeX(otexstream &, LaTeXFeatures &,
88                         support::FileName const &) const;
89
90         ///
91         void useClassDefaults();
92         ///
93         bool hasClassDefaults() const;
94
95         ///
96         HSpace const & getIndentation() const;
97         ///
98         void setIndentation(HSpace const & indent);
99         ///
100         VSpace const & getDefSkip() const;
101         ///
102         void setDefSkip(VSpace const & vs);
103
104         /** Whether paragraphs are separated by using a indent like in
105          *  articles or by using a little skip like in letters.
106          */
107         ParagraphSeparation paragraph_separation;
108         ///
109         InsetQuotes::QuoteLanguage quotes_language;
110         ///
111         std::string fontsize;
112         /// Get the LayoutFile this document is using.
113         LayoutFile const * baseClass() const;
114         ///
115         LayoutFileIndex const & baseClassID() const;
116         /// Set the LyX layout file this document is using.
117         /// NOTE: This does not call makeDocumentClass() to update the local
118         /// DocumentClass. That needs to be done manually.
119         /// \param classname: the name of the layout file
120         bool setBaseClass(std::string const & classname);
121         /// Adds the module information to the baseClass information to
122         /// create our local DocumentClass.
123         /// NOTE: This should NEVER be called externally unless one immediately goes
124         /// on to class BufferView::updateDocumentClass(). The exception, of course,
125         /// is in GuiDocument, where we use a BufferParams simply to hold a copy of
126         /// the parameters from the active Buffer.
127         void makeDocumentClass(bool const clone = false);
128         /// Returns the DocumentClass currently in use: the BaseClass as modified
129         /// by modules.
130         DocumentClass const & documentClass() const;
131         /// \return A pointer to the DocumentClass currently in use: the BaseClass
132         /// as modified by modules.
133         DocumentClassConstPtr documentClassPtr() const;
134         /// This bypasses the baseClass and sets the textClass directly.
135         /// Should be called with care and would be better not being here,
136         /// but it seems to be needed by CutAndPaste::putClipboard().
137         void setDocumentClass(DocumentClassConstPtr);
138         /// List of modules in use
139         LayoutModuleList const & getModules() const { return layout_modules_; }
140         /// List of default modules the user has removed
141         std::list<std::string> const & getRemovedModules() const
142                         { return removed_modules_; }
143         ///
144         /// Add a module to the list of modules in use. This checks only that the
145         /// module is not already in the list, so use layoutModuleCanBeAdeed first 
146         /// if you want to check for compatibility.
147         /// \return true if module was successfully added.
148         bool addLayoutModule(std::string const & modName);
149         /// checks to make sure module's requriements are satisfied, that it does
150         /// not conflict with already-present modules, isn't already loaded, etc.
151         bool layoutModuleCanBeAdded(std::string const & modName) const;
152         /// same, but for citaton modules.
153         bool citationModuleCanBeAdded(std::string const & modName) const;
154         ///
155         void addRemovedModule(std::string const & modName)
156                         { removed_modules_.push_back(modName); }
157         /// Clear the list
158         void clearLayoutModules() { layout_modules_.clear(); }
159         /// Clear the removed module list
160         void clearRemovedModules() { removed_modules_.clear(); }
161         /// Get the local layouts
162         std::string getLocalLayout(bool) const;
163         /// Set the local layouts
164         void setLocalLayout(std::string const &, bool);
165
166         /// returns \c true if the buffer contains a LaTeX document
167         bool isLatex() const;
168         /// returns \c true if the buffer contains a DocBook document
169         bool isDocBook() const;
170         /// returns \c true if the buffer contains a Wed document
171         bool isLiterate() const;
172
173         /// return the format of the buffer on a string
174         std::string bufferFormat() const;
175         /// return the default output format of the current backend
176         std::string getDefaultOutputFormat() const;
177         /// return the output flavor of \p format or the default
178         OutputParams::FLAVOR getOutputFlavor(
179                   std::string const & format = std::string()) const;
180         ///
181         bool isExportable(std::string const & format) const;
182         ///
183         std::vector<Format const *> exportableFormats(bool only_viewable) const;
184         ///
185         bool isExportableFormat(std::string const & format) const;
186         /// the backends appropriate for use with this document.
187         /// so, e.g., latex is excluded , if we're using non-TeX fonts
188         std::vector<std::string> backends() const;
189
190         /// List of included children (for includeonly)
191         std::list<std::string> const & getIncludedChildren() const
192                         { return included_children_; }
193         ///
194         void addIncludedChildren(std::string const & child)
195                         { included_children_.push_back(child); }
196         /// Clear the list of included children
197         void clearIncludedChildren() { included_children_.clear(); }
198
199         /// update aux files of unincluded children (with \includeonly)
200         bool maintain_unincluded_children;
201
202         /// returns the main font for the buffer (document)
203         Font const getFont() const;
204
205         /// translate quote style string to enum value
206         InsetQuotes::QuoteLanguage getQuoteStyle(std::string const & qs) const;
207
208         /* these are for the PaperLayout */
209         /// the papersize
210         PAPER_SIZE papersize;
211         ///
212         PAPER_ORIENTATION orientation;
213         /// use custom margins
214         bool use_geometry;
215         ///
216         std::string paperwidth;
217         ///
218         std::string paperheight;
219         ///
220         std::string leftmargin;
221         ///
222         std::string topmargin;
223         ///
224         std::string rightmargin;
225         ///
226         std::string bottommargin;
227         ///
228         std::string headheight;
229         ///
230         std::string headsep;
231         ///
232         std::string footskip;
233         ///
234         std::string columnsep;
235
236         /* some LaTeX options */
237         /// The graphics driver
238         std::string graphics_driver;
239         /// The default output format
240         std::string default_output_format;
241         /// customized bibliography processor
242         std::string bibtex_command;
243         /// customized index processor
244         std::string index_command;
245         /// font encoding(s) requested for this document
246         std::string fontenc;
247         /// the rm font: [0] for TeX fonts, [1] for non-TeX fonts
248         std::string fonts_roman[2];
249         /// the rm font
250         std::string const & fontsRoman() const { return fonts_roman[useNonTeXFonts]; }
251         /// the sf font: [0] for TeX fonts, [1] for non-TeX fonts
252         std::string fonts_sans[2];
253         /// the sf font
254         std::string const & fontsSans() const { return fonts_sans[useNonTeXFonts]; }
255         /// the tt font: [0] for TeX fonts, [1] for non-TeX fonts
256         std::string fonts_typewriter[2];
257         /// the tt font
258         std::string const & fontsTypewriter() const { return fonts_typewriter[useNonTeXFonts]; }
259         /// the math font: [0] for TeX fonts, [1] for non-TeX fonts
260         std::string fonts_math[2];
261         /// the math font
262         std::string const & fontsMath() const { return fonts_math[useNonTeXFonts]; }
263         /// the default family (rm, sf, tt)
264         std::string fonts_default_family;
265         /// use the fonts of the OS (OpenType, True Type) directly
266         bool useNonTeXFonts;
267         /// use expert Small Caps
268         bool fonts_expert_sc;
269         /// use Old Style Figures
270         bool fonts_old_figures;
271         /// the scale factor of the sf font: [0] for TeX fonts, [1] for non-TeX fonts
272         int fonts_sans_scale[2];
273         /// the scale factor of the sf font
274         int fontsSansScale() const { return fonts_sans_scale[useNonTeXFonts]; }
275         /// the scale factor of the tt font: [0] for TeX fonts, [1] for non-TeX fonts
276         int fonts_typewriter_scale[2];
277         /// the scale factor of the tt font
278         int fontsTypewriterScale() const { return fonts_typewriter_scale[useNonTeXFonts]; }
279         /// the font used by the CJK command
280         std::string fonts_cjk;
281         /// use LaTeX microtype package
282         bool use_microtype;
283         ///
284         Spacing & spacing();
285         Spacing const & spacing() const;
286         ///
287         int secnumdepth;
288         ///
289         int tocdepth;
290         ///
291         Language const * language;
292         /// language package
293         std::string lang_package;
294         /// BranchList:
295         BranchList & branchlist();
296         BranchList const & branchlist() const;
297         /// IndicesList:
298         IndicesList & indiceslist();
299         IndicesList const & indiceslist() const;
300         /**
301          * The LyX name of the input encoding for LaTeX. This can be one of
302          * - \c auto: find out the input encoding from the used languages
303          * - \c default: ditto
304          * - any encoding defined in the file lib/encodings
305          * The encoding of the LyX file is always utf8 and has nothing to
306          * do with this setting.
307          * The difference between \c auto and \c default is that \c auto also
308          * causes loading of the inputenc package, while \c default does not.
309          * \c default will not work unless the user takes additional measures
310          * (such as using special environments like the CJK environment from
311          * CJK.sty).
312          * \c default can be seen as an unspecified 8bit encoding, since LyX
313          * does not interpret it in any way apart from display on screen.
314          */
315         std::string inputenc;
316         /// The main encoding used by this buffer for LaTeX output.
317         /// Individual pieces of text can use different encodings.
318         /// Output for XeTeX with 8-bit TeX fonts uses ASCII (set at runtime)
319         /// instead of the value returned by this function.
320         Encoding const & encoding() const;
321         ///
322         std::string origin;
323         ///
324         std::string preamble;
325         ///
326         std::string options;
327         /// use the class options defined in the layout?
328         bool use_default_options;
329         ///
330         std::string master;
331         ///
332         bool suppress_date;
333         ///
334         std::string float_placement;
335         ///
336         unsigned int columns;
337         ///
338         bool justification;
339         /// parameters for the listings package
340         std::string listings_params;
341         ///
342         PageSides sides;
343         ///
344         std::string pagestyle;
345         ///
346         RGBColor backgroundcolor;
347         ///
348         bool isbackgroundcolor;
349         ///
350         RGBColor fontcolor;
351         ///
352         bool isfontcolor;
353         ///
354         RGBColor notefontcolor;
355         ///
356         RGBColor boxbgcolor;
357         /// \param index should lie in the range 0 <= \c index <= 3.
358         Bullet & temp_bullet(size_type index);
359         Bullet const & temp_bullet(size_type index) const;
360         /// \param index should lie in the range 0 <= \c index <= 3.
361         Bullet & user_defined_bullet(size_type index);
362         Bullet const & user_defined_bullet(size_type index) const;
363
364         /// Whether to load a package such as amsmath or esint.
365         /// The enum values must not be changed (file format!)
366         enum Package {
367                 /// Don't load the package. For experts only.
368                 package_off = 0,
369                 /// Load the package if needed (recommended)
370                 package_auto = 1,
371                 /// Always load the package (e.g. if the document contains
372                 /// some ERT that needs the package)
373                 package_on = 2
374         };
375         /// Whether to load a package such as amsmath or esint.
376         Package use_package(std::string const & p) const;
377         /// Set whether to load a package such as amsmath or esint.
378         void use_package(std::string const & p, Package u);
379         /// All packages that can be switched on or off
380         static std::map<std::string, std::string> const & auto_packages();
381         /// Split bibliography?
382         bool use_bibtopic;
383         /// Split the index?
384         bool use_indices;
385         /// Save trensient properties?
386         bool save_transient_properties;
387         /// revision tracking for this buffer ? (this is a transient property)
388         bool track_changes;
389         /** This param decides whether change tracking marks should be used
390          *  in output (irrespective of how these marks are actually defined;
391          *  for instance, they may differ for DVI and PDF generation)
392          *  This is a transient property.
393          */
394         bool output_changes;
395         ///
396         bool compressed;
397
398         /// the author list for the document
399         AuthorList & authors();
400         AuthorList const & authors() const;
401         void addAuthor(Author a);
402
403         /// map of the file's author IDs to AuthorList indexes
404         typedef std::map<int, int> AuthorMap;
405         AuthorMap author_map_;
406
407         /// the buffer's active font encoding
408         std::string const font_encoding() const;
409         /// all font encodings requested by the prefs/document/main language.
410         /// This does NOT include font encodings required by secondary languages
411         std::vector<std::string> const font_encodings() const;
412
413         ///
414         std::string const dvips_options() const;
415         /** The return value of paperSizeName() depends on the
416          *  purpose for which the paper size is needed, since they
417          *  support different subsets of paper sizes.
418         */
419         enum PapersizePurpose {
420                 ///
421                 DVIPS,
422                 ///
423                 DVIPDFM,
424                 ///
425                 XDVI
426         };
427         ///
428         std::string paperSizeName(PapersizePurpose purpose) const;
429         /// set up if and how babel is called
430         std::string babelCall(std::string const & lang_opts, bool const langoptions) const;
431         /// return supported drivers for specific packages
432         docstring getGraphicsDriver(std::string const & package) const;
433         /// handle inputenc etc.
434         void writeEncodingPreamble(otexstream & os, LaTeXFeatures & features) const;
435         ///
436         std::string const parseFontName(std::string const & name) const;
437         /// set up the document fonts
438         std::string const loadFonts(LaTeXFeatures & features) const;
439
440         /// the cite engine modules
441         LayoutModuleList const & citeEngine() const
442                 { return cite_engine_; }
443         /// the type of cite engine (authoryear or numerical)
444         CiteEngineType const & citeEngineType() const
445                 { return cite_engine_type_; }
446         /// add the module to the cite engine modules
447         bool addCiteEngine(std::string const &);
448         /// add the modules to the cite engine modules
449         bool addCiteEngine(std::vector<std::string> const &);
450         /// clear the list of cite engine modules
451         void clearCiteEngine() { cite_engine_.clear(); }
452         /// set the cite engine module
453         void setCiteEngine(std::string const &);
454         /// set the cite engine modules
455         void setCiteEngine(std::vector<std::string> const &);
456         /// set the cite engine type
457         void setCiteEngineType(CiteEngineType const & engine_type)
458                 { cite_engine_type_ = engine_type; }
459
460         /// the available citation commands
461         std::vector<std::string> citeCommands() const;
462         /// the available citation styles
463         std::vector<CitationStyle> citeStyles() const;
464
465         /// the default BibTeX style file for the document
466         std::string biblio_style;
467         /// the default BibTeX style file from the TextClass
468         std::string const & defaultBiblioStyle() const;
469         /// whether the BibTeX style supports full author lists
470         bool const & fullAuthorList() const;
471
472         /// options for pdf output
473         PDFOptions & pdfoptions();
474         PDFOptions const & pdfoptions() const;
475
476         // do not change these values. we rely upon them.
477         enum MathOutput {
478                 MathML = 0,
479                 HTML = 1,
480                 Images = 2,
481                 LaTeX = 3
482         };
483         /// what to use for math output. present choices are above
484         MathOutput html_math_output;
485         /// whether to attempt to be XHTML 1.1 compliant or instead be
486         /// a little more mellow
487         bool html_be_strict;
488         ///
489         double html_math_img_scale;
490         ///
491         double display_pixel_ratio;
492         ///
493         std::string html_latex_start;
494         ///
495         std::string html_latex_end;
496         ///
497         bool html_css_as_file;
498         /// generate output usable for reverse/forward search
499         bool output_sync;
500         /// custom LaTeX macro from user instead our own
501         std::string output_sync_macro;
502         /// use refstyle? or prettyref?
503         bool use_refstyle;
504
505         /// Return true if language could be set to lang,
506         /// otherwise return false and do not change language
507         bool setLanguage(std::string const & lang);
508
509 private:
510         ///
511         void readPreamble(Lexer &);
512         ///
513         void readLocalLayout(Lexer &, bool);
514         ///
515         void readLanguage(Lexer &);
516         ///
517         void readGraphicsDriver(Lexer &);
518         ///
519         void readBullets(Lexer &);
520         ///
521         void readBulletsLaTeX(Lexer &);
522         ///
523         void readModules(Lexer &);
524         ///
525         void readRemovedModules(Lexer &);
526         ///
527         void readIncludeonly(Lexer &);
528         /// A cache for the default flavors
529         typedef std::map<std::string, OutputParams::FLAVOR> DefaultFlavorCache;
530         ///
531         mutable DefaultFlavorCache default_flavors_;
532         /// the cite engine modules
533         LayoutModuleList cite_engine_;
534         /// the type of cite engine (authoryear or numerical)
535         CiteEngineType cite_engine_type_;
536         ///
537         DocumentClassPtr doc_class_;
538         ///
539         LayoutModuleList layout_modules_;
540         /// this is for modules that are required by the document class but that
541         /// the user has chosen not to use
542         std::list<std::string> removed_modules_;
543         /// The local layouts without the forced ones
544         std::string local_layout_;
545         /// Forced local layouts only for reading (use getLocalLayout() instead)
546         std::string forced_local_layout_;
547
548         /// the list of included children (for includeonly)
549         std::list<std::string> included_children_;
550
551         typedef std::map<std::string, Package> PackageMap;
552         /** Whether and how to load packages like amsmath, esint, mhchem,
553          *  mathdots, stackrel, stmaryrd and undertilde.
554          */
555         PackageMap use_packages;
556
557         /** Use the Pimpl idiom to hide those member variables that would otherwise
558          *  drag in other header files.
559          */
560         class Impl;
561         class MemoryTraits {
562         public:
563                 static Impl * clone(Impl const *);
564                 static void destroy(Impl *);
565         };
566         support::copied_ptr<Impl, MemoryTraits> pimpl_;
567
568 };
569
570 } // namespace lyx
571
572 #endif