lyx_mirror/src/TocBackend.cpp

279 lines
7.0 KiB
C++
Raw Normal View History

/**
* \file TocBackend.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Jean-Marc Lasgouttes
* \author Angus Leeming
* \author Abdelrazak Younes
* \author Guillaume Munch
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "TocBackend.h"
#include "Buffer.h"
#include "BufferParams.h"
#include "InsetList.h"
#include "Paragraph.h"
#include "TextClass.h"
#include "insets/InsetText.h"
#include "support/debug.h"
#include "support/docstream.h"
#include "support/gettext.h"
#include "support/lassert.h"
#include "support/lstrings.h"
using namespace std;
namespace lyx {
2015-09-27 06:05:00 +00:00
///////////////////////////////////////////////////////////////////////////
//
// TocItem implementation
//
///////////////////////////////////////////////////////////////////////////
TocItem::TocItem(DocIterator const & dit, int d, docstring const & s,
bool output_active, FuncRequest action)
: dit_(dit), depth_(d), str_(s), output_(output_active),
2016-06-02 20:40:11 +00:00
action_(action)
{
}
int TocItem::id() const
{
return dit_.paragraph().id();
}
docstring const TocItem::asString() const
{
static char_type const cross = 0x2716; // ✖ U+2716 HEAVY MULTIPLICATION X
static char_type const thin = 0x2009; // U+2009 THIN SPACE
2015-09-27 06:05:00 +00:00
docstring prefix;
if (!output_) {
prefix += cross;
prefix += thin;
2015-09-27 06:05:00 +00:00
}
return prefix + str_;
}
FuncRequest TocItem::action() const
{
2015-09-27 06:05:00 +00:00
if (action_.action() == LFUN_UNKNOWN_ACTION) {
2017-01-09 22:15:16 +00:00
return FuncRequest(LFUN_PARAGRAPH_GOTO, dit_.paragraphGotoArgument());
2015-09-27 06:05:00 +00:00
} else
return action_;
}
///////////////////////////////////////////////////////////////////////////
//
2017-01-09 22:15:16 +00:00
// TocBackend implementation
//
///////////////////////////////////////////////////////////////////////////
Toc::const_iterator TocBackend::findItem(Toc const & toc,
DocIterator const & dit)
{
Toc::const_iterator last = toc.begin();
Toc::const_iterator it = toc.end();
if (it == last)
return it;
--it;
DocIterator dit_text = dit.getInnerText();
for (; it != last; --it) {
// We verify that we don't compare contents of two
// different document. This happens when you
// have parent and child documents.
2017-01-09 22:15:16 +00:00
if (&it->dit()[0].inset() != &dit_text[0].inset())
continue;
2017-01-09 22:15:16 +00:00
if (it->dit() <= dit_text)
return it;
}
// We are before the first Toc Item:
return last;
}
Toc::iterator TocBackend::findItem(Toc & toc, int depth, docstring const & str)
{
if (toc.empty())
return toc.end();
Toc::iterator it = toc.begin();
Toc::iterator itend = toc.end();
for (; it != itend; ++it) {
if (it->depth() == depth && it->str() == str)
break;
}
return it;
}
shared_ptr<Toc const> TocBackend::toc(string const & type) const
{
// Is the type already supported?
TocList::const_iterator it = tocs_.find(type);
LASSERT(it != tocs_.end(), { return make_shared<Toc>(); });
return it->second;
}
shared_ptr<Toc> TocBackend::toc(string const & type)
{
2016-06-02 20:40:11 +00:00
// std::map::insert only really performs the insertion if the key is not
// already bound, and otherwise returns an iterator to the element already
// there, see manual.
return tocs_.insert({type, make_shared<Toc>()}).first->second;
}
2016-06-02 20:40:11 +00:00
TocBuilder & TocBackend::builder(string const & type)
{
2016-06-02 20:40:11 +00:00
auto p = make_unique<TocBuilder>(toc(type));
return * builders_.insert(make_pair(type, move(p))).first->second;
}
// FIXME: This function duplicates functionality from InsetText::iterateForToc.
// Both have their own way of computing the TocItem for "tableofcontents". The
// TocItem creation and update should be made in a dedicated function and
// updateItem should be rewritten to uniformly update the matching items from
// all TOCs.
bool TocBackend::updateItem(DocIterator const & dit_in)
{
// we need a text
DocIterator dit = dit_in.getInnerText();
if (dit.text()->getTocLevel(dit.pit()) == Layout::NOT_IN_TOC)
return false;
if (toc("tableofcontents")->empty()) {
// FIXME: should not happen,
// a call to TocBackend::update() is missing somewhere
LYXERR0("TocBackend::updateItem called but the TOC is empty!");
return false;
}
BufferParams const & bufparams = buffer_->params();
const int min_toclevel = bufparams.documentClass().min_toclevel();
Toc::const_iterator toc_item = item("tableofcontents", dit);
docstring tocstring;
// For each paragraph, traverse its insets and let them add
// their toc items
//
// FIXME: This is supposed to accomplish the same as the body of
// InsetText::iterateForToc(), probably
2017-01-09 22:15:16 +00:00
Paragraph & par = toc_item->dit().paragraph();
InsetList::const_iterator it = par.insetList().begin();
InsetList::const_iterator end = par.insetList().end();
for (; it != end; ++it) {
Inset & inset = *it->inset;
if (inset.lyxCode() == ARG_CODE) {
tocstring = par.labelString();
if (!tocstring.empty())
tocstring += ' ';
inset.asInsetText()->text().forOutliner(tocstring,TOC_ENTRY_LENGTH);
break;
}
}
2017-01-09 22:15:16 +00:00
int const toclevel = toc_item->dit().text()->
getTocLevel(toc_item->dit().pit());
if (toclevel != Layout::NOT_IN_TOC && toclevel >= min_toclevel
&& tocstring.empty())
par.forOutliner(tocstring, TOC_ENTRY_LENGTH);
support::truncateWithEllipsis(tocstring, TOC_ENTRY_LENGTH);
2015-09-27 06:05:00 +00:00
const_cast<TocItem &>(*toc_item).str(tocstring);
buffer_->updateTocItem("tableofcontents", dit);
return true;
}
2015-09-27 06:05:00 +00:00
void TocBackend::update(bool output_active, UpdateType utype)
{
for (TocList::iterator it = tocs_.begin(); it != tocs_.end(); ++it)
it->second->clear();
tocs_.clear();
builders_.clear();
if (!buffer_->isInternal()) {
DocIterator dit;
2015-09-27 06:05:00 +00:00
buffer_->inset().addToToc(dit, output_active, utype);
}
}
Toc::const_iterator TocBackend::item(string const & type,
DocIterator const & dit) const
{
TocList::const_iterator toclist_it = tocs_.find(type);
// Is the type supported?
// We will try to make the best of it in release mode
LASSERT(toclist_it != tocs_.end(), toclist_it = tocs_.begin());
return findItem(*toclist_it->second, dit);
}
void TocBackend::writePlaintextTocList(string const & type,
odocstringstream & os, size_t max_length) const
{
TocList::const_iterator cit = tocs_.find(type);
if (cit != tocs_.end()) {
Toc::const_iterator ccit = cit->second->begin();
Toc::const_iterator end = cit->second->end();
for (; ccit != end; ++ccit) {
os << ccit->asString() << from_utf8("\n");
if (os.str().size() > max_length)
break;
}
}
}
docstring TocBackend::outlinerName(string const & type) const
{
return translateIfPossible(
buffer_->params().documentClass().outlinerName(type));
}
bool TocBackend::isOther(std::string const & type)
{
return type == "graphics"
|| type == "note"
|| type == "branch"
|| type == "change"
|| type == "label"
|| type == "citation"
|| type == "equation"
|| type == "footnote"
|| type == "marginalnote"
|| type == "nomencl"
|| type == "listings"
|| type == "math-macro"
|| type == "external"
|| type == "senseless"
|| type == "index"
|| type.substr(0,6) == "index:";
}
} // namespace lyx