]> git.lyx.org Git - lyx.git/blobdiff - src/Layout.h
Try even harder to obtain an instant preview
[lyx.git] / src / Layout.h
index 05f6cbd08a07f31b0cfb8154d20922f623e28d16..9f98f0a1f9ed40be3a823f72bb33d982b1781afe 100644 (file)
@@ -116,8 +116,8 @@ public:
        /// Returns latexargs() + postcommandargs() + itemargs().
        /// 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.
        LaTeXArgMap args() const;
        ///
@@ -280,9 +280,13 @@ public:
        ///
        bool nextnoindent;
        ///
+       ToggleIndentation toggle_indent;
+       ///
        bool free_spacing;
        ///
        bool pass_thru;
+       /// Individual chars to be passed verbatim
+       docstring pass_thru_chars;
        ///
        bool parbreak_is_newline;
        /// show this in toc
@@ -438,7 +442,7 @@ private:
        mutable std::string defaultcssclass_;
        /// This is the `category' for this layout. The following are
        /// recommended basic categories: FrontMatter, BackMatter, MainText,
-       /// Section, Starred, List, Theorem.
+       /// Sectioning, Starred, List, Reasoning.
        docstring category_;
        /// Macro definitions needed for this layout
        docstring preamble_;