2006-04-26 13:33:51 +00:00
|
|
|
/**
|
2007-04-26 04:41:58 +00:00
|
|
|
* \file TocBackend.cpp
|
2006-04-26 13:33:51 +00:00
|
|
|
* 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
|
2015-09-01 16:08:35 +00:00
|
|
|
* \author Guillaume Munch
|
2006-04-26 13:33:51 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2006-11-11 00:35:14 +00:00
|
|
|
#include "TocBackend.h"
|
2006-04-26 13:33:51 +00:00
|
|
|
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Buffer.h"
|
|
|
|
#include "BufferParams.h"
|
2006-04-26 13:33:51 +00:00
|
|
|
#include "FloatList.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "FuncRequest.h"
|
2007-10-18 15:29:51 +00:00
|
|
|
#include "InsetList.h"
|
2007-09-29 20:02:32 +00:00
|
|
|
#include "Layout.h"
|
2006-04-26 13:33:51 +00:00
|
|
|
#include "LyXAction.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Paragraph.h"
|
2008-05-13 08:23:44 +00:00
|
|
|
#include "ParIterator.h"
|
2007-11-07 23:25:08 +00:00
|
|
|
#include "TextClass.h"
|
2006-04-26 13:33:51 +00:00
|
|
|
|
2010-06-04 22:44:58 +00:00
|
|
|
#include "insets/InsetArgument.h"
|
2006-04-26 13:33:51 +00:00
|
|
|
|
|
|
|
#include "support/convert.h"
|
2007-11-29 17:51:58 +00:00
|
|
|
#include "support/debug.h"
|
|
|
|
#include "support/docstream.h"
|
2006-04-26 13:33:51 +00:00
|
|
|
|
2008-04-30 08:26:40 +00:00
|
|
|
#include "support/lassert.h"
|
2008-03-15 00:22:54 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2006-04-26 13:33:51 +00:00
|
|
|
|
2008-03-15 00:22:54 +00:00
|
|
|
|
2007-06-12 12:29:19 +00:00
|
|
|
namespace lyx {
|
2006-04-26 13:33:51 +00:00
|
|
|
|
2015-09-27 06:05:00 +00:00
|
|
|
|
2006-04-26 13:33:51 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2007-09-29 20:02:32 +00:00
|
|
|
//
|
2006-11-13 16:53:49 +00:00
|
|
|
// TocItem implementation
|
2007-09-29 20:02:32 +00:00
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2006-04-26 13:33:51 +00:00
|
|
|
|
2010-04-26 00:43:08 +00:00
|
|
|
TocItem::TocItem(DocIterator const & dit, int d, docstring const & s,
|
2015-09-27 06:05:00 +00:00
|
|
|
bool output_active, docstring const & t, FuncRequest action) :
|
|
|
|
dit_(dit), depth_(d), str_(s), tooltip_(t), output_(output_active),
|
|
|
|
action_(action)
|
2006-04-26 13:33:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-16 10:36:57 +00:00
|
|
|
int TocItem::id() const
|
2006-04-26 13:33:51 +00:00
|
|
|
{
|
2008-05-13 08:23:44 +00:00
|
|
|
return dit_.paragraph().id();
|
2006-04-26 13:33:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-01 16:08:35 +00:00
|
|
|
docstring const & TocItem::tooltip() const
|
2006-04-26 13:33:51 +00:00
|
|
|
{
|
2015-09-01 16:08:35 +00:00
|
|
|
return tooltip_.empty() ? str_ : tooltip_;
|
2006-04-26 13:33:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-01 16:08:35 +00:00
|
|
|
docstring const TocItem::asString() const
|
2006-04-26 13:33:51 +00:00
|
|
|
{
|
2015-09-27 06:05:00 +00:00
|
|
|
// U+2327 X IN A RECTANGLE BOX
|
|
|
|
// char_type const cross = 0x2327;
|
|
|
|
// U+274E NEGATIVE SQUARED CROSS MARK
|
|
|
|
char_type const cross = 0x274e;
|
|
|
|
docstring prefix;
|
|
|
|
if (!output_) {
|
|
|
|
prefix += cross;
|
|
|
|
prefix += " ";
|
|
|
|
}
|
|
|
|
return prefix + str_;
|
2006-04-26 13:33:51 +00:00
|
|
|
}
|
|
|
|
|
2015-09-27 06:05:00 +00:00
|
|
|
// convert a DocIterator into an argument to LFUN_PARAGRAPH_GOTO
|
|
|
|
docstring paragraph_goto_arg(DocIterator const & dit)
|
|
|
|
{
|
|
|
|
CursorSlice const & s = dit.innerTextSlice();
|
|
|
|
return convert<docstring>(s.paragraph().id()) + ' ' +
|
|
|
|
convert<docstring>(s.pos());
|
|
|
|
}
|
2006-04-26 13:33:51 +00:00
|
|
|
|
2015-09-01 16:08:35 +00:00
|
|
|
FuncRequest TocItem::action() const
|
2010-04-26 00:43:08 +00:00
|
|
|
{
|
2015-09-27 06:05:00 +00:00
|
|
|
if (action_.action() == LFUN_UNKNOWN_ACTION) {
|
|
|
|
return FuncRequest(LFUN_PARAGRAPH_GOTO, paragraph_goto_arg(dit_));
|
|
|
|
} else
|
|
|
|
return action_;
|
2010-04-26 00:43:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-01 16:08:35 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Toc implementation
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
TocIterator Toc::item(DocIterator const & dit) const
|
2006-04-26 13:33:51 +00:00
|
|
|
{
|
2015-09-01 16:08:35 +00:00
|
|
|
TocIterator last = begin();
|
|
|
|
TocIterator it = end();
|
|
|
|
if (it == last)
|
|
|
|
return it;
|
|
|
|
|
|
|
|
--it;
|
|
|
|
|
|
|
|
DocIterator dit_text = dit;
|
|
|
|
if (dit_text.inMathed()) {
|
|
|
|
// We are only interested in text so remove the math CursorSlice.
|
|
|
|
while (dit_text.inMathed())
|
|
|
|
dit_text.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
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.
|
|
|
|
if (&it->dit_[0].inset() != &dit_text[0].inset())
|
|
|
|
continue;
|
|
|
|
if (it->dit_ <= dit_text)
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We are before the first Toc Item:
|
|
|
|
return last;
|
2006-04-26 13:33:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-01 16:08:35 +00:00
|
|
|
Toc::iterator Toc::item(int depth, docstring const & str)
|
2009-04-09 18:42:59 +00:00
|
|
|
{
|
2015-09-01 16:08:35 +00:00
|
|
|
if (empty())
|
|
|
|
return end();
|
|
|
|
iterator it = begin();
|
|
|
|
iterator itend = end();
|
|
|
|
for (; it != itend; ++it) {
|
|
|
|
if (it->depth() == depth && it->str() == str)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return it;
|
2009-04-09 18:42:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-01 16:08:35 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// TocBuilder implementation
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
TocBuilder::TocBuilder(shared_ptr<Toc> toc)
|
2015-09-28 17:13:19 +00:00
|
|
|
: toc_(toc ? toc : lyx::make_shared<Toc>()),
|
2015-09-01 16:08:35 +00:00
|
|
|
stack_()
|
2006-04-26 13:33:51 +00:00
|
|
|
{
|
2015-09-01 16:08:35 +00:00
|
|
|
LATTEST(toc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TocBuilder::pushItem(DocIterator const & dit, docstring const & s,
|
|
|
|
bool output_active, bool is_captioned)
|
|
|
|
{
|
|
|
|
toc_->push_back(TocItem(dit, stack_.size(), s, output_active));
|
|
|
|
frame f = {
|
|
|
|
toc_->size() - 1, //pos
|
|
|
|
is_captioned, //is_captioned
|
|
|
|
};
|
|
|
|
stack_.push(f);
|
2006-04-26 13:33:51 +00:00
|
|
|
}
|
|
|
|
|
2015-09-01 16:08:35 +00:00
|
|
|
void TocBuilder::captionItem(DocIterator const & dit, docstring const & s,
|
|
|
|
bool output_active)
|
|
|
|
{
|
2015-09-27 06:05:00 +00:00
|
|
|
// first show the float before moving to the caption
|
|
|
|
docstring arg = "paragraph-goto " + paragraph_goto_arg(dit);
|
|
|
|
if (!stack_.empty())
|
|
|
|
arg = "paragraph-goto " +
|
|
|
|
paragraph_goto_arg((*toc_)[stack_.top().pos].dit_) + ";" + arg;
|
|
|
|
FuncRequest func(LFUN_COMMAND_SEQUENCE, arg);
|
|
|
|
|
2015-09-01 16:08:35 +00:00
|
|
|
if (!stack_.empty() && !stack_.top().is_captioned) {
|
|
|
|
// The float we entered has not yet been assigned a caption.
|
|
|
|
// Assign the caption string to it.
|
2015-09-27 06:05:00 +00:00
|
|
|
TocItem & captionable = (*toc_)[stack_.top().pos];
|
|
|
|
captionable.str(s);
|
|
|
|
captionable.setAction(func);
|
2015-09-01 16:08:35 +00:00
|
|
|
stack_.top().is_captioned = true;
|
|
|
|
} else {
|
|
|
|
// This is a new entry.
|
|
|
|
pop();
|
2015-09-27 06:05:00 +00:00
|
|
|
// the dit is at the float's level, e.g. for the contextual menu of
|
|
|
|
// outliner entries
|
|
|
|
DocIterator captionable_dit = dit;
|
|
|
|
captionable_dit.pop_back();
|
|
|
|
pushItem(captionable_dit, s, output_active, true);
|
|
|
|
(*toc_)[stack_.top().pos].setAction(func);
|
2015-09-01 16:08:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TocBuilder::pop()
|
|
|
|
{
|
|
|
|
if (!stack_.empty())
|
|
|
|
stack_.pop();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// TocBuilderStore implementation
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
shared_ptr<TocBuilder> TocBuilderStore::get(string const & type,
|
|
|
|
shared_ptr<Toc> toc)
|
|
|
|
{
|
|
|
|
map_t::const_iterator it = map_.find(type);
|
|
|
|
if (it == map_.end()) {
|
|
|
|
it = map_.insert(std::make_pair(type,
|
2015-09-28 17:13:19 +00:00
|
|
|
lyx::make_shared<TocBuilder>(toc))).first;
|
2015-09-01 16:08:35 +00:00
|
|
|
}
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-04-26 13:33:51 +00:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2007-09-29 20:02:32 +00:00
|
|
|
//
|
2006-04-26 13:33:51 +00:00
|
|
|
// TocBackend implementation
|
2007-09-29 20:02:32 +00:00
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2006-04-26 13:33:51 +00:00
|
|
|
|
2015-09-01 16:08:35 +00:00
|
|
|
shared_ptr<Toc const> TocBackend::toc(string const & type) const
|
2006-04-26 13:33:51 +00:00
|
|
|
{
|
|
|
|
// Is the type already supported?
|
|
|
|
TocList::const_iterator it = tocs_.find(type);
|
2015-09-28 17:13:19 +00:00
|
|
|
LASSERT(it != tocs_.end(), { return lyx::make_shared<Toc>(); });
|
2015-09-01 16:08:35 +00:00
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
|
2006-04-26 13:33:51 +00:00
|
|
|
|
2015-09-01 16:08:35 +00:00
|
|
|
shared_ptr<Toc> TocBackend::toc(string const & type)
|
|
|
|
{
|
|
|
|
TocList::const_iterator it = tocs_.find(type);
|
|
|
|
if (it == tocs_.end()) {
|
2015-09-28 17:13:19 +00:00
|
|
|
it = tocs_.insert(std::make_pair(type, lyx::make_shared<Toc>())).first;
|
2015-09-01 16:08:35 +00:00
|
|
|
}
|
2006-04-26 13:33:51 +00:00
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-01 16:08:35 +00:00
|
|
|
shared_ptr<TocBuilder> TocBackend::builder(string const & type)
|
2008-02-15 10:13:32 +00:00
|
|
|
{
|
2015-09-01 16:08:35 +00:00
|
|
|
return builders_.get(type, toc(type));
|
2008-02-15 10:13:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-09-26 10:37:24 +00:00
|
|
|
bool TocBackend::updateItem(DocIterator const & dit)
|
2007-03-12 11:23:41 +00:00
|
|
|
{
|
2012-12-15 15:47:57 +00:00
|
|
|
if (dit.text()->getTocLevel(dit.pit()) == Layout::NOT_IN_TOC)
|
2008-09-26 10:37:24 +00:00
|
|
|
return false;
|
|
|
|
|
2015-09-01 16:08:35 +00:00
|
|
|
if (toc("tableofcontents")->empty()) {
|
2007-06-12 12:29:19 +00:00
|
|
|
// FIXME: should not happen,
|
|
|
|
// a call to TocBackend::update() is missing somewhere
|
2007-11-28 22:12:03 +00:00
|
|
|
LYXERR0("TocBackend::updateItem called but the TOC is empty!");
|
2008-09-26 10:37:24 +00:00
|
|
|
return false;
|
2007-06-12 12:29:19 +00:00
|
|
|
}
|
2007-05-10 17:55:07 +00:00
|
|
|
|
2007-03-12 11:23:41 +00:00
|
|
|
BufferParams const & bufparams = buffer_->params();
|
2008-02-28 01:42:02 +00:00
|
|
|
const int min_toclevel = bufparams.documentClass().min_toclevel();
|
2007-03-12 11:23:41 +00:00
|
|
|
|
2008-05-13 08:23:44 +00:00
|
|
|
TocIterator toc_item = item("tableofcontents", dit);
|
2007-03-12 11:23:41 +00:00
|
|
|
|
|
|
|
docstring tocstring;
|
|
|
|
|
|
|
|
// For each paragraph, traverse its insets and let them add
|
|
|
|
// their toc items
|
2008-05-13 08:23:44 +00:00
|
|
|
Paragraph & par = toc_item->dit_.paragraph();
|
|
|
|
InsetList::const_iterator it = par.insetList().begin();
|
|
|
|
InsetList::const_iterator end = par.insetList().end();
|
2007-03-12 11:23:41 +00:00
|
|
|
for (; it != end; ++it) {
|
2007-04-29 13:39:47 +00:00
|
|
|
Inset & inset = *it->inset;
|
2010-06-04 22:44:58 +00:00
|
|
|
if (inset.lyxCode() == ARG_CODE) {
|
2007-03-12 11:23:41 +00:00
|
|
|
if (!tocstring.empty())
|
|
|
|
break;
|
2008-05-13 08:23:44 +00:00
|
|
|
Paragraph const & inset_par =
|
2010-06-04 22:44:58 +00:00
|
|
|
*static_cast<InsetArgument&>(inset).paragraphs().begin();
|
2008-05-13 08:23:44 +00:00
|
|
|
if (!par.labelString().empty())
|
|
|
|
tocstring = par.labelString() + ' ';
|
2010-12-20 21:55:09 +00:00
|
|
|
tocstring += inset_par.asString(AS_STR_INSETS);
|
2007-03-12 11:23:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-15 15:47:57 +00:00
|
|
|
int const toclevel = toc_item->dit_.text()->getTocLevel(toc_item->dit_.pit());
|
2008-02-24 15:44:11 +00:00
|
|
|
if (toclevel != Layout::NOT_IN_TOC && toclevel >= min_toclevel
|
2008-02-24 14:59:23 +00:00
|
|
|
&& tocstring.empty())
|
2010-12-20 21:55:09 +00:00
|
|
|
tocstring = par.asString(AS_STR_LABEL | AS_STR_INSETS);
|
2007-03-12 11:23:41 +00:00
|
|
|
|
2015-09-27 06:05:00 +00:00
|
|
|
const_cast<TocItem &>(*toc_item).str(tocstring);
|
2008-09-26 10:37:24 +00:00
|
|
|
|
2008-09-30 09:50:54 +00:00
|
|
|
buffer_->updateTocItem("tableofcontents", dit);
|
2008-09-26 10:37:24 +00:00
|
|
|
return true;
|
2006-04-26 13:33:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-27 06:05:00 +00:00
|
|
|
void TocBackend::update(bool output_active, UpdateType utype)
|
2006-04-26 13:33:51 +00:00
|
|
|
{
|
2015-09-01 16:08:35 +00:00
|
|
|
for (TocList::iterator it = tocs_.begin(); it != tocs_.end(); ++it)
|
|
|
|
it->second->clear();
|
2006-04-26 13:33:51 +00:00
|
|
|
tocs_.clear();
|
2015-09-01 16:08:35 +00:00
|
|
|
builders_.clear();
|
2010-03-11 19:40:11 +00:00
|
|
|
if (!buffer_->isInternal()) {
|
2009-09-08 01:29:07 +00:00
|
|
|
DocIterator dit;
|
2015-09-27 06:05:00 +00:00
|
|
|
buffer_->inset().addToToc(dit, output_active, utype);
|
2009-09-08 01:29:07 +00:00
|
|
|
}
|
2006-04-26 13:33:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-09 09:08:59 +00:00
|
|
|
TocIterator TocBackend::item(string const & type,
|
2008-05-13 08:23:44 +00:00
|
|
|
DocIterator const & dit) const
|
2006-04-26 13:33:51 +00:00
|
|
|
{
|
2006-11-11 00:35:14 +00:00
|
|
|
TocList::const_iterator toclist_it = tocs_.find(type);
|
2006-04-26 13:33:51 +00:00
|
|
|
// Is the type supported?
|
2013-04-25 21:27:10 +00:00
|
|
|
// We will try to make the best of it in release mode
|
|
|
|
LASSERT(toclist_it != tocs_.end(), toclist_it = tocs_.begin());
|
2015-09-01 16:08:35 +00:00
|
|
|
return toclist_it->second->item(dit);
|
2008-09-30 11:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-08 19:52:18 +00:00
|
|
|
void TocBackend::writePlaintextTocList(string const & type,
|
|
|
|
odocstringstream & os, size_t max_length) const
|
2006-04-26 13:33:51 +00:00
|
|
|
{
|
|
|
|
TocList::const_iterator cit = tocs_.find(type);
|
|
|
|
if (cit != tocs_.end()) {
|
2015-09-01 16:08:35 +00:00
|
|
|
TocIterator ccit = cit->second->begin();
|
|
|
|
TocIterator end = cit->second->end();
|
2013-03-08 19:52:18 +00:00
|
|
|
for (; ccit != end; ++ccit) {
|
2007-11-28 22:12:03 +00:00
|
|
|
os << ccit->asString() << from_utf8("\n");
|
2013-03-08 19:52:18 +00:00
|
|
|
if (os.str().size() > max_length)
|
|
|
|
break;
|
|
|
|
}
|
2006-04-26 13:33:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|