]> git.lyx.org Git - features.git/blobdiff - src/lyxtextclass.h
Replace LString.h with support/std_string.h,
[features.git] / src / lyxtextclass.h
index 53ccef4c12568ca657942efb6f6e23d6edbc56f2..9c8b289fac73c23ba52dd4ed17bf0fda2e8cb24b 100644 (file)
@@ -4,14 +4,14 @@
  * 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
 #define LYXTEXTCLASS_H
 
 #include "lyxlayout.h"
-#include "LString.h"
+#include "support/std_string.h"
 #include "lyxlayout_ptr_fwd.h"
 
 #include "support/types.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_;
 };