]> git.lyx.org Git - lyx.git/blob - src/BufferParams.h
Use \babelfonts only if babel >= 3.15 is available.
[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 IndicesList;
43 class Language;
44 class LayoutFile;
45 class LayoutFileIndex;
46 class Length;
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         Length const & getParIndent() const;
97         ///
98         void setParIndent(Length const & indent);
99         ///
100         VSpace const & getDefSkip() const;
101         ///
102         void setDefSkip(VSpace const & vs);
103
104         ///
105         Length const & getMathIndent() const;
106         ///
107         void setMathIndent(Length const & indent);
108
109         /// Whether formulas are indented
110         bool is_math_indent;
111
112
113         enum  MathNumber { DEFAULT, LEFT, RIGHT };
114         /// number formulas on left/right/default
115         MathNumber math_numbering_side;
116
117         /// Convenience function for display: like math_number, but
118         /// DEFAULT is replaced by the best guess we have.
119         MathNumber getMathNumber() const;
120
121         /** Whether paragraphs are separated by using a indent like in
122          *  articles or by using a little skip like in letters.
123          */
124         ParagraphSeparation paragraph_separation;
125         ///
126         InsetQuotesParams::QuoteStyle quotes_style;
127         ///
128         bool dynamic_quotes;
129         ///
130         std::string fontsize;
131         /// Get the LayoutFile this document is using.
132         LayoutFile const * baseClass() const;
133         ///
134         LayoutFileIndex const & baseClassID() const;
135         /// Set the LyX layout file this document is using.
136         /// NOTE: This does not call makeDocumentClass() to update the local
137         /// DocumentClass. That needs to be done manually.
138         /// \param classname: the name of the layout file
139         /// \param path: non-empty only for local layout files
140         bool setBaseClass(std::string const & classname,
141                           std::string const & path = std::string());
142         /// Adds the module information to the baseClass information to
143         /// create our local DocumentClass.
144         /// NOTE: This should NEVER be called externally unless one immediately goes
145         /// on to class BufferView::updateDocumentClass(). The exception, of course,
146         /// is in GuiDocument, where we use a BufferParams simply to hold a copy of
147         /// the parameters from the active Buffer.
148         void makeDocumentClass(bool const clone = false);
149         /// Returns the DocumentClass currently in use: the BaseClass as modified
150         /// by modules.
151         DocumentClass const & documentClass() const;
152         /// \return A pointer to the DocumentClass currently in use: the BaseClass
153         /// as modified by modules.
154         DocumentClassConstPtr documentClassPtr() const;
155         /// This bypasses the baseClass and sets the textClass directly.
156         /// Should be called with care and would be better not being here,
157         /// but it seems to be needed by CutAndPaste::putClipboard().
158         void setDocumentClass(DocumentClassConstPtr);
159         /// List of modules in use
160         LayoutModuleList const & getModules() const { return layout_modules_; }
161         /// List of default modules the user has removed
162         std::list<std::string> const & getRemovedModules() const
163                         { return removed_modules_; }
164         ///
165         /// Add a module to the list of modules in use. This checks only that the
166         /// module is not already in the list, so use layoutModuleCanBeAdeed first
167         /// if you want to check for compatibility.
168         /// \return true if module was successfully added.
169         bool addLayoutModule(std::string const & modName);
170         /// checks to make sure module's requriements are satisfied, that it does
171         /// not conflict with already-present modules, isn't already loaded, etc.
172         bool layoutModuleCanBeAdded(std::string const & modName) const;
173         ///
174         void addRemovedModule(std::string const & modName)
175                         { removed_modules_.push_back(modName); }
176         /// Clear the list
177         void clearLayoutModules() { layout_modules_.clear(); }
178         /// Clear the removed module list
179         void clearRemovedModules() { removed_modules_.clear(); }
180         /// Get the local layouts
181         docstring getLocalLayout(bool forced) const;
182         /// Set the local layouts
183         void setLocalLayout(docstring const & layout, bool forced);
184
185         /// returns \c true if the buffer contains a LaTeX document
186         bool isLatex() const;
187         /// returns \c true if the buffer contains a DocBook document
188         bool isDocBook() const;
189         /// returns \c true if the buffer contains a Wed document
190         bool isLiterate() const;
191
192         /// return the format of the buffer on a string
193         std::string bufferFormat() const;
194         /// return the default output format of the current backend
195         std::string getDefaultOutputFormat() const;
196         /// return the output flavor of \p format or the default
197         OutputParams::FLAVOR getOutputFlavor(
198                   std::string const & format = std::string()) const;
199         ///
200         bool isExportable(std::string const & format, bool need_viewable) const;
201         ///
202         std::vector<const Format *> const & exportableFormats(bool only_viewable) const;
203         /// the backends appropriate for use with this document.
204         /// so, e.g., latex is excluded , if we're using non-TeX fonts
205         std::vector<std::string> backends() const;
206
207         /// List of included children (for includeonly)
208         std::list<std::string> const & getIncludedChildren() const
209                         { return included_children_; }
210         ///
211         void addIncludedChildren(std::string const & child)
212                         { included_children_.push_back(child); }
213         /// Clear the list of included children
214         void clearIncludedChildren() { included_children_.clear(); }
215
216         /// update aux files of unincluded children (with \includeonly)
217         bool maintain_unincluded_children;
218
219         /// returns the main font for the buffer (document)
220         Font const getFont() const;
221
222         /// translate quote style string to enum value
223         InsetQuotesParams::QuoteStyle getQuoteStyle(std::string const & qs) const;
224
225         /* these are for the PaperLayout */
226         /// the papersize
227         PAPER_SIZE papersize;
228         ///
229         PAPER_ORIENTATION orientation;
230         /// use custom margins
231         bool use_geometry;
232         ///
233         std::string paperwidth;
234         ///
235         std::string paperheight;
236         ///
237         std::string leftmargin;
238         ///
239         std::string topmargin;
240         ///
241         std::string rightmargin;
242         ///
243         std::string bottommargin;
244         ///
245         std::string headheight;
246         ///
247         std::string headsep;
248         ///
249         std::string footskip;
250         ///
251         std::string columnsep;
252
253         /* some LaTeX options */
254         /// The graphics driver
255         std::string graphics_driver;
256         /// The default output format
257         std::string default_output_format;
258         /// customized bibliography processor
259         std::string bibtex_command;
260         /// customized index processor
261         std::string index_command;
262         /// font encoding(s) requested for this document
263         std::string fontenc;
264         /// the rm font: [0] for TeX fonts, [1] for non-TeX fonts
265         std::string fonts_roman[2];
266         /// the rm font
267         std::string const & fontsRoman() const { return fonts_roman[useNonTeXFonts]; }
268         /// the sf font: [0] for TeX fonts, [1] for non-TeX fonts
269         std::string fonts_sans[2];
270         /// the sf font
271         std::string const & fontsSans() const { return fonts_sans[useNonTeXFonts]; }
272         /// the tt font: [0] for TeX fonts, [1] for non-TeX fonts
273         std::string fonts_typewriter[2];
274         /// the tt font
275         std::string const & fontsTypewriter() const { return fonts_typewriter[useNonTeXFonts]; }
276         /// the math font: [0] for TeX fonts, [1] for non-TeX fonts
277         std::string fonts_math[2];
278         /// the math font
279         std::string const & fontsMath() const { return fonts_math[useNonTeXFonts]; }
280         /// the default family (rm, sf, tt)
281         std::string fonts_default_family;
282         /// use the fonts of the OS (OpenType, True Type) directly
283         bool useNonTeXFonts;
284         /// use expert Small Caps
285         bool fonts_expert_sc;
286         /// use Old Style Figures
287         bool fonts_old_figures;
288         /// the options for the roman font
289         std::string font_roman_opts;
290         /// the scale factor of the sf font: [0] for TeX fonts, [1] for non-TeX fonts
291         int fonts_sans_scale[2];
292         /// the scale factor of the sf font
293         int fontsSansScale() const { return fonts_sans_scale[useNonTeXFonts]; }
294         // the options for the sans font
295         std::string font_sans_opts;
296         /// the scale factor of the tt font: [0] for TeX fonts, [1] for non-TeX fonts
297         int fonts_typewriter_scale[2];
298         /// the scale factor of the tt font
299         int fontsTypewriterScale() const { return fonts_typewriter_scale[useNonTeXFonts]; }
300         // the options for the typewriter font
301         std::string font_typewriter_opts;
302         /// the font used by the CJK command
303         std::string fonts_cjk;
304         /// use LaTeX microtype package
305         bool use_microtype;
306         /// use font ligatures for en- and em-dashes
307         bool use_dash_ligatures;
308         ///
309         Spacing & spacing();
310         Spacing const & spacing() const;
311         ///
312         int secnumdepth;
313         ///
314         int tocdepth;
315         ///
316         Language const * language;
317         /// language package
318         std::string lang_package;
319         /// BranchList:
320         BranchList & branchlist();
321         BranchList const & branchlist() const;
322         /// IndicesList:
323         IndicesList & indiceslist();
324         IndicesList const & indiceslist() const;
325         /**
326          * The LyX name of the input encoding for LaTeX. This can be one of
327          * - \c auto: find out the input encoding from the used languages
328          * - \c default: ditto
329          * - any encoding defined in the file lib/encodings
330          * The encoding of the LyX file is always utf8 and has nothing to
331          * do with this setting.
332          * The difference between \c auto and \c default is that \c auto also
333          * causes loading of the inputenc package and writes a \inputenc{} command
334          * to the file when switching to another encoding, while \c default does not.
335          * \c default will not work unless the user takes additional measures
336          * (such as using special environments like the CJK environment from
337          * CJK.sty).
338          * \c default can be seen as an unspecified mix of 8bit encodings, since LyX
339          * does not interpret it in any way apart from display on screen.
340          */
341         std::string inputenc;
342         /// The main encoding used by this buffer for LaTeX output.
343         /// If the main encoding is \c auto or \c default,
344         /// individual pieces of text can use different encodings.
345         /// Output for XeTeX with 8-bit TeX fonts uses ASCII (set at runtime)
346         /// instead of the value returned by this function (cf. #10600).
347         Encoding const & encoding() const;
348         ///
349         std::string origin;
350         ///
351         docstring preamble;
352         ///
353         std::string options;
354         /// use the class options defined in the layout?
355         bool use_default_options;
356         ///
357         std::string master;
358         ///
359         bool suppress_date;
360         ///
361         std::string float_placement;
362         ///
363         std::string float_alignment;
364         ///
365         unsigned int columns;
366         ///
367         bool justification;
368         /// parameters for the listings package
369         std::string listings_params;
370         ///
371         PageSides sides;
372         ///
373         std::string pagestyle;
374         ///
375         std::string tablestyle;
376         ///
377         RGBColor backgroundcolor;
378         ///
379         bool isbackgroundcolor;
380         ///
381         RGBColor fontcolor;
382         ///
383         bool isfontcolor;
384         ///
385         RGBColor notefontcolor;
386         ///
387         RGBColor boxbgcolor;
388         /// \param index should lie in the range 0 <= \c index <= 3.
389         Bullet & temp_bullet(size_type index);
390         Bullet const & temp_bullet(size_type index) const;
391         /// \param index should lie in the range 0 <= \c index <= 3.
392         Bullet & user_defined_bullet(size_type index);
393         Bullet const & user_defined_bullet(size_type index) const;
394
395         /// Whether to load a package such as amsmath or esint.
396         /// The enum values must not be changed (file format!)
397         enum Package {
398                 /// Don't load the package. For experts only.
399                 package_off = 0,
400                 /// Load the package if needed (recommended)
401                 package_auto = 1,
402                 /// Always load the package (e.g. if the document contains
403                 /// some ERT that needs the package)
404                 package_on = 2
405         };
406         /// Whether to load a package such as amsmath or esint.
407         Package use_package(std::string const & p) const;
408         /// Set whether to load a package such as amsmath or esint.
409         void use_package(std::string const & p, Package u);
410         /// All packages that can be switched on or off
411         static std::map<std::string, std::string> const & auto_packages();
412         /// Do we use the bibtopic package?
413         bool useBibtopic() const;
414         /// Split bibliography?
415         bool splitbib() const { return use_bibtopic; }
416         /// Set split bibliography
417         void splitbib(bool const b) { use_bibtopic = b; }
418         /// Do we have multiple bibliographies (by chapter etc.)?
419         std::string multibib;
420         /// Split the index?
421         bool use_indices;
422         /// Save transient properties?
423         bool save_transient_properties;
424         /// revision tracking for this buffer ? (this is a transient property)
425         bool track_changes;
426         /** This param decides whether change tracking marks should be used
427          *  in output (irrespective of how these marks are actually defined;
428          *  for instance, they may differ for DVI and PDF generation)
429          *  This is a transient property.
430          */
431         bool output_changes;
432         ///
433         bool compressed;
434
435         /// the author list for the document
436         AuthorList & authors();
437         AuthorList const & authors() const;
438         void addAuthor(Author a);
439
440         /// map of the file's author IDs to AuthorList indexes
441         typedef std::map<int, int> AuthorMap;
442         AuthorMap author_map_;
443
444         /// the buffer's active font encoding
445         std::string const main_font_encoding() const;
446         /// all font encodings requested by the prefs/document/main language.
447         /// This does NOT include font encodings required by secondary languages
448         std::vector<std::string> const font_encodings() const;
449
450         ///
451         std::string const dvips_options() const;
452         /** The return value of paperSizeName() depends on the
453          *  purpose for which the paper size is needed, since they
454          *  support different subsets of paper sizes.
455         */
456         enum PapersizePurpose {
457                 ///
458                 DVIPS,
459                 ///
460                 DVIPDFM,
461                 ///
462                 XDVI
463         };
464         ///
465         std::string paperSizeName(PapersizePurpose purpose) const;
466         /// set up if and how babel is called
467         std::string babelCall(std::string const & lang_opts, bool const langoptions) const;
468         /// return supported drivers for specific packages
469         docstring getGraphicsDriver(std::string const & package) const;
470         /// handle inputenc etc.
471         void writeEncodingPreamble(otexstream & os, LaTeXFeatures & features) const;
472         ///
473         std::string const parseFontName(std::string const & name) const;
474         /// set up the document fonts
475         std::string const loadFonts(LaTeXFeatures & features) const;
476
477         /// the cite engine modules
478         std::string const & citeEngine() const { return cite_engine_; }
479         /// the type of cite engine (authoryear or numerical)
480         CiteEngineType const & citeEngineType() const
481                 { return cite_engine_type_; }
482         /// add the module to the cite engine modules
483         void setCiteEngine(std::string const & eng) { cite_engine_ = eng; }
484         /// set the cite engine type
485         void setCiteEngineType(CiteEngineType const & engine_type)
486                 { cite_engine_type_ = engine_type; }
487
488         /// the available citation commands
489         std::vector<std::string> citeCommands() const;
490         /// the available citation styles
491         std::vector<CitationStyle> citeStyles() const;
492
493         /// Return the actual bibtex command (lyxrc or buffer param)
494         std::string const bibtexCommand() const;
495
496         /// Are we using biblatex?
497         bool useBiblatex() const;
498
499         /// Set the default BibTeX style file for the document
500         void setDefaultBiblioStyle(std::string const & s){ biblio_style = s; }
501         /// Get the default BibTeX style file from the TextClass
502         std::string const & defaultBiblioStyle() const;
503         /// whether the BibTeX style supports full author lists
504         bool const & fullAuthorList() const;
505         /// Check if a citation style is an alias to another style
506         std::string getCiteAlias(std::string const & s) const;
507
508         /// Options of the bibiography package
509         std::string biblio_opts;
510         /// The biblatex bibliography style
511         std::string biblatex_bibstyle;
512         /// The biblatex citation style
513         std::string biblatex_citestyle;
514         /// Set the bib file encoding (for biblatex)
515         void setBibEncoding(std::string const & s) { bib_encoding = s; }
516         /// Get the bib file encoding (for biblatex)
517         std::string const & bibEncoding() const { return bib_encoding; }
518         /// Set encoding for individual bib file (for biblatex)
519         void setBibFileEncoding(std::string const & file, std::string const & enc);
520         ///
521         std::string const bibFileEncoding(std::string const & file) const;
522
523         /// options for pdf output
524         PDFOptions & pdfoptions();
525         PDFOptions const & pdfoptions() const;
526
527         // do not change these values. we rely upon them.
528         enum MathOutput {
529                 MathML = 0,
530                 HTML = 1,
531                 Images = 2,
532                 LaTeX = 3
533         };
534         /// what to use for math output. present choices are above
535         MathOutput html_math_output;
536         /// whether to attempt to be XHTML 1.1 compliant or instead be
537         /// a little more mellow
538         bool html_be_strict;
539         ///
540         double html_math_img_scale;
541         ///
542         double display_pixel_ratio;
543         ///
544         std::string html_latex_start;
545         ///
546         std::string html_latex_end;
547         ///
548         bool html_css_as_file;
549         /// allow the LaTeX backend to run external programs
550         bool shell_escape;
551         /// generate output usable for reverse/forward search
552         bool output_sync;
553         /// custom LaTeX macro from user instead our own
554         std::string output_sync_macro;
555         /// use refstyle? or prettyref?
556         bool use_refstyle;
557         /// use minted? or listings?
558         bool use_minted;
559         //output line numbering
560         bool use_lineno;
561         //optional params for lineno package
562         std::string lineno_opts;
563
564         /// Return true if language could be set to lang,
565         /// otherwise return false and do not change language
566         bool setLanguage(std::string const & lang);
567         ///
568         void invalidateConverterCache() const;
569         /// Copies over some of the settings from \param bp,
570         /// namely the ones need by Advanced F&R. We don't want
571         /// to copy them all, e.g., not the default master.
572         void copyForAdvFR(BufferParams const & bp);
573
574 private:
575         ///
576         void readPreamble(Lexer &);
577         ///
578         void readLocalLayout(Lexer &, bool);
579         ///
580         void readLanguage(Lexer &);
581         ///
582         void readGraphicsDriver(Lexer &);
583         ///
584         void readBullets(Lexer &);
585         ///
586         void readBulletsLaTeX(Lexer &);
587         ///
588         void readModules(Lexer &);
589         ///
590         void readRemovedModules(Lexer &);
591         ///
592         void readIncludeonly(Lexer &);
593         /// A cache for the default flavors
594         typedef std::map<std::string, OutputParams::FLAVOR> DefaultFlavorCache;
595         ///
596         mutable DefaultFlavorCache default_flavors_;
597         /// the cite engine
598         std::string cite_engine_;
599         /// the type of cite engine (authoryear or numerical)
600         CiteEngineType cite_engine_type_;
601         /// the default BibTeX style file for the document
602         std::string biblio_style;
603         /// The main encoding of the bib files, for Biblatex
604         std::string bib_encoding;
605         /// Individual file encodings, for Biblatex
606         std::map<std::string, std::string> bib_encodings;
607         /// Split bibliography?
608         bool use_bibtopic;
609         ///
610         DocumentClassPtr doc_class_;
611         ///
612         LayoutModuleList layout_modules_;
613         /// this is for modules that are required by the document class but that
614         /// the user has chosen not to use
615         std::list<std::string> removed_modules_;
616         /// The local layouts without the forced ones
617         docstring local_layout_;
618         /// Forced local layouts only for reading (use getLocalLayout() instead)
619         docstring forced_local_layout_;
620
621         /// the list of included children (for includeonly)
622         std::list<std::string> included_children_;
623
624         typedef std::map<std::string, Package> PackageMap;
625         /** Whether and how to load packages like amsmath, esint, mhchem,
626          *  mathdots, stackrel, stmaryrd and undertilde.
627          */
628         PackageMap use_packages;
629
630         /** Use the Pimpl idiom to hide those member variables that would otherwise
631          *  drag in other header files.
632          */
633         class Impl;
634         class MemoryTraits {
635         public:
636                 static Impl * clone(Impl const *);
637                 static void destroy(Impl *);
638         };
639         support::copied_ptr<Impl, MemoryTraits> pimpl_;
640 };
641
642 } // namespace lyx
643
644 #endif