lyx_mirror/src/LyXTextClassList.h

71 lines
1.4 KiB
C
Raw Normal View History

// -*- C++ -*-
/**
* \file LyXTextClassList.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bj<EFBFBD>nnes
*
* Full author contact details are available in file CREDITS.
*/
#ifndef LYXTEXTCLASSLIST_H
#define LYXTEXTCLASSLIST_H
#include "LyXTextClass.h"
#include "support/types.h"
#include <boost/utility.hpp>
#include <string>
#include <vector>
namespace lyx {
class LyXLayout;
/// Reads the style files
extern bool LyXSetStyle();
///
class LyXTextClassList : boost::noncopyable {
public:
///
typedef std::vector<LyXTextClass> ClassList;
///
typedef ClassList::const_iterator const_iterator;
///
const_iterator begin() const { return classlist_.begin(); }
///
const_iterator end() const { return classlist_.end(); }
/// Gets textclass number from name, -1 if textclass name does not exist
std::pair<bool, textclass_type> const
numberOfClass(std::string const & 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<bool, textclass_type> const
addTextClass(std::string const & textclass, std::string const & path);
private:
///
mutable ClassList classlist_;
};
///
extern LyXTextClassList textclasslist;
} // namespace lyx
#endif