]> git.lyx.org Git - lyx.git/blobdiff - src/TocBackend.h
* do not ignore "requires" field in MathMacro
[lyx.git] / src / TocBackend.h
index 379c47e536b1689e9c28f9cfa6e96cad55d41c71..38d638ffedeff6531403365175b4925ae0422f60 100644 (file)
@@ -20,7 +20,7 @@
 #include <vector>
 #include <string>
 
-#include "pariterator.h"
+#include "ParIterator.h"
 
 #include "support/docstream.h"
 
@@ -28,9 +28,7 @@
 namespace lyx {
 
 class Buffer;
-class Paragraph;
 class FuncRequest;
-class LCursor;
 
 ///
 /**
@@ -96,28 +94,25 @@ public:
        void setBuffer(Buffer const * buffer)
        { buffer_ = buffer; }
        ///
-       bool addType(std::string const & type);
-       ///
        void update();
+       ///
+       void updateItem(ParConstIterator const & pit);
+
        ///
        TocList const & tocs() const
        { return tocs_; }
-       ///
-       std::vector<std::string> const & types() const
-       { return types_; }
+
        ///
        Toc const & toc(std::string const & type) const;
        /// Return the first Toc Item before the cursor
        TocIterator const item(std::string const & type, ParConstIterator const &) const;
 
-       void asciiTocList(std::string const & type, odocstream & os) const;
+       void writePlaintextTocList(std::string const & type, odocstream & os) const;
 
 private:
        /// 
        TocList tocs_;
        ///
-       std::vector<std::string> types_;
-       ///
        Buffer const * buffer_;
 
 }; // TocBackend