]> git.lyx.org Git - lyx.git/blob - src/bufferparams.h
Fix bug 2115 ("blueline bug")
[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         ///
151         std::string fonts;
152         ///
153         Spacing & spacing();
154         Spacing const & spacing() const;
155         ///
156         int secnumdepth;
157         ///
158         int tocdepth;
159         ///
160         Language const * language;
161         /// BranchList:
162         BranchList & branchlist();
163         BranchList const & branchlist() const;
164         ///
165         std::string inputenc;
166         ///
167         std::string preamble;
168         ///
169         std::string options;
170         ///
171         std::string float_placement;
172         ///
173         unsigned int columns;
174         ///
175         LyXTextClass::PageSides sides;
176         ///
177         std::string pagestyle;
178         /// \param index should lie in the range 0 <= \c index <= 3.
179         Bullet & temp_bullet(lyx::size_type index);
180         Bullet const & temp_bullet(lyx::size_type index) const;
181         /// \param index should lie in the range 0 <= \c index <= 3.
182         Bullet & user_defined_bullet(lyx::size_type index);
183         Bullet const & user_defined_bullet(lyx::size_type index) const;
184         ///
185         void readPreamble(LyXLex &);
186         ///
187         void readLanguage(LyXLex &);
188         ///
189         void readGraphicsDriver(LyXLex &);
190         ///
191         void readBullets(LyXLex &);
192         ///
193         void readBulletsLaTeX(LyXLex &);
194
195         /// use AMS package, not, or auto
196         enum AMS {
197                 AMS_OFF,
198                 AMS_AUTO,
199                 AMS_ON
200         };
201         AMS use_amsmath;
202         ///
203         lyx::biblio::CiteEngine cite_engine;
204         ///
205         bool use_bibtopic;
206         /// revision tracking for this buffer ?
207         bool tracking_changes;
208         /** This param decides if change tracking marks should be output
209          *  (using the dvipost package) or if the current "state" of the
210          *  document should be output instead. Since dvipost needs dvi
211          *  specials, it only works with dvi/ps output (the param will be
212          *  ignored with other output flavors and disabled when dbipost is
213          *  not installed).
214          */
215         bool output_changes;
216         /// Time ago we agreed that this was a buffer property [ale990407]
217         std::string parentname;
218         ///
219         bool compressed;
220
221         /// the author list for the document
222         AuthorList & authors();
223         AuthorList const & authors() const;
224
225         /// map of the file's author IDs to buffer author IDs
226         std::vector<int> author_map;
227         ///
228         std::string const dvips_options() const;
229         ///
230         std::string const paperSizeName() const;
231         ///
232         std::string const babelCall(std::string const & lang_opts) const;
233
234 private:
235         /** Use the Pimpl idiom to hide those member variables that would otherwise
236          *  drag in other header files.
237          */
238         class Impl;
239         class MemoryTraits {
240         public:
241                 static Impl * clone(Impl const *);
242                 static void destroy(Impl *);
243         };
244         lyx::support::copied_ptr<Impl, MemoryTraits> pimpl_;
245 };
246
247 #endif