]> git.lyx.org Git - lyx.git/blobdiff - src/lyxtextclass.h
Point fix, earlier forgotten
[lyx.git] / src / lyxtextclass.h
index 53ccef4c12568ca657942efb6f6e23d6edbc56f2..485b8290b34429071cb23d9957d6e66f3884d251 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef LYXTEXTCLASS_H
@@ -35,7 +35,11 @@ public:
        explicit
        LyXTextClass(string const & = string(),
                     string const & = string(),
-                    string const & = string());
+                    string const & = string(),
+                    bool = false);
+
+       /// check whether the TeX class is available
+       bool isTeXClassAvailable() const;
 
        /// paragraph styles begin iterator.
        const_iterator begin() const { return layoutlist_.begin(); }
@@ -61,8 +65,6 @@ public:
 
        ///
        LyXLayout_ptr const & operator[](string const & vname) const;
-       ///
-       LyXLayout_ptr const & getEnv(string const & vname) const;
 
        /// Sees to that the textclass structure has been loaded
        bool load() const;
@@ -151,8 +153,6 @@ private:
        ///
        bool delete_layout(string const &);
        ///
-       bool delete_env(string const &);
-       ///
        bool do_readStyle(LyXLex &, LyXLayout &);
        /// Layout file name
        string name_;
@@ -206,9 +206,6 @@ private:
        /// Paragraph styles used in this layout
        LayoutList layoutlist_;
 
-       /// Environment styles used in this layout
-       LayoutList envlist_;
-
        /// available types of float, eg. figure, algorithm.
        boost::shared_ptr<FloatList> floatlist_;
 
@@ -217,6 +214,9 @@ private:
 
        /// Has this layout file been loaded yet?
        mutable bool loaded;
+
+       /// Is the TeX class available?
+       bool texClassAvail_;
 };