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