]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLayout.h
Add ObsoletedBy tag to InsetLayout
[lyx.git] / src / insets / InsetLayout.h
index 83bbb2d0de48ba29c340d38fff8173dcc7d2935d..cf5647dbc39b1132e8719acbf9573b7f15197b18 100644 (file)
@@ -92,8 +92,8 @@ public:
        /// Returns latexargs() + postcommandargs().
        /// But note that it returns a *copy*, not a reference, so do not do 
        /// anything like:
-       ///   Layout::LaTeXArgMap it = args().begin();
-       ///   Layout::LaTeXArgMap en = args().end();
+       ///   Layout::LaTeXArgMap::iterator it = args().begin();
+       ///   Layout::LaTeXArgMap::iterator en = args().end();
        /// Those are iterators for different containers.
        Layout::LaTeXArgMap args() const;
        ///
@@ -164,6 +164,8 @@ public:
        ///
        bool forceLTR() const { return forceltr_; }
        ///
+       bool forceOwnlines() const { return forceownlines_; }
+       ///
        bool isInToc() const { return intoc_; }
        ///
        bool spellcheck() const { return spellcheck_; }
@@ -173,6 +175,8 @@ public:
        bool isDisplay() const { return display_; }
        ///
        bool forcelocalfontswitch() const { return forcelocalfontswitch_; }
+       ///
+       docstring const & obsoleted_by() const { return obsoleted_by_; }
 private:
        ///
        void makeDefaultCSS() const;
@@ -262,6 +266,8 @@ private:
        ///
        bool forceltr_;
        ///
+       bool forceownlines_;
+       ///
        bool needprotect_;
        /// should the contents be written to TOC strings?
        bool intoc_;
@@ -273,6 +279,11 @@ private:
        bool display_;
        ///
        bool forcelocalfontswitch_;
+       /** Name of an insetlayout that has replaced this insetlayout.
+           This is used to rename an insetlayout, while keeping backward
+           compatibility
+       */
+       docstring obsoleted_by_;
        ///
        Layout::LaTeXArgMap latexargs_;
        ///