]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.C
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insettoc.C
index fa91fa2855a4c72efbe7d4cd3b2eaaa4fd9d0932..c959ee47c5aeaa0a96825bb6b2b57897dc78ca88 100644 (file)
 
 #include "insettoc.h"
 
+#include "buffer.h"
 #include "dispatchresult.h"
 #include "funcrequest.h"
 #include "gettext.h"
 #include "metricsinfo.h"
-#include "toc.h"
+#include "TocBackend.h"
 
 #include "support/std_ostream.h"
 
+
+namespace lyx {
+
 using std::string;
 using std::ostream;
 
 
-
 InsetTOC::InsetTOC(InsetCommandParams const & p)
        : InsetCommand(p, "toc")
 {}
 
 
-std::auto_ptr<InsetBase> InsetTOC::clone() const
+std::auto_ptr<InsetBase> InsetTOC::doClone() const
 {
        return std::auto_ptr<InsetBase>(new InsetTOC(*this));
 }
 
 
-string const InsetTOC::getScreenLabel(Buffer const &) const
+docstring const InsetTOC::getScreenLabel(Buffer const &) const
 {
        if (getCmdName() == "tableofcontents")
                return _("Table of Contents");
@@ -44,39 +47,33 @@ string const InsetTOC::getScreenLabel(Buffer const &) const
 }
 
 
-InsetOld::Code InsetTOC::lyxCode() const
+InsetBase::Code InsetTOC::lyxCode() const
 {
        if (getCmdName() == "tableofcontents")
-               return InsetOld::TOC_CODE;
-       return InsetOld::NO_CODE;
+               return InsetBase::TOC_CODE;
+       return InsetBase::NO_CODE;
 }
 
 
-int InsetTOC::plaintext(Buffer const & buffer, ostream & os,
+int InsetTOC::plaintext(Buffer const & buffer, odocstream & os,
                    OutputParams const &) const
 {
        os << getScreenLabel(buffer) << "\n\n";
 
-       lyx::toc::asciiTocList(lyx::toc::getType(getCmdName()), buffer, os);
+       buffer.tocBackend().writePlaintextTocList(getCmdName(), os);
 
        os << "\n";
        return 0;
 }
 
 
-int InsetTOC::linuxdoc(Buffer const &, ostream & os,
-                      OutputParams const &) const
-{
-       if (getCmdName() == "tableofcontents")
-               os << "<toc>";
-       return 0;
-}
-
-
-int InsetTOC::docbook(Buffer const &, ostream & os,
+int InsetTOC::docbook(Buffer const &, odocstream & os,
                      OutputParams const &) const
 {
        if (getCmdName() == "tableofcontents")
                os << "<toc></toc>";
        return 0;
 }
+
+
+} // namespace lyx