]> git.lyx.org Git - lyx.git/blobdiff - src/LyXRC.h
fix compilation on F13 and binutils/gold by rewriting specialized X11 code
[lyx.git] / src / LyXRC.h
index af28ce0129a2cfe53c35786b69bfa2d5812790b5..4ec4d2aeef4af3e5a79bdb86f2245d540822e75a 100644 (file)
@@ -76,8 +76,11 @@ public:
                RC_EDITOR_ALTERNATIVES,
                RC_ESC_CHARS,
                RC_EXAMPLEPATH,
+               RC_EXPORT_OVERWRITE,
                RC_FONT_ENCODING,
                RC_FORMAT,
+               RC_FORWARD_SEARCH_DVI,
+               RC_FORWARD_SEARCH_PDF,
                RC_FULL_SCREEN_LIMIT,
                RC_FULL_SCREEN_SCROLLBAR,
                RC_FULL_SCREEN_TABBAR,
@@ -96,7 +99,6 @@ public:
                RC_KBMAP,
                RC_KBMAP_PRIMARY,
                RC_KBMAP_SECONDARY,
-               RC_LABEL_INIT_LENGTH,
                RC_LANGUAGE_AUTO_BEGIN,
                RC_LANGUAGE_AUTO_END,
                RC_LANGUAGE_COMMAND_BEGIN,
@@ -141,6 +143,7 @@ public:
                RC_PRINT_ADAPTOUTPUT,
                RC_PRINT_COMMAND,
                RC_RTL_SUPPORT,
+               RC_SAVE_COMPRESSED,
                RC_SCREEN_DPI,
                RC_SCREEN_FONT_ROMAN,
                RC_SCREEN_FONT_ROMAN_FOUNDRY,
@@ -159,6 +162,7 @@ public:
                RC_SORT_LAYOUTS,
                RC_SPELL_COMMAND,
                RC_SPELLCHECK_CONTINUOUSLY,
+               RC_SPELLCHECK_NOTES,
                RC_SPELLCHECKER,
                RC_SPLITINDEX_COMMAND,
                RC_TEMPDIRPATH,
@@ -302,6 +306,8 @@ public:
        bool use_lastfilepos;
        /// load files from last session automatically
        bool load_session;
+       /// do we save new documents as compressed by default
+       bool save_compressed;
        /// shall a backup file be created
        bool make_backup;
        /// A directory for storing backup files
@@ -353,6 +359,8 @@ public:
        std::string spellchecker_esc_chars;
        /// spellcheck continuously?
        bool spellcheck_continuously;
+       /// spellcheck notes and comments?
+       bool spellcheck_notes;
        ///
        bool use_kbmap;
        ///
@@ -414,8 +422,6 @@ public:
        ///
        bool dialogs_iconify_with_main;
        ///
-       int label_init_length;
-       ///
        bool display_graphics;
        ///
        bool show_banner;
@@ -487,6 +493,12 @@ public:
        bool open_buffers_in_tabs;
        ///
        bool single_close_tab_button;
+       ///
+       std::string forward_search_dvi;
+       ///
+       std::string forward_search_pdf;
+       ///
+       int export_overwrite;
 };