]> git.lyx.org Git - lyx.git/blob - src/LyXRC.h
* Option to make macro editing less "noisy" by hiding the grey box with the
[lyx.git] / src / LyXRC.h
1 // -*- C++ -*-
2 /**
3  * \file LyXRC.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 Angus Leeming
10  * \author John Levon
11  * \author André Pönitz
12  * \author Allan Rae
13  * \author Dekel Tsur
14  *
15  * Full author contact details are available in file CREDITS.
16  */
17
18 #ifndef LYXRC_H
19 #define LYXRC_H
20
21 #include "paper.h"
22
23 #include "support/strfwd.h"
24
25 #include <string>
26
27
28 namespace lyx {
29
30 namespace support { class FileName; }
31
32 class Lexer;
33
34 /// This contains the runtime configuration of LyX
35 class LyXRC
36 {
37 public:
38         enum LyXRCTags {
39                 RC_ACCEPT_COMPOUND = 1,
40                 RC_ALT_LANG,
41                 RC_PLAINTEXT_ROFF_COMMAND,
42                 RC_PLAINTEXT_LINELEN,
43                 RC_AUTOREGIONDELETE,
44                 RC_AUTORESET_OPTIONS,
45                 RC_AUTOSAVE,
46                 RC_AUTO_NUMBER,
47                 RC_BACKUPDIR_PATH,
48                 RC_BIBTEX_COMMAND,
49                 RC_BINDFILE,
50                 RC_CHECKLASTFILES,
51                 RC_CHKTEX_COMMAND,
52                 RC_CONVERTER,
53                 RC_CONVERTER_CACHE_MAXAGE,
54                 RC_COPIER,
55                 RC_CURSOR_FOLLOWS_SCROLLBAR,
56                 RC_CUSTOM_EXPORT_COMMAND,
57                 RC_CUSTOM_EXPORT_FORMAT,
58                 RC_DATE_INSERT_FORMAT,
59                 RC_DEFFILE,
60                 RC_DEFAULT_LANGUAGE,
61                 RC_DEFAULT_PAPERSIZE,
62                 RC_DIALOGS_ICONIFY_WITH_MAIN,
63                 RC_DISPLAY_GRAPHICS,
64                 RC_DOCUMENTPATH,
65                 RC_ESC_CHARS,
66                 RC_EXAMPLEPATH,
67                 RC_FONT_ENCODING,
68                 RC_FORMAT,
69                 RC_INDEX_COMMAND,
70                 RC_INPUT,
71                 RC_KBMAP,
72                 RC_KBMAP_PRIMARY,
73                 RC_KBMAP_SECONDARY,
74                 RC_LABEL_INIT_LENGTH,
75                 RC_LANGUAGE_AUTO_BEGIN,
76                 RC_LANGUAGE_AUTO_END,
77                 RC_LANGUAGE_COMMAND_BEGIN,
78                 RC_LANGUAGE_COMMAND_END,
79                 RC_LANGUAGE_COMMAND_LOCAL,
80                 RC_LANGUAGE_GLOBAL_OPTIONS,
81                 RC_LANGUAGE_PACKAGE,
82                 RC_LANGUAGE_USE_BABEL,
83                 RC_SORT_LAYOUTS,
84                 RC_USELASTFILEPOS,
85                 RC_LOADSESSION,
86                 RC_MAKE_BACKUP,
87                 RC_MARK_FOREIGN_LANGUAGE,
88                 RC_NUMLASTFILES,
89                 RC_PATH_PREFIX,
90                 RC_PERS_DICT,
91                 RC_PREVIEW,
92                 RC_PREVIEW_HASHED_LABELS,
93                 RC_PREVIEW_SCALE_FACTOR,
94                 RC_PRINTCOLLCOPIESFLAG,
95                 RC_PRINTCOPIESFLAG,
96                 RC_PRINTER,
97                 RC_PRINTEVENPAGEFLAG,
98                 RC_PRINTEXSTRAOPTIONS,
99                 RC_PRINTFILEEXTENSION,
100                 RC_PRINTLANDSCAPEFLAG,
101                 RC_PRINTODDPAGEFLAG,
102                 RC_PRINTPAGERANGEFLAG,
103                 RC_PRINTPAPERDIMENSIONFLAG,
104                 RC_PRINTPAPERFLAG,
105                 RC_PRINTREVERSEFLAG,
106                 RC_PRINTSPOOL_COMMAND,
107                 RC_PRINTSPOOL_PRINTERPREFIX,
108                 RC_PRINTTOFILE,
109                 RC_PRINTTOPRINTER,
110                 RC_PRINT_ADAPTOUTPUT,
111                 RC_PRINT_COMMAND,
112                 RC_RTL_SUPPORT,
113                 RC_SCREEN_DPI,
114                 RC_SCREEN_FONT_ROMAN,
115                 RC_SCREEN_FONT_ROMAN_FOUNDRY,
116                 RC_SCREEN_FONT_SANS,
117                 RC_SCREEN_FONT_SANS_FOUNDRY,
118                 RC_SCREEN_FONT_SCALABLE,
119                 RC_SCREEN_FONT_SIZES,
120                 RC_SCREEN_FONT_TYPEWRITER,
121                 RC_SCREEN_FONT_TYPEWRITER_FOUNDRY,
122                 RC_GEOMETRY_SESSION,
123                 RC_SCREEN_ZOOM,
124                 RC_SERVERPIPE,
125                 RC_SET_COLOR,
126                 RC_SHOW_BANNER,
127                 RC_SHOW_MACRO_LABEL,
128                 RC_SPELL_COMMAND,
129                 RC_TEMPDIRPATH,
130                 RC_TEMPLATEPATH,
131                 RC_TEX_ALLOWS_SPACES,
132                 RC_TEX_EXPECTS_WINDOWS_PATHS,
133                 RC_UIFILE,
134                 RC_USER_EMAIL,
135                 RC_USER_NAME,
136                 RC_USETEMPDIR,
137                 RC_USE_ALT_LANG,
138                 RC_USE_CONVERTER_CACHE,
139                 RC_USE_ESC_CHARS,
140                 RC_USE_INP_ENC,
141                 RC_USE_PERS_DICT,
142                 RC_USE_TOOLTIP,
143                 RC_USE_PIXMAP_CACHE,
144                 RC_USE_SPELL_LIB,
145                 RC_VIEWDVI_PAPEROPTION,
146                 RC_VIEWER,
147                 RC_LAST
148         };
149
150         ///
151         LyXRC();
152         ///
153         void setDefaults();
154         ///
155         int read(support::FileName const & filename);
156         ///
157         int read(std::istream &);
158 private:
159         ///
160         int read(Lexer &);
161 public:
162         ///
163         void write(support::FileName const & filename,
164                    bool ignore_system_lyxrc) const;
165         /// write rc. If a specific tag is given, only output that one.
166         void write(std::ostream & os,
167                    bool ignore_system_lyxrc, 
168                    std::string const & tag = std::string()) const;
169         ///
170         void print() const;
171         // FIXME unused (was used for xforms. Do we still need this?)
172         //static docstring const getDescription(LyXRCTags);
173         ///
174         std::string bind_file;
175         ///
176         std::string def_file;
177         ///
178         std::string ui_file;
179         ///
180         std::string printer;
181         ///
182         std::string print_command;
183         ///
184         std::string print_evenpage_flag;
185         ///
186         std::string print_oddpage_flag;
187         ///
188         std::string print_pagerange_flag;
189         ///
190         std::string print_copies_flag;
191         ///
192         std::string print_collcopies_flag;
193         ///
194         std::string print_reverse_flag;
195         ///
196         std::string print_landscape_flag;
197         ///
198         std::string print_to_printer;
199         ///
200         bool print_adapt_output;
201         ///
202         std::string print_to_file;
203         ///
204         std::string print_file_extension;
205         ///
206         std::string print_extra_options;
207         ///
208         std::string print_spool_command;
209         ///
210         std::string print_spool_printerprefix;
211         ///
212         std::string print_paper_flag;
213         ///
214         std::string print_paper_dimension_flag;
215         ///
216         std::string custom_export_command;
217         ///
218         std::string custom_export_format;
219         /// option for telling the dvi viewer about the paper size
220         std::string view_dvi_paper_option;
221         /// default paper size for local xdvi/dvips/ghostview/whatever
222         PAPER_SIZE default_papersize;
223         /// command to run chktex incl. options
224         std::string chktex_command;
225         /// command to run bibtex incl. options
226         std::string bibtex_command;
227         /// command to run makeindex incl. options or other index programs
228         std::string index_command;
229         ///
230         std::string document_path;
231         ///
232         std::string example_path;
233         ///
234         std::string template_path;
235         ///
236         std::string tempdir_path;
237         ///
238         bool auto_region_delete;
239         /// flag telling whether lastfiles should be checked for existance
240         bool auto_reset_options;
241         ///
242         bool check_lastfiles;
243         /// maximal number of lastfiles
244         unsigned int num_lastfiles;
245         /// whether or not go to saved position when opening a file
246         bool use_lastfilepos;
247         /// load files from last session automatically
248         bool load_session;
249         /// shall a backup file be created
250         bool make_backup;
251         /// A directory for storing backup files
252         std::string backupdir_path;
253         /// Whether or not save/restore session information
254         /// like windows position and geometry.
255         bool allow_geometry_session;
256         /// Zoom factor for screen fonts
257         unsigned int zoom;
258         /// Screen font sizes in points for each font size
259         std::string font_sizes[10];
260         /// Allow the use of scalable fonts? Default is yes.
261         bool use_scalable_fonts;
262         /// DPI of monitor
263         unsigned int dpi;
264         ///
265         std::string fontenc;
266         ///
267         std::string roman_font_name;
268         ///
269         std::string sans_font_name;
270         ///
271         std::string typewriter_font_name;
272         ///
273         std::string roman_font_foundry;
274         ///
275         std::string sans_font_foundry;
276         ///
277         std::string typewriter_font_foundry;
278         ///
279         unsigned int autosave;
280         ///
281         std::string plaintext_roff_command;
282         ///
283         unsigned int plaintext_linelen;
284         /// use library instead of process
285         bool use_spell_lib;
286         /// Ispell command
287         std::string isp_command;
288         /// Accept compound words in spellchecker?
289         bool isp_accept_compound;
290         /// Pass input encoding switch to ispell?
291         bool isp_use_input_encoding;
292         /// Use alternate language?
293         bool isp_use_alt_lang;
294         /// Use personal dictionary?
295         bool isp_use_pers_dict;
296         /// Use tooltips?
297         bool use_tooltip;
298         /// Use pixmap cache?
299         bool use_pixmap_cache;
300         /// Use escape chars?
301         bool isp_use_esc_chars;
302         /// Alternate language for ispell
303         std::string isp_alt_lang;
304         /// Alternate personal dictionary file for ispell
305         std::string isp_pers_dict;
306         /// Escape characters
307         std::string isp_esc_chars;
308         ///
309         bool use_kbmap;
310         ///
311         std::string primary_kbmap;
312         ///
313         std::string secondary_kbmap;
314         ///
315         std::string lyxpipes;
316         ///
317         std::string date_insert_format;
318         ///
319         std::string language_package;
320         ///
321         bool language_auto_begin;
322         ///
323         bool language_auto_end;
324         ///
325         std::string language_command_begin;
326         ///
327         std::string language_command_end;
328         ///
329         std::string language_command_local;
330         ///
331         bool language_global_options;
332         ///
333         bool language_use_babel;
334         ///
335         bool rtl_support;
336         ///
337         bool auto_number;
338         ///
339         bool mark_foreign_language;
340         ///
341         std::string default_language;
342         ///
343         bool cursor_follows_scrollbar;
344         ///
345         bool show_macro_label;
346         ///
347         bool dialogs_iconify_with_main;
348         ///
349         int label_init_length;
350         ///
351         ///graphics::DisplayType
352         int display_graphics;
353         ///
354         bool show_banner;
355         ///
356         enum PreviewStatus {
357                 PREVIEW_OFF,
358                 PREVIEW_NO_MATH,
359                 PREVIEW_ON
360         };
361         ///
362         PreviewStatus preview;
363         ///
364         bool preview_hashed_labels;
365         ///
366         std::string preview_scale_factor;
367         /// user name
368         std::string user_name;
369         /// user email
370         std::string user_email;
371         /// True if the TeX engine cannot handle posix paths
372         bool windows_style_tex_paths;
373         /// True if the TeX engine can handle file names containing spaces
374         bool tex_allows_spaces;
375         /** Prepend paths to the PATH environment variable.
376          *  The string is input, stored and output in native format.
377          */
378         std::string path_prefix;
379         /// Use the cache for file converters?
380         bool use_converter_cache;
381         /// The maximum age of cache files in seconds
382         unsigned int converter_cache_maxage;
383         /// Sort layouts alphabetically
384         bool sort_layouts;
385 };
386
387
388 /** \c LyXRC_PreviewStatus is a wrapper for LyXRC::PreviewStatus.
389  *  It can be forward-declared and passed as a function argument without
390  *  having to expose LyXRC.h.
391  */
392 class LyXRC_PreviewStatus {
393         LyXRC::PreviewStatus val_;
394 public:
395         LyXRC_PreviewStatus(LyXRC::PreviewStatus val) : val_(val) {}
396         operator LyXRC::PreviewStatus() const { return val_; }
397 };
398
399
400 ///
401 extern LyXRC lyxrc;
402 ///
403 extern LyXRC system_lyxrc;
404
405 } // namespace lyx
406
407 #endif