]> 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 48652ba3d5c5934fed86d1b762637fb3f5aca6f8..c959ee47c5aeaa0a96825bb6b2b57897dc78ca88 100644 (file)
@@ -1,79 +1,79 @@
-#include <config.h>
+/**
+ * \file insettoc.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include <config.h>
 
-#include "gettext.h"
 #include "insettoc.h"
-#include "BufferView.h"
-#include "LyXView.h"
-#include "frontends/Dialogs.h"
-#include "debug.h"
+
 #include "buffer.h"
+#include "dispatchresult.h"
+#include "funcrequest.h"
+#include "gettext.h"
+#include "metricsinfo.h"
+#include "TocBackend.h"
+
+#include "support/std_ostream.h"
 
-using std::vector;
 
-string const InsetTOC::getScreenLabel() const 
+namespace lyx {
+
+using std::string;
+using std::ostream;
+
+
+InsetTOC::InsetTOC(InsetCommandParams const & p)
+       : InsetCommand(p, "toc")
+{}
+
+
+std::auto_ptr<InsetBase> InsetTOC::doClone() const
 {
-       string const cmdname(getCmdName());
-       
-       if (cmdname == "tableofcontents")
-               return _("Table of Contents");
-       return _("Unknown toc list");
+       return std::auto_ptr<InsetBase>(new InsetTOC(*this));
 }
 
 
-Inset::Code InsetTOC::lyxCode() const
+docstring const InsetTOC::getScreenLabel(Buffer const &) const
 {
-       string const cmdname(getCmdName());
-       if (cmdname == "tableofcontents")
-               return Inset::TOC_CODE;
-       return Inset::NO_CODE;
+       if (getCmdName() == "tableofcontents")
+               return _("Table of Contents");
+       return _("Unknown toc list");
 }
 
 
-void InsetTOC::edit(BufferView * bv, int, int, unsigned int)
+InsetBase::Code InsetTOC::lyxCode() const
 {
-       bv->owner()->getDialogs()->showTOC(this);
+       if (getCmdName() == "tableofcontents")
+               return InsetBase::TOC_CODE;
+       return InsetBase::NO_CODE;
 }
 
 
-int InsetTOC::ascii(Buffer const * buffer, std::ostream & os, int) const
+int InsetTOC::plaintext(Buffer const & buffer, odocstream & os,
+                   OutputParams const &) const
 {
-       os << getScreenLabel() << "\n\n";
-
-       string type;
-       string const cmdname = getCmdName();
-       if (cmdname == "tableofcontents")
-               type = "TOC";
-       Buffer::Lists const toc_list = buffer->getLists();
-       Buffer::Lists::const_iterator cit =
-               toc_list.find(type);
-       if (cit != toc_list.end()) {
-               Buffer::SingleList::const_iterator ccit = cit->second.begin();
-               Buffer::SingleList::const_iterator end = cit->second.end();
-               for (; ccit != end; ++ccit)
-                       os << string(4 * ccit->depth, ' ')
-                          << ccit->str << "\n";
-       }
+       os << getScreenLabel(buffer) << "\n\n";
+
+       buffer.tocBackend().writePlaintextTocList(getCmdName(), os);
 
        os << "\n";
        return 0;
 }
 
 
-int InsetTOC::linuxdoc(Buffer const *, std::ostream & os) const
+int InsetTOC::docbook(Buffer const &, odocstream & os,
+                     OutputParams const &) const
 {
        if (getCmdName() == "tableofcontents")
-               os << "<toc>";
+               os << "<toc></toc>";
        return 0;
 }
 
 
-int InsetTOC::DocBook(Buffer const *, std::ostream & os) const
-{
-       if (getCmdName() == "tableofcontents")
-               os << "<toc></toc>";
-       return 0;
-}
+} // namespace lyx