]> git.lyx.org Git - lyx.git/blobdiff - src/TocBackend.cpp
Andre's s/getTextClass/textClass/ cleanup.
[lyx.git] / src / TocBackend.cpp
index 17c421a64ea6cb6672e8b154b8f0e5ee79635577..4c5bdb00f363610aa42a7e845bbdd00b3582d9d1 100644 (file)
 #include "BufferParams.h"
 #include "FloatList.h"
 #include "FuncRequest.h"
+#include "InsetList.h"
+#include "Layout.h"
 #include "LyXAction.h"
 #include "Paragraph.h"
-#include "debug.h"
+#include "TextClass.h"
 
 #include "insets/InsetOptArg.h"
 
 #include "support/convert.h"
+#include "support/debug.h"
+#include "support/docstream.h"
 
+using namespace std;
 
 namespace lyx {
 
-using std::vector;
-using std::string;
-
-
 ///////////////////////////////////////////////////////////////////////////
+//
 // TocItem implementation
+//
+///////////////////////////////////////////////////////////////////////////
 
-TocItem::TocItem(ParConstIterator const & par_it, int d,
-               docstring const & s)
-               : par_it_(par_it), depth_(d), str_(s)
-{
-/*
-       if (!uid_.empty())
-               return;
-
-       size_t pos = s.find(" ");
-       if (pos == string::npos) {
-               // Non labelled item
-               uid_ = s;
-               return;
-       }
-
-       string s2 = s.substr(0, pos);
-
-       if (s2 == "Chapter" || s2 == "Part") {
-               size_t pos2 = s.find(" ", pos + 1);
-               if (pos2 == string::npos) {
-                       // Unnumbered Chapter?? This should not happen.
-                       uid_ = s.substr(pos + 1);
-                       return;
-               }
-               // Chapter or Part
-               uid_ = s.substr(pos2 + 1);
-               return;
-       }
-       // Numbered Item.
-       uid_ = s.substr(pos + 1);
-       */
-}
-
-bool const TocItem::isValid() const
+TocItem::TocItem(ParConstIterator const & par_it, int d, docstring const & s)
+       : par_it_(par_it), depth_(d), str_(s)
 {
-       return depth_ != -1;
 }
 
 
-int const TocItem::id() const
+int TocItem::id() const
 {
        return par_it_->id();
 }
 
 
-int const TocItem::depth() const
+int TocItem::depth() const
 {
        return depth_;
 }
@@ -105,13 +76,13 @@ FuncRequest TocItem::action() const
 }
 
 
-
-
-
 ///////////////////////////////////////////////////////////////////////////
+//
 // TocBackend implementation
+//
+///////////////////////////////////////////////////////////////////////////
 
-Toc const & TocBackend::toc(std::string const & type) const
+Toc const & TocBackend::toc(string const & type) const
 {
        // Is the type already supported?
        TocList::const_iterator it = tocs_.find(type);
@@ -121,10 +92,23 @@ Toc const & TocBackend::toc(std::string const & type) const
 }
 
 
+Toc & TocBackend::toc(string const & type)
+{
+       return tocs_[type];
+}
+
+
 void TocBackend::updateItem(ParConstIterator const & par_it)
 {
+       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;
+       }
+
        BufferParams const & bufparams = buffer_->params();
-       const int min_toclevel = bufparams.getLyXTextClass().min_toclevel();
+       const int min_toclevel = bufparams.textClass().min_toclevel();
 
        TocIterator toc_item = item("tableofcontents", par_it);
 
@@ -132,17 +116,17 @@ void TocBackend::updateItem(ParConstIterator const & par_it)
 
        // For each paragraph, traverse its insets and let them add
        // their toc items
-       InsetList::const_iterator it = toc_item->par_it_->insetlist.begin();
-       InsetList::const_iterator end = toc_item->par_it_->insetlist.end();
+       InsetList::const_iterator it = toc_item->par_it_->insetList().begin();
+       InsetList::const_iterator end = toc_item->par_it_->insetList().end();
        for (; it != end; ++it) {
                Inset & inset = *it->inset;
-               if (inset.lyxCode() == Inset::OPTARG_CODE) {
+               if (inset.lyxCode() == OPTARG_CODE) {
                        if (!tocstring.empty())
                                break;
-                       Paragraph const & par = 
+                       Paragraph const & par =
                                *static_cast<InsetOptArg&>(inset).paragraphs().begin();
-                       if (!toc_item->par_it_->getLabelstring().empty())
-                               tocstring = toc_item->par_it_->getLabelstring() + ' ';
+                       if (!toc_item->par_it_->labelString().empty())
+                               tocstring = toc_item->par_it_->labelString() + ' ';
                        tocstring += par.asString(*buffer_, false);
                        break;
                }
@@ -151,7 +135,6 @@ void TocBackend::updateItem(ParConstIterator const & par_it)
        int const toclevel = toc_item->par_it_->layout()->toclevel;
        if (toclevel != Layout::NOT_IN_TOC
            && toclevel >= min_toclevel
-           && toclevel <= bufparams.tocdepth
                && tocstring.empty())
                        tocstring = toc_item->par_it_->asString(*buffer_, true);
 
@@ -164,7 +147,7 @@ void TocBackend::update()
        tocs_.clear();
 
        BufferParams const & bufparams = buffer_->params();
-       const int min_toclevel = bufparams.getLyXTextClass().min_toclevel();
+       const int min_toclevel = bufparams.textClass().min_toclevel();
 
        Toc & toc = tocs_["tableofcontents"];
        ParConstIterator pit = buffer_->par_iterator_begin();
@@ -176,19 +159,19 @@ void TocBackend::update()
 
                // 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();
+               InsetList::const_iterator it = pit->insetList().begin();
+               InsetList::const_iterator end = pit->insetList().end();
                for (; it != end; ++it) {
                        Inset & inset = *it->inset;
-                       inset.addToToc(tocs_, *buffer_);
+                       inset.addToToc(*buffer_, pit);
                        switch (inset.lyxCode()) {
-                       case Inset::OPTARG_CODE: {
+                       case OPTARG_CODE: {
                                if (!tocstring.empty())
                                        break;
-                               Paragraph const & par = 
+                               Paragraph const & par =
                                        *static_cast<InsetOptArg&>(inset).paragraphs().begin();
-                               if (!pit->getLabelstring().empty())
-                                       tocstring = pit->getLabelstring() + ' ';
+                               if (!pit->labelString().empty())
+                                       tocstring = pit->labelString() + ' ';
                                tocstring += par.asString(*buffer_, false);
                                break;
                        }
@@ -200,20 +183,19 @@ void TocBackend::update()
                /// now the toc entry for the paragraph
                int const toclevel = pit->layout()->toclevel;
                if (toclevel != Layout::NOT_IN_TOC
-                   && toclevel >= min_toclevel
-                   && toclevel <= bufparams.tocdepth) {
+                   && toclevel >= min_toclevel) {
                        // insert this into the table of contents
                        if (tocstring.empty())
                                tocstring = pit->asString(*buffer_, true);
-                       toc.push_back(
-                               TocItem(pit, toclevel - min_toclevel, tocstring));
+                       toc.push_back(TocItem(pit, toclevel - min_toclevel,
+                               tocstring));
                }
        }
 }
 
 
-TocIterator const TocBackend::item(
-       std::string const & type, ParConstIterator const & par_it) const
+TocIterator TocBackend::item(string const & type,
+               ParConstIterator const & par_it) const
 {
        TocList::const_iterator toclist_it = tocs_.find(type);
        // Is the type supported?
@@ -228,24 +210,19 @@ TocIterator const TocBackend::item(
        --it;
 
        ParConstIterator par_it_text = par_it;
-       if (par_it_text.inMathed())
-               // It would be better to do
-               //   par_it_text.backwardInset();
-               // but this method does not exist.
+       if (par_it_text.inMathed()) {
+               // We are only interested in text so remove the math CursorSlice.
                while (par_it_text.inMathed())
-                       par_it_text.backwardPos();
+                       par_it_text.pop_back();
+       }
 
        for (; it != last; --it) {
-               
-               // A good solution for Items inside insets would be to do:
-               //
-               //if (std::distance(it->par_it_, current) <= 0)
-               //      return it;
-               //
-               // But for an unknown reason, std::distance(current, it->par_it_) always
-               // returns  a positive value and std::distance(it->par_it_, current) takes forever...
-               // So for now, we do:
-               if (it->par_it_.pit() <= par_it_text.pit())
+               // We verify that we don't compare contents of two
+               // different document. This happens when you
+               // have parent and child documents.
+               if (&it->par_it_[0].inset() != &par_it_text[0].inset())
+                       continue;
+               if (it->par_it_ <= par_it_text)
                        return it;
        }
 
@@ -261,7 +238,7 @@ void TocBackend::writePlaintextTocList(string const & type, odocstream & os) con
                TocIterator ccit = cit->second.begin();
                TocIterator end = cit->second.end();
                for (; ccit != end; ++ccit)
-                       os << ccit->asString() << '\n';
+                       os << ccit->asString() << from_utf8("\n");
        }
 }