]> git.lyx.org Git - lyx.git/blobdiff - src/TextClass.h
simplify.
[lyx.git] / src / TextClass.h
index 2d640031f0d1178b350d0fce69fa60dca2ae53f1..cc8ed45ad25b6ba90b4868ae36e1f6cd5b388704 100644 (file)
@@ -96,11 +96,6 @@ public:
        // NOTE: Layout pointers are directly assigned to paragraphs so a
        // container that does not invalidate these pointers after insertion
        // is needed.
-       //
-       // NOTE: It makes sense to add unknown layouts to DocumentClass
-       // and make them buffer-dependent. However, this requires
-       // reimplementation of a lot of functions such as hasLayout
-       // and operator[], with little benefit.
        typedef std::list<Layout> LayoutList;
        /// The inset layouts available to this class
        typedef std::map<docstring, InsetLayout> InsetLayouts;
@@ -127,11 +122,6 @@ public:
        bool isDefaultLayout(Layout const &) const;
        /// 
        bool isPlainLayout(Layout const &) const;
-       /// Create a default layout for this textclass.
-       /** \param unknown Set to true if this layout is a default layout used to
-        * represent an unknown layout
-        */
-       Layout createEmptyLayout(docstring const & name, bool unknown = false) const;
        /// returns a special layout for use when we don't really want one,
        /// e.g., in table cells
        Layout const & emptyLayout() const 
@@ -143,10 +133,10 @@ public:
        size_t layoutCount() const { return layoutlist_.size(); }
        ///
        bool hasLayout(docstring const & name) const;
-       /// add a default layout \c name if it does not exist in layoutlist_
-       void addLayoutIfNeeded(docstring const & name) const;
        ///
        Layout const & operator[](docstring const & vname) const;
+       /// Inset layouts of this doc class
+       InsetLayouts const & insetLayouts() const { return insetlayoutlist_; };
 
        ///////////////////////////////////////////////////////////////////
        // reading routines
@@ -201,7 +191,12 @@ protected:
        TextClass();
        ///
        Layout & operator[](docstring const & vname);
-
+       /// Create an empty layout for this textclass.
+       /** \param unknown Set to true if this layout is a default layout used to
+        * represent an unknown layout
+        */
+       Layout createEmptyLayout(docstring const & name, bool unknown = false) const;
+       
        ///////////////////////////////////////////////////////////////////
        // non-const iterators
        ///////////////////////////////////////////////////////////////////
@@ -253,6 +248,8 @@ protected:
        std::set<std::string> provides_;
        /// latex packages requested by document class.
        std::set<std::string> requires_;
+       /// modules wanted by document class
+       std::set<std::string> usemod_;
        ///
        unsigned int columns_;
        ///
@@ -335,8 +332,6 @@ public:
        bool hasLaTeXLayout(std::string const & lay) const;
        /// A DocumentClass nevers count as loaded, since it is dynamic
        virtual bool loaded() { return false; }
-       /// Inset layouts of this doc class
-       InsetLayouts const & insetLayouts() const { return insetlayoutlist_; };
        /// \return the layout object of an inset given by name. If the name
        /// is not found as such, the part after the ':' is stripped off, and
        /// searched again. In this way, an error fallback can be provided:
@@ -347,6 +342,8 @@ public:
        InsetLayout const & insetLayout(docstring const & name) const;
        /// an empty inset layout for use as a default
        static InsetLayout const & emptyInsetLayout() { return empty_insetlayout_; }
+       /// add an empty layout \c name if it does not exist in layoutlist_
+       void addLayoutIfNeeded(docstring const & name) const;
 
        ///////////////////////////////////////////////////////////////////
        // accessors