]> git.lyx.org Git - lyx.git/blobdiff - src/TocBackend.h
* Doxy.
[lyx.git] / src / TocBackend.h
index 0ade8432808d3f7b4f30cc940340cda370328b42..f9e700e379411c46706c8d884ffe8631cbf69fed 100644 (file)
@@ -14,7 +14,7 @@
 #ifndef TOC_BACKEND_H
 #define TOC_BACKEND_H
 
-#include "ParIterator.h"
+#include "DocIterator.h"
 
 #include "support/strfwd.h"
 
@@ -39,7 +39,7 @@ public:
        /// Default constructor for STL containers.
        TocItem() {}
        ///
-       TocItem(ParConstIterator const & par_it,
+       TocItem(DocIterator const & dit,
                int depth,
                docstring const & s
                );
@@ -59,7 +59,7 @@ public:
 
 protected:
        /// Current position of item.
-       ParConstIterator par_it_;
+       DocIterator dit_;
 
        /// nesting depth
        int depth_;
@@ -70,7 +70,8 @@ protected:
 
 
 ///
-typedef std::vector<TocItem> Toc;
+class Toc : public std::vector<TocItem> {};
+
 typedef Toc::const_iterator TocIterator;
 
 /// The ToC list.
@@ -85,24 +86,26 @@ class TocBackend
 {
 public:
        ///
-       TocBackend(Buffer const * buffer = NULL) : buffer_(buffer) {}
+       TocBackend(Buffer const * buffer) : buffer_(buffer) {}
        ///
        void setBuffer(Buffer const * buffer) { buffer_ = buffer; }
        ///
        void update();
        ///
-       void updateItem(ParConstIterator const & pit);
+       void updateItem(DocIterator const & pit);
 
        ///
        TocList const & tocs() const { return tocs_; }
+       TocList & tocs() { return tocs_; }
 
        ///
        Toc const & toc(std::string const & type) const;
-       /// Return the first Toc Item before the cursor
+       Toc & toc(std::string const & type);
 
+       /// Return the first Toc Item before the cursor
        TocIterator item(
                std::string const & type, ///< Type of Toc.
-               ParConstIterator const & ///< The cursor location in the document.
+               DocIterator const & dit ///< The cursor location in the document.
        ) const;
 
        ///