2001-12-28 13:26:54 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2001-12-28 13:26:54 +00:00
|
|
|
* LyX, The Document Processor
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2001-12-28 13:26:54 +00:00
|
|
|
* Copyright 1995 Matthias Ettrich
|
|
|
|
* Copyright 1995-2001 The LyX Team.
|
|
|
|
*
|
|
|
|
* ====================================================== */
|
|
|
|
|
|
|
|
#ifndef LYXTEXTCLASSLIST_H
|
|
|
|
#define LYXTEXTCLASSLIST_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "support/types.h"
|
|
|
|
|
|
|
|
#include <boost/utility.hpp>
|
|
|
|
|
|
|
|
#include "LString.h"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class LyXTextClass;
|
|
|
|
class LyXLayout;
|
|
|
|
|
|
|
|
/// Reads the style files
|
|
|
|
extern void 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.
|
|
|
|
Returns -1 if textclass name does not exist
|
|
|
|
*/
|
|
|
|
std::pair<bool, lyx::textclass_type> const
|
|
|
|
NumberOfClass(string const & textclass) const;
|
|
|
|
|
|
|
|
///
|
2002-03-02 16:39:54 +00:00
|
|
|
LyXTextClass const & operator[](lyx::textclass_type textclass) const;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
|
|
/** Read textclass list.
|
|
|
|
Returns false if this fails
|
|
|
|
*/
|
|
|
|
bool Read();
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
mutable ClassList classlist;
|
|
|
|
///
|
2002-03-02 16:39:54 +00:00
|
|
|
void Add(LyXTextClass const &);
|
2001-12-28 13:26:54 +00:00
|
|
|
};
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
///
|
2001-12-28 13:26:54 +00:00
|
|
|
extern LyXTextClassList textclasslist;
|
|
|
|
|
|
|
|
#endif
|