lyx_mirror/src/toc.h
Lars Gullik Bjønnes 20b42535af put namespace toc inside namespace lxy
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7384 a592a061-630c-0410-9148-cb99ea01b6c8
2003-07-27 13:18:55 +00:00

91 lines
1.7 KiB
C++

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 2002 The LyX Team.
*
* ======================================================
*
* \file toc.h
* \author Angus Leeming <a.leeming@ic.ac.uk>
* \author Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
*/
#ifndef TOC_H
#define TOC_H
#include <config.h>
#include "support/LOstream.h"
#include "LString.h"
#include <map>
#include <vector>
class Buffer;
class LyXView;
class Paragraph;
/** Nice functions and objects to handle TOCs
*/
namespace lyx {
namespace toc {
///
struct TocItem {
TocItem(int par_id, int d, string const & s)
: id_(par_id), depth(d), str(s) {}
///
string const asString() const;
/// set cursor in LyXView to this TocItem
void goTo(LyXView & lv_) const;
/// the action corresponding to the goTo above
int action() const;
/// Paragraph ID containing this item
int id_;
/// nesting depth
int depth;
///
string str;
};
///
typedef std::vector<TocItem> Toc;
///
typedef std::map<string, Toc> TocList;
///
TocList const getTocList(Buffer const *);
///
std::vector<string> const getTypes(Buffer const *);
///
void asciiTocList(string const &, Buffer const *, std::ostream &);
/** Given the cmdName of the TOC param, returns the type used
by ControlToc::getContents() */
string const getType(string const & cmdName);
inline
bool operator==(TocItem const & a, TocItem const & b)
{
return a.id_ == b.id_ && a.str == b.str;
// No need to compare depth.
}
inline
bool operator!=(TocItem const & a, TocItem const & b)
{
return !(a == b);
}
} // namespace toc
} // namespace lyx
#endif // CONTROLTOC_H