]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLayout.h
Prettify the tooltip for footnotes.
[lyx.git] / src / insets / InsetLayout.h
index 33fcffaddd980d5e56a4c6402b30d5797db221d5..687561f0a21cc30d7004bca8d5631f67ab8c5919 100644 (file)
@@ -76,17 +76,25 @@ public:
        ///
        std::string latexparam() const { return latexparam_; }
        ///
+       docstring leftdelim() const { return leftdelim_; }
+       ///
+       docstring rightdelim() const { return rightdelim_; }
+       ///
        FontInfo font() const { return font_; }
        ///
        FontInfo labelfont() const { return labelfont_; }
        ///
        ColorCode bgcolor() const { return bgcolor_; }
        ///
+       Layout::LaTeXArgMap args() const;
+       ///
        Layout::LaTeXArgMap latexargs() const { return latexargs_; }
        ///
-       int optArgs() const;
+       Layout::LaTeXArgMap postcommandargs() const { return postcommandargs_; }
        ///
-       int requiredArgs() const;
+       unsigned int optArgs() const;
+       ///
+       unsigned int requiredArgs() const;
        ///
        docstring preamble() const { return preamble_; }
        /// Get language dependent macro definitions needed for this inset
@@ -158,6 +166,8 @@ public:
        bool resetsFont() const { return resetsfont_; }
        ///
        bool isDisplay() const { return display_; }
+       ///
+       bool forcelocalfontswitch() const { return forcelocalfontswitch_; }
 private:
        ///
        void makeDefaultCSS() const;
@@ -188,6 +198,10 @@ private:
        ///
        std::string latexparam_;
        ///
+       docstring leftdelim_;
+       ///
+       docstring rightdelim_;
+       ///
        FontInfo font_;
        ///
        FontInfo labelfont_;
@@ -255,11 +269,16 @@ private:
        ///
        bool display_;
        ///
+       bool forcelocalfontswitch_;
+       ///
        Layout::LaTeXArgMap latexargs_;
+       ///
+       Layout::LaTeXArgMap postcommandargs_;
 };
 
 ///
 InsetLayout::InsetLyXType translateLyXType(std::string const & str);
+InsetLayout::InsetDecoration translateDecoration(std::string const & str);
 
 } // namespace lyx