]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLayout.h
de.po
[lyx.git] / src / insets / InsetLayout.h
index 9589fadd5e13c6f8c29900e0d7f2c06b7e3140da..0eb27085fbdbd1e3b3a0835645ff706bccbcd97d 100644 (file)
@@ -85,12 +85,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 +120,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 +132,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;
@@ -162,6 +162,11 @@ public:
        ///
        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_; }
@@ -181,6 +186,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;
@@ -257,7 +270,7 @@ private:
        std::set<std::string> requires_;
        ///
        bool multipar_;
-       /// 
+       ///
        bool custompars_;
        ///
        bool forceplain_;
@@ -277,6 +290,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?
@@ -296,6 +313,14 @@ private:
        Layout::LaTeXArgMap latexargs_;
        ///
        Layout::LaTeXArgMap postcommandargs_;
+       ///
+       bool add_to_toc_;
+       ///
+       std::string toc_type_;
+       ///
+       bool is_toc_caption_;
+       ///
+       bool edit_external_;
 };
 
 ///