]> git.lyx.org Git - lyx.git/blobdiff - src/TextClass.h
Fix yet another thinko in the math grid paste code
[lyx.git] / src / TextClass.h
index f42b270326e173c6f4aa335c8c6e8fe34a8b0969..207b868a4b5379a5e2d5dd48eea288dd5b74317f 100644 (file)
@@ -211,7 +211,11 @@ public:
        bool hasOutputFormat() const { return has_output_format_; }
        /// Return the non-localised names for the toc types.
        std::map<std::string, docstring> const &
-       outlinerNames() const { return outliner_names_; }
+               outlinerNames() const { return outliner_names_; }
+       /// \returns Layout named \p name if it exists, otherwise 0
+       Layout const * getLayout(docstring const & name) const;
+       /// \returns Layout named \p name if it exists, otherwise 0
+       Layout * getLayout(docstring const & name);
 
 protected:
        /// Protect construction
@@ -276,8 +280,12 @@ protected:
        std::string opt_pagestyle_;
        /// Specific class options
        std::string options_;
+       /// Format of the fontsize option
+       std::string fontsize_format_;
        /// Default page size
        std::string pagesize_;
+       /// Format of the papersize option
+       std::string pagesize_format_;
        ///
        std::string pagestyle_;
        ///
@@ -300,7 +308,7 @@ protected:
        /// latex packages loaded by document class.
        std::set<std::string> provides_;
        /// latex packages requested by document class.
-       std::set<std::string> requires_;
+       std::set<std::string> required_;
        ///
        std::map<std::string, std::string> package_options_;
        /// default modules wanted by document class
@@ -461,8 +469,12 @@ public:
        ///
        std::string const & class_header() const { return class_header_; }
        ///
+       std::string const & fontsizeformat() const { return fontsize_format_; }
+       ///
        std::string const & pagesize() const { return pagesize_; }
        ///
+       std::string const & pagesizeformat() const { return pagesize_format_; }
+       ///
        std::string const & pagestyle() const { return pagestyle_; }
        ///
        std::string const & tablestyle() const { return tablestyle_; }
@@ -482,7 +494,7 @@ public:
        /// is this feature already provided by the class?
        bool provides(std::string const & p) const;
        /// features required by the class?
-       std::set<std::string> const & requires() const { return requires_; }
+       std::set<std::string> const & required() const { return required_; }
        /// package options to write to LaTeX file
        std::map<std::string, std::string> const & packageOptions() const
                { return package_options_; }