]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrc.h
Fix working of the spellchecker dialog with ispell when there are no
[lyx.git] / src / lyxrc.h
index e5f6dc8d6f7d7e15ca7008f55bf55629a823c0d8..6481577b105c4a36a6b2cf07605576774d37a795 100644 (file)
@@ -16,8 +16,9 @@
 #pragma interface
 #endif
 
-#include "bufferparams.h"
-#include <boost/utility.hpp>
+#include "bufferparams.h" // Just to get the enum BufferParams::PAPER_SIZE (sic)
+
+// #include <boost/utility.hpp>
 
 /// This contains the runtime configuration of LyX
 class LyXRC //: public noncopyable {
@@ -65,6 +66,7 @@ enum LyXRCTags {
        RC_USETEMPDIR,
        RC_LASTFILES,
        RC_AUTOREGIONDELETE,
+       RC_AUTORESET_OPTIONS,
        RC_BIND,
        RC_OVERRIDE_X_DEADKEYS,
        RC_SERVERPIPE,
@@ -93,6 +95,7 @@ enum LyXRCTags {
        RC_ESC_CHARS,
        RC_CHKTEX_COMMAND,
        RC_CURSOR_FOLLOWS_SCROLLBAR,
+       RC_DIALOGS_ICONIFY_WITH_MAIN,
        RC_EXIT_CONFIRMATION,
        RC_DISPLAY_SHORTCUTS,
        RC_MAKE_BACKUP,
@@ -117,6 +120,7 @@ enum LyXRCTags {
        RC_NEW_ASK_FILENAME,
        RC_DEFAULT_LANGUAGE,
        RC_LABEL_INIT_LENGTH,
+       RC_DISPLAY_GRAPHICS,
 #ifdef USE_PSPELL      
        RC_USE_PSPELL,
 #endif
@@ -205,6 +209,8 @@ enum LyXRCTags {
        ///
        bool auto_region_delete;
        /// flag telling whether lastfiles should be checked for existance
+       bool auto_reset_options;
+       ///
        bool check_lastfiles;
        /// filename for lastfiles file
        string lastfiles;
@@ -251,6 +257,8 @@ enum LyXRCTags {
                ///
                ISO_8859_9,
                ///
+               ISO_8859_15,
+               ///
                OTHER_ENCODING
        };
        ///
@@ -333,7 +341,11 @@ enum LyXRCTags {
        ///
        bool cursor_follows_scrollbar;
        ///
+       bool dialogs_iconify_with_main;
+       ///
        int label_init_length;
+       ///
+       string display_graphics;
 private:
        /// Is a bind file already (or currently) read?
        bool hasBindFile;