]> git.lyx.org Git - lyx.git/blob - src/bufferparams.h
The Grand Font Selection Redesign:
[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 "lyxtextclass.h"
19 #include "paper.h"
20
21 #include "insets/insetquotes.h"
22
23 #include "support/copied_ptr.h"
24 #include "support/types.h"
25
26 #include <vector>
27
28
29 class AuthorList;
30 class BranchList;
31 class Bullet;
32 class LyXLex;
33 class LatexFeatures;
34 class Spacing;
35 class TexRow;
36 class VSpace;
37 class Language;
38
39
40 namespace lyx {
41 namespace biblio {
42
43 enum CiteEngine {
44         ENGINE_BASIC,
45         ENGINE_NATBIB_AUTHORYEAR,
46         ENGINE_NATBIB_NUMERICAL,
47         ENGINE_JURABIB
48 };
49
50 class CiteEngine_enum {
51         CiteEngine val_;
52 public:
53         CiteEngine_enum(CiteEngine val) : val_(val) {}
54         operator CiteEngine() const{ return val_; }
55 };
56
57 } // namespace biblio
58 } // namespace lyx
59
60
61 /** Buffer parameters.
62  *  This class contains all the parameters for this a buffer uses. Some
63  *  work needs to be done on this class to make it nice. Now everything
64  *  is in public.
65  */
66 class BufferParams {
67 public:
68         ///
69         enum PARSEP {
70                 ///
71                 PARSEP_INDENT,
72                 ///
73                 PARSEP_SKIP
74         };
75         ///
76         BufferParams();
77         ~BufferParams();
78
79         /// read a header token, if unrecognised, return it or an unknown class name
80         std::string const readToken(LyXLex & lex, std::string const & token);
81
82         ///
83         void writeFile(std::ostream &) const;
84
85         /** \returns true if the babel package is used (interogates
86          *  the BufferParams and a LyXRC variable).
87          *  This returned value can then be passed to the insets...
88          */
89         bool writeLaTeX(std::ostream &, LaTeXFeatures &, TexRow &) const;
90
91         ///
92         void useClassDefaults();
93
94         ///
95         bool hasClassDefaults() const;
96
97         ///
98         VSpace const & getDefSkip() const;
99
100         ///
101         void setDefSkip(VSpace const & vs);
102
103         /** Wether paragraphs are separated by using a indent like in
104          *  articles or by using a little skip like in letters.
105          */
106         PARSEP paragraph_separation;
107         ///
108         InsetQuotes::quote_language quotes_language;
109         ///
110         InsetQuotes::quote_times quotes_times;
111         ///
112         std::string fontsize;
113         ///
114         lyx::textclass_type textclass;
115         ///
116         LyXTextClass const & getLyXTextClass() const;
117
118         /// returns the main font for the buffer (document)
119         LyXFont const getFont() const;
120
121         /* this are for the PaperLayout */
122         /// the papersize
123         PAPER_SIZE papersize;
124         ///
125         PAPER_ORIENTATION orientation;
126         /// use custom margins
127         bool use_geometry;
128         ///
129         std::string paperwidth;
130         ///
131         std::string paperheight;
132         ///
133         std::string leftmargin;
134         ///
135         std::string topmargin;
136         ///
137         std::string rightmargin;
138         ///
139         std::string bottommargin;
140         ///
141         std::string headheight;
142         ///
143         std::string headsep;
144         ///
145         std::string footskip;
146
147         /* some LaTeX options */
148         /// The graphics driver
149         std::string graphicsDriver;
150         /// the rm font
151         std::string fontsRoman;
152         /// the sf font
153         std::string fontsSans;
154         /// the tt font
155         std::string fontsTypewriter;
156         /// the default family (rm, sf, tt)
157         std::string fontsDefaultFamily;
158         /// use expert Small Caps
159         bool fontsSC;
160         /// use Old Style Figures
161         bool fontsOSF;
162         /// the scale factor of the sf font
163         int fontsSansScale;
164         /// the scale factor of the tt font
165         int fontsTypewriterScale;
166         ///
167         Spacing & spacing();
168         Spacing const & spacing() const;
169         ///
170         int secnumdepth;
171         ///
172         int tocdepth;
173         ///
174         Language const * language;
175         /// BranchList:
176         BranchList & branchlist();
177         BranchList const & branchlist() const;
178         ///
179         std::string inputenc;
180         ///
181         std::string preamble;
182         ///
183         std::string options;
184         ///
185         std::string float_placement;
186         ///
187         unsigned int columns;
188         ///
189         LyXTextClass::PageSides sides;
190         ///
191         std::string pagestyle;
192         /// \param index should lie in the range 0 <= \c index <= 3.
193         Bullet & temp_bullet(lyx::size_type index);
194         Bullet const & temp_bullet(lyx::size_type index) const;
195         /// \param index should lie in the range 0 <= \c index <= 3.
196         Bullet & user_defined_bullet(lyx::size_type index);
197         Bullet const & user_defined_bullet(lyx::size_type index) const;
198         ///
199         void readPreamble(LyXLex &);
200         ///
201         void readLanguage(LyXLex &);
202         ///
203         void readGraphicsDriver(LyXLex &);
204         ///
205         void readBullets(LyXLex &);
206         ///
207         void readBulletsLaTeX(LyXLex &);
208
209         /// use AMS package, not, or auto
210         enum AMS {
211                 AMS_OFF,
212                 AMS_AUTO,
213                 AMS_ON
214         };
215         AMS use_amsmath;
216         ///
217         lyx::biblio::CiteEngine cite_engine;
218         ///
219         bool use_bibtopic;
220         /// revision tracking for this buffer ?
221         bool tracking_changes;
222         /** This param decides whether change tracking marks should be output
223          *  (using the dvipost package) or if the current "state" of the
224          *  document should be output instead. Since dvipost needs dvi
225          *  specials, it only works with dvi/ps output (the param will be
226          *  ignored with other output flavors and disabled when dbipost is
227          *  not installed).
228          */
229         bool output_changes;
230         /// Time ago we agreed that this was a buffer property [ale990407]
231         std::string parentname;
232         ///
233         bool compressed;
234
235         /// the author list for the document
236         AuthorList & authors();
237         AuthorList const & authors() const;
238
239         /// map of the file's author IDs to buffer author IDs
240         std::vector<unsigned int> author_map;
241         ///
242         std::string const dvips_options() const;
243         ///
244         std::string const paperSizeName() const;
245         ///
246         std::string const babelCall(std::string const & lang_opts) const;
247         /// set up the document fonts
248         std::string const loadFonts(LaTeXFeatures & features, std::string const & rm,
249                                      std::string const & sf, std::string const & tt,
250                                      bool const & sc, bool const & osf,
251                                      int const & sfscale, int const & ttscale) const;
252         /// path of the current buffer
253         std::string filepath;
254
255 private:
256         /** Use the Pimpl idiom to hide those member variables that would otherwise
257          *  drag in other header files.
258          */
259         class Impl;
260         class MemoryTraits {
261         public:
262                 static Impl * clone(Impl const *);
263                 static void destroy(Impl *);
264         };
265         lyx::support::copied_ptr<Impl, MemoryTraits> pimpl_;
266 };
267
268 #endif