]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.h
Update cursor idx after grid paste if columns are appended
[lyx.git] / src / BufferParams.h
index 3a5cd29e3c813c0ed1959ad337ccabc9c3624dc0..84a5e58eab7cb4cd75ba7894270e6e4db846255b 100644 (file)
@@ -214,7 +214,12 @@ public:
        void clearIncludedChildren() { included_children_.clear(); }
 
        /// update aux files of unincluded children (with \includeonly)
-       bool maintain_unincluded_children;
+       enum ChildrenMaintenance {
+               CM_None,
+               CM_Mostly,
+               CM_Strict
+       };
+       ChildrenMaintenance maintain_unincluded_children;
 
        /// returns the main font for the buffer (document)
        Font const getFont() const;
@@ -434,7 +439,11 @@ public:
         */
        bool output_changes;
        ///
+       bool change_bars;
+       ///
        bool compressed;
+       ///
+       bool postpone_fragile_content;
 
        /// the author list for the document
        AuthorList & authors();