]> git.lyx.org Git - lyx.git/blobdiff - src/lyxtextclasslist.h
update Basque and Romanian l10n
[lyx.git] / src / lyxtextclasslist.h
index 5e3ec8e9a95d802cab33ce911a34acca385c70e1..fdf6d98b2c104795719ad6cab7b93bec2eda3096 100644 (file)
 #ifndef LYXTEXTCLASSLIST_H
 #define LYXTEXTCLASSLIST_H
 
+#include "lyxtextclass.h"
+
 #include "support/types.h"
 
 #include <boost/utility.hpp>
 
-#include "LString.h"
-
+#include <string>
 #include <vector>
 
-class LyXTextClass;
+
+namespace lyx {
+
 class LyXLayout;
 
 /// Reads the style files
-extern void LyXSetStyle();
+extern bool LyXSetStyle();
 
 ///
 class LyXTextClassList : boost::noncopyable {
@@ -39,14 +42,20 @@ public:
        const_iterator end() const { return classlist_.end(); }
 
        /// Gets textclass number from name, -1 if textclass name does not exist
-       std::pair<bool, lyx::textclass_type> const
-       NumberOfClass(string const & textclass) const;
+       std::pair<bool, textclass_type> const
+       numberOfClass(std::string const & textclass) const;
 
        ///
-       LyXTextClass const & operator[](lyx::textclass_type textclass) const;
+       LyXTextClass const & operator[](textclass_type textclass) const;
 
        /// Read textclass list.  Returns false if this fails.
-       bool Read();
+       bool read();
+       
+       /// add a textclass from user local directory. 
+       /// Return ture/false, and textclass number
+       std::pair<bool, textclass_type> const
+       addTextClass(std::string const & textclass, std::string const & path);
+
 private:
        ///
        mutable ClassList classlist_;
@@ -55,4 +64,7 @@ private:
 ///
 extern LyXTextClassList textclasslist;
 
+
+} // namespace lyx
+
 #endif