]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLayout.h
Do not output deleted rows columns if show changes in output is false
[lyx.git] / src / insets / InsetLayout.h
index d2e6458c2d491dceb357879c9a29db7523a81e14..bed2136c4fdf12ffb7191c50af88e321e08d3fe0 100644 (file)
@@ -66,6 +66,8 @@ public:
        ///
        docstring labelstring() const { return labelstring_; }
        ///
+       docstring menustring() const { return menustring_; }
+       ///
        bool contentaslabel() const { return contentaslabel_; }
        ///
        InsetDecoration decoration() const { return decoration_; }
@@ -85,12 +87,12 @@ public:
        FontInfo labelfont() const { return labelfont_; }
        ///
        ColorCode bgcolor() const { return bgcolor_; }
-       /// 
+       ///
        Layout::LaTeXArgMap const & latexargs() const { return latexargs_; }
        ///
        Layout::LaTeXArgMap const & postcommandargs() const { return postcommandargs_; }
        /// Returns latexargs() + postcommandargs().
-       /// But note that it returns a *copy*, not a reference, so do not do 
+       /// But note that it returns a *copy*, not a reference, so do not do
        /// anything like:
        ///   Layout::LaTeXArgMap::iterator it = args().begin();
        ///   Layout::LaTeXArgMap::iterator en = args().end();
@@ -120,7 +122,7 @@ public:
        std::string const & htmlattr() const;
        /// Tag for individual paragraphs in the inset. Default is none.
        std::string const & htmlinnertag() const { return htmlinnertag_; }
-       /// Attributes for that tag. Default (if a tag is provided) is: 
+       /// Attributes for that tag. Default (if a tag is provided) is:
        /// class="name_inner".
        std::string const & htmlinnerattr() const;
        /// A label for this environment, possibly including a reference
@@ -132,7 +134,7 @@ public:
        ///
        inline std::string htmllabeltag() const { return "span"; }
        ///
-       std::string htmllabelattr() const 
+       std::string htmllabelattr() const
                { return "class=\"" + defaultCSSClass() + "_label\""; }
        /// CSS associated with this inset.
        docstring htmlstyle() const;
@@ -156,10 +158,21 @@ public:
        ///
        bool isPassThru() const { return passthru_; }
        ///
+       docstring passThruChars() const { return passthru_chars_; }
+       ///
+       std::string newlineCmd() const { return newline_cmd_; }
+       ///
        bool parbreakIsNewline() const { return parbreakisnewline_; }
        ///
+       bool parbreakIgnored() const { return parbreakignored_; }
+       ///
        bool isNeedProtect() const { return needprotect_; }
        ///
+       bool needsCProtect() const { return needcprotect_; }
+       /// Protection of some elements such as \ref and \cite
+       /// in \mbox (needed by commands building on soul or ulem)
+       bool isNeedMBoxProtect() const { return needmboxprotect_; }
+       ///
        bool isFreeSpacing() const { return freespacing_; }
        ///
        bool isKeepEmpty() const { return keepempty_; }
@@ -179,6 +192,14 @@ public:
        bool forcelocalfontswitch() const { return forcelocalfontswitch_; }
        ///
        docstring const & obsoleted_by() const { return obsoleted_by_; }
+       ///
+       bool addToToc() const { return add_to_toc_; }
+       ///
+       std::string tocType() const { return toc_type_; }
+       ///
+       bool isTocCaption() const { return is_toc_caption_; }
+       ///
+       bool editExternally () const { return edit_external_; }
 private:
        ///
        void makeDefaultCSS() const;
@@ -197,6 +218,8 @@ private:
        ///
        docstring labelstring_;
        ///
+       docstring menustring_;
+       ///
        bool contentaslabel_;
        ///
        InsetDecoration decoration_;
@@ -255,15 +278,21 @@ private:
        std::set<std::string> requires_;
        ///
        bool multipar_;
-       /// 
+       ///
        bool custompars_;
        ///
        bool forceplain_;
        ///
        bool passthru_;
        ///
+       docstring passthru_chars_;
+       ///
+       std::string newline_cmd_;
+       ///
        bool parbreakisnewline_;
        ///
+       bool parbreakignored_;
+       ///
        bool freespacing_;
        ///
        bool keepempty_;
@@ -273,6 +302,10 @@ private:
        bool forceownlines_;
        ///
        bool needprotect_;
+       ///
+       bool needcprotect_;
+       ///
+       bool needmboxprotect_;
        /// should the contents be written to TOC strings?
        bool intoc_;
        /// check spelling of this inset?
@@ -292,6 +325,14 @@ private:
        Layout::LaTeXArgMap latexargs_;
        ///
        Layout::LaTeXArgMap postcommandargs_;
+       ///
+       bool add_to_toc_;
+       ///
+       std::string toc_type_;
+       ///
+       bool is_toc_caption_;
+       ///
+       bool edit_external_;
 };
 
 ///