X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FTocBackend.cpp;h=90ba1ed0afd50951d7c55c0c3000329d4d8d1fec;hb=acc5af9912533261c37795971af269f77317f14f;hp=e4504c47b8fbebab5ff30129873f6a18ac6d52f0;hpb=d1bc775b0616c76122476028ac094e75103551f4;p=lyx.git diff --git a/src/TocBackend.cpp b/src/TocBackend.cpp index e4504c47b8..90ba1ed0af 100644 --- a/src/TocBackend.cpp +++ b/src/TocBackend.cpp @@ -74,6 +74,12 @@ docstring const TocItem::asString() const } +DocIterator const & TocItem::dit() const +{ + return dit_; +} + + FuncRequest TocItem::action() const { string const arg = convert(dit_.paragraph().id()) @@ -104,13 +110,16 @@ Toc & TocBackend::toc(string const & type) } -void TocBackend::updateItem(DocIterator const & dit) +bool TocBackend::updateItem(DocIterator const & dit) { + if (dit.paragraph().layout().toclevel == 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; + return false; } BufferParams const & bufparams = buffer_->params(); @@ -134,7 +143,7 @@ void TocBackend::updateItem(DocIterator const & dit) *static_cast(inset).paragraphs().begin(); if (!par.labelString().empty()) tocstring = par.labelString() + ' '; - tocstring += inset_par.asString(false); + tocstring += inset_par.asString(AS_STR_INSETS); break; } } @@ -142,64 +151,21 @@ void TocBackend::updateItem(DocIterator const & dit) int const toclevel = par.layout().toclevel; if (toclevel != Layout::NOT_IN_TOC && toclevel >= min_toclevel && tocstring.empty()) - tocstring = par.asString(true); + tocstring = par.asString(AS_STR_LABEL | AS_STR_INSETS); const_cast(*toc_item).str_ = tocstring; + + buffer_->updateTocItem("tableofcontents", dit); + return true; } void TocBackend::update() { tocs_.clear(); - - BufferParams const & bufparams = buffer_->params(); - const int min_toclevel = bufparams.documentClass().min_toclevel(); - - Toc & toc = tocs_["tableofcontents"]; - ParConstIterator pit = buffer_->par_iterator_begin(); - ParConstIterator end = buffer_->par_iterator_end(); - for (; pit != end; ++pit) { - - // the string that goes to the toc (could be the optarg) - docstring tocstring; - - // For each paragraph, traverse its insets and let them add - // their toc items - InsetList::const_iterator it = pit->insetList().begin(); - InsetList::const_iterator end = pit->insetList().end(); - for (; it != end; ++it) { - Inset & inset = *it->inset; - pit.pos() = it->pos; - //lyxerr << (void*)&inset << " code: " << inset.lyxCode() << std::endl; - inset.addToToc(pit); - switch (inset.lyxCode()) { - case OPTARG_CODE: { - if (!tocstring.empty()) - break; - pit.pos() = 0; - Paragraph const & par = - *static_cast(inset).paragraphs().begin(); - if (!pit->labelString().empty()) - tocstring = pit->labelString() + ' '; - tocstring += par.asString(false); - break; - } - default: - break; - } - } - - /// now the toc entry for the paragraph - int const toclevel = pit->layout().toclevel; - if (toclevel != Layout::NOT_IN_TOC - && toclevel >= min_toclevel) { - pit.pos() = 0; - // insert this into the table of contents - if (tocstring.empty()) - tocstring = pit->asString(true); - toc.push_back(TocItem(pit, toclevel - min_toclevel, - tocstring)); - } + if (! buffer_->isInternal()) { + DocIterator dit; + buffer_->inset().addToToc(dit); } } @@ -210,10 +176,14 @@ TocIterator TocBackend::item(string const & type, TocList::const_iterator toclist_it = tocs_.find(type); // Is the type supported? LASSERT(toclist_it != tocs_.end(), /**/); + return toclist_it->second.item(dit); +} + - Toc const & toc_vector = toclist_it->second; - TocIterator last = toc_vector.begin(); - TocIterator it = toc_vector.end(); +TocIterator Toc::item(DocIterator const & dit) const +{ + TocIterator last = begin(); + TocIterator it = end(); if (it == last) return it; @@ -241,6 +211,20 @@ TocIterator TocBackend::item(string const & type, } +Toc::iterator Toc::item(int depth, docstring const & str) +{ + if (empty()) + return end(); + iterator it = begin(); + iterator itend = end(); + for (; it != itend; ++it) { + if (it->depth() == depth && it->str() == str) + break; + } + return it; +} + + void TocBackend::writePlaintextTocList(string const & type, odocstream & os) const { TocList::const_iterator cit = tocs_.find(type);