2002-07-21 15:51:07 +00:00
|
|
|
// -*- 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>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "toc.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "frontends/LyXView.h"
|
|
|
|
#include "lyxfunc.h"
|
|
|
|
#include "LyXAction.h"
|
|
|
|
#include "paragraph.h"
|
|
|
|
#include "insets/insetfloat.h"
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
using std::vector;
|
2002-07-21 16:59:01 +00:00
|
|
|
using std::max;
|
|
|
|
using std::endl;
|
|
|
|
using std::ostream;
|
2002-07-21 15:51:07 +00:00
|
|
|
|
|
|
|
namespace toc
|
|
|
|
{
|
|
|
|
|
|
|
|
string const TocItem::asString() const
|
|
|
|
{
|
|
|
|
return string(4 * depth, ' ') + str;
|
|
|
|
}
|
|
|
|
|
2002-07-28 22:50:13 +00:00
|
|
|
|
2002-07-21 15:51:07 +00:00
|
|
|
void TocItem::goTo(LyXView & lv_) const
|
|
|
|
{
|
|
|
|
string const tmp = tostr(par->id());
|
2002-08-13 14:40:38 +00:00
|
|
|
lv_.getLyXFunc().dispatch(FuncRequest(LFUN_GOTO_PARAGRAPH, tmp));
|
2002-07-21 15:51:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int TocItem::action() const
|
|
|
|
{
|
|
|
|
return lyxaction.getPseudoAction(LFUN_GOTO_PARAGRAPH,
|
|
|
|
tostr(par->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;
|
2002-07-24 22:32:03 +00:00
|
|
|
if (!buf)
|
|
|
|
return toclist;
|
2002-08-12 00:15:19 +00:00
|
|
|
Paragraph * par = &*(buf->paragraphs.begin());
|
2002-07-21 15:51:07 +00:00
|
|
|
|
2002-07-21 21:21:06 +00:00
|
|
|
LyXTextClass const & textclass = buf->params.getLyXTextClass();
|
2002-07-21 15:51:07 +00:00
|
|
|
|
|
|
|
while (par) {
|
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
#warning bogus type (Lgb)
|
|
|
|
#endif
|
|
|
|
char const labeltype = par->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(par, depth,
|
|
|
|
par->asString(buf, true));
|
|
|
|
toclist["TOC"].push_back(item);
|
|
|
|
}
|
2002-07-28 22:50:13 +00:00
|
|
|
|
2002-07-21 15:51:07 +00:00
|
|
|
// For each paragraph, traverse its insets and look for
|
|
|
|
// FLOAT_CODE
|
2002-08-11 15:03:52 +00:00
|
|
|
InsetList::iterator it = par->insetlist.begin();
|
|
|
|
InsetList::iterator end = par->insetlist.end();
|
2002-07-21 21:21:06 +00:00
|
|
|
for (; it != end; ++it) {
|
2002-08-11 15:03:52 +00:00
|
|
|
if (it.getInset()->lyxCode() == Inset::FLOAT_CODE) {
|
2002-07-21 21:21:06 +00:00
|
|
|
InsetFloat * il =
|
2002-08-11 15:03:52 +00:00
|
|
|
static_cast<InsetFloat*>(it.getInset());
|
2002-07-28 22:50:13 +00:00
|
|
|
il->addToToc(toclist, buf);
|
2002-07-21 15:51:07 +00:00
|
|
|
}
|
2002-07-28 22:50:13 +00:00
|
|
|
}
|
2002-07-21 15:51:07 +00:00
|
|
|
|
|
|
|
par = par->next();
|
|
|
|
}
|
|
|
|
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
|