X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxtextclasslist.h;h=fdf6d98b2c104795719ad6cab7b93bec2eda3096;hb=3ef684e752bb5afdbfdea51d4c3df4afe1461916;hp=a84a05aac5f609948af3fcd07cd185824559d68a;hpb=8283e978f8d621041c432b9b88a476bfd567385c;p=lyx.git diff --git a/src/lyxtextclasslist.h b/src/lyxtextclasslist.h index a84a05aac5..fdf6d98b2c 100644 --- a/src/lyxtextclasslist.h +++ b/src/lyxtextclasslist.h @@ -1,34 +1,33 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file lyxtextclasslist.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS. + */ #ifndef LYXTEXTCLASSLIST_H #define LYXTEXTCLASSLIST_H -#ifdef __GNUG__ -#pragma interface -#endif +#include "lyxtextclass.h" #include "support/types.h" #include -#include "LString.h" - +#include #include -class LyXTextClass; + +namespace lyx { + class LyXLayout; /// Reads the style files -extern void LyXSetStyle(); +extern bool LyXSetStyle(); /// class LyXTextClassList : boost::noncopyable { @@ -38,31 +37,34 @@ public: /// typedef ClassList::const_iterator const_iterator; /// - const_iterator begin() const { return classlist.begin(); } + const_iterator begin() const { return classlist_.begin(); } /// - const_iterator end() const { return classlist.end(); } + const_iterator end() const { return classlist_.end(); } - /** Gets textclass number from name. - Returns -1 if textclass name does not exist - */ - std::pair const - NumberOfClass(string const & textclass) const; + /// Gets textclass number from name, -1 if textclass name does not exist + 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(); + + /// 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); - /** Read textclass list. - Returns false if this fails - */ - bool Read(); private: /// - mutable ClassList classlist; - /// - void Add(LyXTextClass const &); + mutable ClassList classlist_; }; /// extern LyXTextClassList textclasslist; + +} // namespace lyx + #endif