X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxtextclasslist.h;h=fdf6d98b2c104795719ad6cab7b93bec2eda3096;hb=e5a46922e916a06ad1b958d5895cc3cfb4f13d2c;hp=15603182343662065d12608287289d9bd5bc793c;hpb=eb36b71ce3b9880a9b577f3db25d16e6a86cd338;p=lyx.git diff --git a/src/lyxtextclasslist.h b/src/lyxtextclasslist.h index 1560318234..fdf6d98b2c 100644 --- a/src/lyxtextclasslist.h +++ b/src/lyxtextclasslist.h @@ -12,6 +12,8 @@ #ifndef LYXTEXTCLASSLIST_H #define LYXTEXTCLASSLIST_H +#include "lyxtextclass.h" + #include "support/types.h" #include @@ -19,11 +21,13 @@ #include #include -class LyXTextClass; + +namespace lyx { + class LyXLayout; /// Reads the style files -extern void LyXSetStyle(); +extern bool LyXSetStyle(); /// class LyXTextClassList : boost::noncopyable { @@ -38,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 const - NumberOfClass(std::string const & textclass) const; + std::pair 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 const + addTextClass(std::string const & textclass, std::string const & path); + private: /// mutable ClassList classlist_; @@ -54,4 +64,7 @@ private: /// extern LyXTextClassList textclasslist; + +} // namespace lyx + #endif