]> 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 160a1322af845ffe655df7daef9840a29d385e48..c959ee47c5aeaa0a96825bb6b2b57897dc78ca88 100644 (file)
@@ -5,94 +5,75 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
-#include <config.h>
 
+#include <config.h>
 
-#include "gettext.h"
 #include "insettoc.h"
+
+#include "buffer.h"
+#include "dispatchresult.h"
 #include "funcrequest.h"
-#include "BufferView.h"
-#include "frontends/LyXView.h"
-#include "frontends/Dialogs.h"
-#include "debug.h"
-#include "toc.h"
+#include "gettext.h"
+#include "metricsinfo.h"
+#include "TocBackend.h"
+
+#include "support/std_ostream.h"
 
-using std::vector;
+
+namespace lyx {
+
+using std::string;
 using std::ostream;
 
 
 InsetTOC::InsetTOC(InsetCommandParams const & p)
-       : InsetCommand(p)
+       : InsetCommand(p, "toc")
 {}
 
 
-// InsetTOC::InsetTOC(InsetCommandParams const & p, bool same_id)
-//     : InsetCommand(p, same_id)
-// {}
-
-
-InsetTOC::~InsetTOC()
+std::auto_ptr<InsetBase> InsetTOC::doClone() const
 {
-       InsetCommandMailer mailer("toc", *this);
-       mailer.hideDialog();
+       return std::auto_ptr<InsetBase>(new InsetTOC(*this));
 }
 
 
-string const InsetTOC::getScreenLabel(Buffer const *) const
+docstring const InsetTOC::getScreenLabel(Buffer const &) const
 {
-       string const cmdname(getCmdName());
-
-       if (cmdname == "tableofcontents")
+       if (getCmdName() == "tableofcontents")
                return _("Table of Contents");
        return _("Unknown toc list");
 }
 
 
-Inset::Code InsetTOC::lyxCode() const
+InsetBase::Code InsetTOC::lyxCode() const
 {
-       string const cmdname(getCmdName());
-       if (cmdname == "tableofcontents")
-               return Inset::TOC_CODE;
-       return Inset::NO_CODE;
-}
-
-
-dispatch_result InsetTOC::localDispatch(FuncRequest const & cmd)
-{
-       switch (cmd.action) {
-       case LFUN_INSET_EDIT:
-               InsetCommandMailer("toc", *this).showDialog(cmd.view());
-               return DISPATCHED;
-       default:
-               return InsetCommand::localDispatch(cmd);
-       }
+       if (getCmdName() == "tableofcontents")
+               return InsetBase::TOC_CODE;
+       return InsetBase::NO_CODE;
 }
 
 
-int InsetTOC::ascii(Buffer const * buffer, ostream & os, int) const
+int InsetTOC::plaintext(Buffer const & buffer, odocstream & os,
+                   OutputParams const &) const
 {
        os << getScreenLabel(buffer) << "\n\n";
 
-       toc::asciiTocList(toc::getType(getCmdName()), buffer, os);
+       buffer.tocBackend().writePlaintextTocList(getCmdName(), os);
 
        os << "\n";
        return 0;
 }
 
 
-int InsetTOC::linuxdoc(Buffer const *, 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 *, ostream & os, bool) const
-{
-       if (getCmdName() == "tableofcontents")
-               os << "<toc></toc>";
-       return 0;
-}
+} // namespace lyx