lyx_mirror/src/toc.C
André Pönitz 596dec6592 return a Paragraph & from ParIterator::operator*()
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7161 a592a061-630c-0410-9148-cb99ea01b6c8
2003-06-12 11:09:55 +00:00

146 lines
3.1 KiB
C

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 2002 The LyX Team.
*
* ======================================================
*
* \file toc.C
* \author Angus Leeming <a.leeming@ic.ac.uk>
* \author Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
*/
#include <config.h>
#include "toc.h"
#include "buffer.h"
#include "LyXAction.h"
#include "paragraph.h"
#include "debug.h"
#include "iterators.h"
#include "insets/insetfloat.h"
#include "insets/insetwrap.h"
#include "support/tostr.h"
#include "frontends/LyXView.h"
using std::vector;
using std::max;
using std::endl;
using std::ostream;
namespace toc
{
string const TocItem::asString() const
{
return string(4 * depth, ' ') + str;
}
void TocItem::goTo(LyXView & lv_) const
{
string const tmp = tostr(id_);
lv_.dispatch(FuncRequest(LFUN_GOTO_PARAGRAPH, tmp));
}
int TocItem::action() const
{
return lyxaction.getPseudoAction(LFUN_GOTO_PARAGRAPH,
tostr(id_));
}
string const getType(string const & cmdName)
{
// special case
if (cmdName == "tableofcontents")
return "TOC";
else
return cmdName;
}
TocList const getTocList(Buffer const * buf)
{
TocList toclist;
if (!buf)
return toclist;
LyXTextClass const & textclass = buf->params.getLyXTextClass();
ParConstIterator pit = buf->par_iterator_begin();
ParConstIterator end = buf->par_iterator_end();
for (; pit != end; ++pit) {
#ifdef WITH_WARNINGS
#warning bogus type (Lgb)
#endif
char const labeltype = pit->layout()->labeltype;
if (labeltype >= LABEL_COUNTER_CHAPTER
&& labeltype <= LABEL_COUNTER_CHAPTER + buf->params.tocdepth) {
// insert this into the table of contents
const int depth = max(0, labeltype - textclass.maxcounter());
TocItem const item(pit->id(), depth,
pit->asString(buf, true));
toclist["TOC"].push_back(item);
}
// For each paragraph, traverse its insets and look for
// FLOAT_CODE or WRAP_CODE
InsetList::const_iterator it = pit->insetlist.begin();
InsetList::const_iterator end = pit->insetlist.end();
for (; it != end; ++it) {
if (it->inset->lyxCode() == Inset::FLOAT_CODE) {
InsetFloat * il =
static_cast<InsetFloat*>(it->inset);
il->addToToc(toclist, buf);
} else if (it->inset->lyxCode() == Inset::WRAP_CODE) {
InsetWrap * il =
static_cast<InsetWrap*>(it->inset);
il->addToToc(toclist, buf);
}
}
}
return toclist;
}
vector<string> const getTypes(Buffer const * buffer)
{
vector<string> types;
TocList const tmp = getTocList(buffer);
TocList::const_iterator cit = tmp.begin();
TocList::const_iterator end = tmp.end();
for (; cit != end; ++cit) {
types.push_back(cit->first);
}
return types;
}
void asciiTocList(string const & type, Buffer const * buffer, ostream & os)
{
TocList const toc_list = getTocList(buffer);
TocList::const_iterator cit = toc_list.find(type);
if (cit != toc_list.end()) {
Toc::const_iterator ccit = cit->second.begin();
Toc::const_iterator end = cit->second.end();
for (; ccit != end; ++ccit)
os << ccit->asString() << '\n';
}
}
} // namespace toc