]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLayout.h
sk.po: layouts + modules
[lyx.git] / src / insets / InsetLayout.h
index 33fcffaddd980d5e56a4c6402b30d5797db221d5..6bad059232ec7f390bc54315094879e3224c8c87 100644 (file)
@@ -76,6 +76,10 @@ 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_; }
@@ -84,9 +88,9 @@ public:
        ///
        Layout::LaTeXArgMap latexargs() const { return latexargs_; }
        ///
-       int optArgs() const;
+       unsigned int optArgs() const;
        ///
-       int requiredArgs() const;
+       unsigned int requiredArgs() const;
        ///
        docstring preamble() const { return preamble_; }
        /// Get language dependent macro definitions needed for this inset
@@ -158,6 +162,8 @@ public:
        bool resetsFont() const { return resetsfont_; }
        ///
        bool isDisplay() const { return display_; }
+       ///
+       bool forcelocalfontswitch() const { return forcelocalfontswitch_; }
 private:
        ///
        void makeDefaultCSS() const;
@@ -188,6 +194,10 @@ private:
        ///
        std::string latexparam_;
        ///
+       docstring leftdelim_;
+       ///
+       docstring rightdelim_;
+       ///
        FontInfo font_;
        ///
        FontInfo labelfont_;
@@ -255,11 +265,14 @@ private:
        ///
        bool display_;
        ///
+       bool forcelocalfontswitch_;
+       ///
        Layout::LaTeXArgMap latexargs_;
 };
 
 ///
 InsetLayout::InsetLyXType translateLyXType(std::string const & str);
+InsetLayout::InsetDecoration translateDecoration(std::string const & str);
 
 } // namespace lyx