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