mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
6add1994c7
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18097 a592a061-630c-0410-9148-cb99ea01b6c8
71 lines
1.4 KiB
C++
71 lines
1.4 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file TextClassList.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef LYXTEXTCLASSLIST_H
|
|
#define LYXTEXTCLASSLIST_H
|
|
|
|
#include "TextClass.h"
|
|
|
|
#include "support/types.h"
|
|
|
|
#include <boost/utility.hpp>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class Layout;
|
|
|
|
/// Reads the style files
|
|
extern bool LyXSetStyle();
|
|
|
|
///
|
|
class TextClassList : boost::noncopyable {
|
|
public:
|
|
///
|
|
typedef std::vector<TextClass> 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;
|
|
|
|
///
|
|
TextClass 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 TextClassList textclasslist;
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|