]> git.lyx.org Git - lyx.git/blob - src/bufferparams.h
GTK graphics dialog: Default to scaling 100% when no scaling or size is given
[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         /* this are for the PaperLayout */
119         /// the papersize
120         PAPER_SIZE papersize;
121         ///
122         PAPER_ORIENTATION orientation;
123         /// use custom margins
124         bool use_geometry;
125         ///
126         std::string paperwidth;
127         ///
128         std::string paperheight;
129         ///
130         std::string leftmargin;
131         ///
132         std::string topmargin;
133         ///
134         std::string rightmargin;
135         ///
136         std::string bottommargin;
137         ///
138         std::string headheight;
139         ///
140         std::string headsep;
141         ///
142         std::string footskip;
143
144         /* some LaTeX options */
145         /// The graphics driver
146         std::string graphicsDriver;
147         ///
148         std::string fonts;
149         ///
150         Spacing & spacing();
151         Spacing const & spacing() const;
152         ///
153         int secnumdepth;
154         ///
155         int tocdepth;
156         ///
157         Language const * language;
158         /// BranchList:
159         BranchList & branchlist();
160         BranchList const & branchlist() const;
161         ///
162         std::string inputenc;
163         ///
164         std::string preamble;
165         ///
166         std::string options;
167         ///
168         std::string float_placement;
169         ///
170         unsigned int columns;
171         ///
172         LyXTextClass::PageSides sides;
173         ///
174         std::string pagestyle;
175         /// \param index should lie in the range 0 <= \c index <= 3.
176         Bullet & temp_bullet(lyx::size_type index);
177         Bullet const & temp_bullet(lyx::size_type index) const;
178         /// \param index should lie in the range 0 <= \c index <= 3.
179         Bullet & user_defined_bullet(lyx::size_type index);
180         Bullet const & user_defined_bullet(lyx::size_type index) const;
181         ///
182         void readPreamble(LyXLex &);
183         ///
184         void readLanguage(LyXLex &);
185         ///
186         void readGraphicsDriver(LyXLex &);
187         ///
188         void readBullets(LyXLex &);
189         ///
190         void readBulletsLaTeX(LyXLex &);
191
192         /// use AMS package, not, or auto
193         enum AMS {
194                 AMS_OFF,
195                 AMS_AUTO,
196                 AMS_ON
197         };
198         AMS use_amsmath;
199         ///
200         lyx::biblio::CiteEngine cite_engine;
201         ///
202         bool use_bibtopic;
203         /// revision tracking for this buffer ?
204         bool tracking_changes;
205         /** This param decides if change tracking marks should be output
206          *  (using the dvipost package) or if the current "state" of the
207          *  document should be output instead. Since dvipost needs dvi
208          *  specials, it only works with dvi/ps output (the param will be
209          *  ignored with other output flavors and disabled when dbipost is
210          *  not installed).
211          */
212         bool output_changes;
213         /// Time ago we agreed that this was a buffer property [ale990407]
214         std::string parentname;
215         ///
216         bool compressed;
217
218         /// the author list for the document
219         AuthorList & authors();
220         AuthorList const & authors() const;
221
222         /// map of the file's author IDs to buffer author IDs
223         std::vector<int> author_map;
224         ///
225         std::string const dvips_options() const;
226         ///
227         std::string const paperSizeName() const;
228         ///
229         std::string const babelCall(std::string const & lang_opts) const;
230
231 private:
232         /** Use the Pimpl idiom to hide those member variables that would otherwise
233          *  drag in other header files.
234          */
235         class Impl;
236         class MemoryTraits {
237         public:
238                 static Impl * clone(Impl const *);
239                 static void destroy(Impl *);
240         };
241         lyx::support::copied_ptr<Impl, MemoryTraits> pimpl_;
242 };
243
244 #endif