]> git.lyx.org Git - lyx.git/blobdiff - src/LyXRC.h
DocBook: don't use a surrounding <para> for rendered insets.
[lyx.git] / src / LyXRC.h
index bf6572891a0547789098dbb1bd51f721e08d37fc..74c0e4cfe104fdd194a2e67badccda5276eff3a8 100644 (file)
@@ -51,6 +51,7 @@ public:
                RC_BIBTEX_ALTERNATIVES,
                RC_BIBTEX_COMMAND,
                RC_BINDFILE,
+               RC_BOOKMARKS_VISIBILITY,
                RC_CHECKLASTFILES,
                RC_CHKTEX_COMMAND,
                RC_CITATION_SEARCH,
@@ -194,7 +195,7 @@ public:
        ///
        LyXRC() : user_name(support::user_name()),
                  user_email(support::user_email()) // always empty
-               {};
+               {}
 
        /// \param check_format: whether to try to convert the file format,
        /// if it is not current. this should only be true, really, for the
@@ -564,6 +565,14 @@ public:
        int cursor_width = 0;
        /// One of: yes, no, ask
        std::string close_buffer_with_last_view = "yes";
+       enum BookmarksVisibility {
+               BMK_NONE,
+               BMK_MARGIN,
+               BMK_INLINE
+       };
+
+       ///
+       BookmarksVisibility bookmarks_visibility = BMK_NONE;
 };