]> git.lyx.org Git - features.git/blob - src/LyXRC.h
* configure.py:
[features.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 #include <vector>
27
28
29 namespace lyx {
30
31 namespace support { class FileName; }
32
33 class Lexer;
34
35 /// This contains the runtime configuration of LyX
36 class LyXRC
37 {
38 public:
39         enum LyXRCTags {
40                 RC_ACCEPT_COMPOUND = 1,
41                 RC_ALT_LANG,
42                 RC_AUTOCORRECTION_MATH,
43                 RC_PLAINTEXT_LINELEN,
44                 RC_PLAINTEXT_ROFF_COMMAND,
45                 RC_AUTOREGIONDELETE,
46                 RC_AUTORESET_OPTIONS,
47                 RC_AUTOSAVE,
48                 RC_AUTO_NUMBER,
49                 RC_BACKUPDIR_PATH,
50                 RC_BIBTEX_ALTERNATIVES,
51                 RC_BIBTEX_COMMAND,
52                 RC_BINDFILE,
53                 RC_CHECKLASTFILES,
54                 RC_CHKTEX_COMMAND,
55                 RC_COMPLETION_CURSOR_TEXT,
56                 RC_COMPLETION_INLINE_DELAY,
57                 RC_COMPLETION_INLINE_MATH,
58                 RC_COMPLETION_INLINE_TEXT,
59                 RC_COMPLETION_INLINE_DOTS,
60                 RC_COMPLETION_POPUP_DELAY,
61                 RC_COMPLETION_POPUP_MATH,
62                 RC_COMPLETION_POPUP_TEXT,
63                 RC_COMPLETION_POPUP_AFTER_COMPLETE,
64                 RC_CONVERTER,
65                 RC_CONVERTER_CACHE_MAXAGE,
66                 RC_COPIER,
67                 RC_CURSOR_FOLLOWS_SCROLLBAR,
68                 RC_MAC_LIKE_WORD_MOVEMENT,
69                 RC_DATE_INSERT_FORMAT,
70                 RC_DEFFILE,
71                 RC_DEFAULT_LANGUAGE,
72                 RC_DEFAULT_VIEW_FORMAT,
73                 RC_GUI_LANGUAGE,
74                 RC_DEFAULT_PAPERSIZE,
75                 RC_DIALOGS_ICONIFY_WITH_MAIN,
76                 RC_DISPLAY_GRAPHICS,
77                 RC_DOCUMENTPATH,
78                 RC_ESC_CHARS,
79                 RC_EXAMPLEPATH,
80                 RC_FONT_ENCODING,
81                 RC_FORMAT,
82                 RC_FULL_SCREEN_LIMIT,
83                 RC_FULL_SCREEN_SCROLLBAR,
84                 RC_FULL_SCREEN_TABBAR,
85                 RC_FULL_SCREEN_TOOLBARS,
86                 RC_FULL_SCREEN_WIDTH,
87                 RC_GEOMETRY_SESSION,
88                 RC_GROUP_LAYOUTS,
89                 RC_INDEX_ALTERNATIVES,
90                 RC_INDEX_COMMAND,
91                 RC_INPUT,
92                 RC_JBIBTEX_COMMAND,
93                 RC_JINDEX_COMMAND,
94                 RC_KBMAP,
95                 RC_KBMAP_PRIMARY,
96                 RC_KBMAP_SECONDARY,
97                 RC_LABEL_INIT_LENGTH,
98                 RC_LANGUAGE_AUTO_BEGIN,
99                 RC_LANGUAGE_AUTO_END,
100                 RC_LANGUAGE_COMMAND_BEGIN,
101                 RC_LANGUAGE_COMMAND_END,
102                 RC_LANGUAGE_COMMAND_LOCAL,
103                 RC_LANGUAGE_GLOBAL_OPTIONS,
104                 RC_LANGUAGE_PACKAGE,
105                 RC_LANGUAGE_USE_BABEL,
106                 RC_LOADSESSION,
107                 RC_MACRO_EDIT_STYLE,
108                 RC_MAKE_BACKUP,
109                 RC_MARK_FOREIGN_LANGUAGE,
110                 RC_MOUSE_WHEEL_SPEED,
111                 RC_NOMENCL_COMMAND,
112                 RC_NUMLASTFILES,
113                 RC_PATH_PREFIX,
114                 RC_PERS_DICT,
115                 RC_PREVIEW,
116                 RC_PREVIEW_HASHED_LABELS,
117                 RC_PREVIEW_SCALE_FACTOR,
118                 RC_PRINTCOLLCOPIESFLAG,
119                 RC_PRINTCOPIESFLAG,
120                 RC_PRINTER,
121                 RC_PRINTEVENPAGEFLAG,
122                 RC_PRINTEXSTRAOPTIONS,
123                 RC_PRINTFILEEXTENSION,
124                 RC_PRINTLANDSCAPEFLAG,
125                 RC_PRINTODDPAGEFLAG,
126                 RC_PRINTPAGERANGEFLAG,
127                 RC_PRINTPAPERDIMENSIONFLAG,
128                 RC_PRINTPAPERFLAG,
129                 RC_PRINTREVERSEFLAG,
130                 RC_PRINTSPOOL_COMMAND,
131                 RC_PRINTSPOOL_PRINTERPREFIX,
132                 RC_PRINTTOFILE,
133                 RC_PRINTTOPRINTER,
134                 RC_PRINT_ADAPTOUTPUT,
135                 RC_PRINT_COMMAND,
136                 RC_RTL_SUPPORT,
137                 RC_SCREEN_DPI,
138                 RC_SCREEN_FONT_ROMAN,
139                 RC_SCREEN_FONT_ROMAN_FOUNDRY,
140                 RC_SCREEN_FONT_SANS,
141                 RC_SCREEN_FONT_SANS_FOUNDRY,
142                 RC_SCREEN_FONT_SCALABLE,
143                 RC_SCREEN_FONT_SIZES,
144                 RC_SCREEN_FONT_TYPEWRITER,
145                 RC_SCREEN_FONT_TYPEWRITER_FOUNDRY,
146                 RC_SCREEN_ZOOM,
147                 RC_SCROLL_BELOW_DOCUMENT,
148                 RC_SERVERPIPE,
149                 RC_SET_COLOR,
150                 RC_SHOW_BANNER,
151                 RC_OPEN_BUFFERS_IN_TABS,
152                 RC_SORT_LAYOUTS,
153                 RC_SPELL_COMMAND,
154                 RC_SPELLCHECK_CONTINUOUSLY,
155                 RC_SPLITINDEX_COMMAND,
156                 RC_TEMPDIRPATH,
157                 RC_TEMPLATEPATH,
158                 RC_TEX_ALLOWS_SPACES,
159                 RC_TEX_EXPECTS_WINDOWS_PATHS,
160                 RC_THESAURUSDIRPATH,
161                 RC_UIFILE,
162                 RC_USELASTFILEPOS,
163                 RC_USER_EMAIL,
164                 RC_USER_NAME,
165                 RC_USETEMPDIR,
166                 RC_USE_ALT_LANG,
167                 RC_USE_CONVERTER_CACHE,
168                 RC_USE_ESC_CHARS,
169                 RC_USE_INP_ENC,
170                 RC_USE_PERS_DICT,
171                 RC_USE_TOOLTIP,
172                 RC_USE_PIXMAP_CACHE,
173                 RC_USE_SPELL_LIB,
174                 RC_VIEWDVI_PAPEROPTION,
175                 RC_VIEWER,
176                 RC_VISUAL_CURSOR,
177                 RC_LAST
178         };
179
180         ///
181         LyXRC();
182         ///
183         void setDefaults();
184         ///
185         int read(support::FileName const & filename);
186         ///
187         int read(std::istream &);
188 private:
189         ///
190         int read(Lexer &);
191 public:
192         ///
193         void write(support::FileName const & filename,
194                    bool ignore_system_lyxrc) const;
195         /// write rc. If a specific tag is given, only output that one.
196         void write(std::ostream & os,
197                    bool ignore_system_lyxrc, 
198                    std::string const & tag = std::string()) const;
199         ///
200         void print() const;
201         // FIXME unused (was used for xforms. Do we still need this?)
202         //static docstring const getDescription(LyXRCTags);
203         ///
204         std::string bind_file;
205         ///
206         std::string def_file;
207         ///
208         std::string ui_file;
209         ///
210         std::string printer;
211         ///
212         std::string print_command;
213         ///
214         std::string print_evenpage_flag;
215         ///
216         std::string print_oddpage_flag;
217         ///
218         std::string print_pagerange_flag;
219         ///
220         std::string print_copies_flag;
221         ///
222         std::string print_collcopies_flag;
223         ///
224         std::string print_reverse_flag;
225         ///
226         std::string print_landscape_flag;
227         ///
228         std::string print_to_printer;
229         ///
230         bool print_adapt_output;
231         ///
232         std::string print_to_file;
233         ///
234         std::string print_file_extension;
235         ///
236         std::string print_extra_options;
237         ///
238         std::string print_spool_command;
239         ///
240         std::string print_spool_printerprefix;
241         ///
242         std::string print_paper_flag;
243         ///
244         std::string print_paper_dimension_flag;
245         /// option for telling the dvi viewer about the paper size
246         std::string view_dvi_paper_option;
247         /// default paper size for local xdvi/dvips/ghostview/whatever
248         PAPER_SIZE default_papersize;
249         /// command to run chktex incl. options
250         std::string chktex_command;
251         /// all available commands to run bibtex incl. options
252         std::vector<std::string> bibtex_alternatives;
253         /// command to run bibtex incl. options
254         std::string bibtex_command;
255         /// command to run japanese bibtex incl. options
256         std::string jbibtex_command;
257         /// all available index commands incl. options
258         std::vector<std::string> index_alternatives;
259         /// command to run makeindex incl. options or other index programs
260         std::string index_command;
261         /// command to run japanese index program incl. options
262         std::string jindex_command;
263         /// command to generate multiple indices
264         std::string splitindex_command;
265         /// command to run makeindex incl. options for nomencl
266         std::string nomencl_command;
267         ///
268         std::string document_path;
269         ///
270         std::string example_path;
271         ///
272         std::string template_path;
273         ///
274         std::string tempdir_path;
275         ///
276         std::string thesaurusdir_path;
277         ///
278         bool auto_region_delete;
279         /// flag telling whether lastfiles should be checked for existance
280         bool auto_reset_options;
281         ///
282         bool check_lastfiles;
283         /// maximal number of lastfiles
284         unsigned int num_lastfiles;
285         /// whether or not go to saved position when opening a file
286         bool use_lastfilepos;
287         /// load files from last session automatically
288         bool load_session;
289         /// shall a backup file be created
290         bool make_backup;
291         /// A directory for storing backup files
292         std::string backupdir_path;
293         /// Whether or not save/restore session information
294         /// like windows position and geometry.
295         bool allow_geometry_session;
296         /// Scrolling speed of the mouse wheel
297         double mouse_wheel_speed;
298         /// Zoom factor for screen fonts
299         unsigned int zoom;
300         /// Screen font sizes in points for each font size
301         std::string font_sizes[10];
302         /// Allow the use of scalable fonts? Default is yes.
303         bool use_scalable_fonts;
304         /// DPI of monitor
305         unsigned int dpi;
306         ///
307         std::string fontenc;
308         ///
309         std::string roman_font_name;
310         ///
311         std::string sans_font_name;
312         ///
313         std::string typewriter_font_name;
314         ///
315         std::string roman_font_foundry;
316         ///
317         std::string sans_font_foundry;
318         ///
319         std::string typewriter_font_foundry;
320         ///
321         unsigned int autosave;
322         ///
323         unsigned int plaintext_linelen;
324         /// Accept compound words in spellchecker?
325         bool spellchecker_accept_compound;
326         /// Pass input encoding switch to the spellchecker?
327         bool spellchecker_use_input_encoding;
328         /// Use alternate language?
329         bool spellchecker_use_alt_lang;
330         /// Use personal dictionary?
331         bool spellchecker_use_pers_dict;
332         /// Use tooltips?
333         bool use_tooltip;
334         /// Use pixmap cache?
335         bool use_pixmap_cache;
336         /// Use escape chars?
337         bool spellchecker_use_esc_chars;
338         /// Alternate language for spellchecker
339         std::string spellchecker_alt_lang;
340         /// Alternate personal dictionary file for the spellchecker
341         std::string spellchecker_pers_dict;
342         /// Escape characters
343         std::string spellchecker_esc_chars;
344         /// spellcheck continuously?
345         bool spellcheck_continuously;
346         ///
347         bool use_kbmap;
348         ///
349         std::string primary_kbmap;
350         ///
351         std::string secondary_kbmap;
352         ///
353         std::string lyxpipes;
354         ///
355         std::string date_insert_format;
356         ///
357         std::string language_package;
358         ///
359         bool language_auto_begin;
360         ///
361         bool language_auto_end;
362         ///
363         std::string language_command_begin;
364         ///
365         std::string language_command_end;
366         ///
367         std::string language_command_local;
368         ///
369         bool language_global_options;
370         ///
371         bool language_use_babel;
372         ///
373         bool rtl_support;
374         /// bidi cursor movement: true = visual, false = logical
375         bool visual_cursor;
376         ///
377         bool auto_number;
378         ///
379         bool mark_foreign_language;
380         ///
381         std::string default_language;
382         ///
383         std::string gui_language;
384         ///
385         std::string default_view_format;
386         ///
387         bool mac_like_word_movement;
388         ///
389         bool cursor_follows_scrollbar;
390         ///
391         bool scroll_below_document;
392         ///
393         enum MacroEditStyle {
394                 MACRO_EDIT_INLINE_BOX = 0,
395                 MACRO_EDIT_INLINE,
396                 MACRO_EDIT_LIST
397         };
398         ///
399         MacroEditStyle macro_edit_style;
400         ///
401         bool dialogs_iconify_with_main;
402         ///
403         int label_init_length;
404         ///
405         bool display_graphics;
406         ///
407         bool show_banner;
408         ///
409         enum PreviewStatus {
410                 PREVIEW_OFF,
411                 PREVIEW_NO_MATH,
412                 PREVIEW_ON
413         };
414         ///
415         PreviewStatus preview;
416         ///
417         bool preview_hashed_labels;
418         ///
419         std::string preview_scale_factor;
420         /// user name
421         std::string user_name;
422         /// user email
423         std::string user_email;
424         /// True if the TeX engine cannot handle posix paths
425         bool windows_style_tex_paths;
426         /// True if the TeX engine can handle file names containing spaces
427         bool tex_allows_spaces;
428         /** Prepend paths to the PATH environment variable.
429          *  The string is input, stored and output in native format.
430          */
431         std::string path_prefix;
432         /// Use the cache for file converters?
433         bool use_converter_cache;
434         /// The maximum age of cache files in seconds
435         unsigned int converter_cache_maxage;
436         /// Sort layouts alphabetically
437         bool sort_layouts;
438         /// Group layout by their category
439         bool group_layouts;
440         /// Toggle toolbars in fullscreen mode?
441         bool full_screen_toolbars;
442         /// Toggle scrollbar in fullscreen mode?
443         bool full_screen_scrollbar;
444         /// Toggle tabbar in fullscreen mode?
445         bool full_screen_tabbar;
446         /// Limit the text width?
447         bool full_screen_limit;
448         /// Width of limited screen (in pixels) in fullscreen mode
449         int full_screen_width;
450         ///
451         bool completion_cursor_text;
452         ///
453         double completion_inline_delay;
454         ///
455         bool completion_inline_math;
456         ///
457         bool completion_inline_text;
458         ///
459         int completion_inline_dots;
460         ///
461         bool autocorrection_math;
462         ///
463         double completion_popup_delay;
464         ///
465         bool completion_popup_math;
466         ///
467         bool completion_popup_text;
468         ///
469         bool completion_popup_after_complete;
470         ///
471         bool open_buffers_in_tabs;
472 };
473
474
475 /** \c LyXRC_PreviewStatus is a wrapper for LyXRC::PreviewStatus.
476  *  It can be forward-declared and passed as a function argument without
477  *  having to expose LyXRC.h.
478  */
479 class LyXRC_PreviewStatus {
480         LyXRC::PreviewStatus val_;
481 public:
482         LyXRC_PreviewStatus(LyXRC::PreviewStatus val) : val_(val) {}
483         operator LyXRC::PreviewStatus() const { return val_; }
484 };
485
486
487 ///
488 extern LyXRC lyxrc;
489 ///
490 extern LyXRC system_lyxrc;
491
492 // used by at least frontends/qt4/GuiPref.cpp
493 const long maxlastfiles = 20;
494
495 } // namespace lyx
496
497 #endif