]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insettoc.C
index c93c62e26acb11e63787d4aa6b65eab0022a139d..46137a94c78fad93855924e60c05a21dbe21e4bb 100644 (file)
@@ -1,26 +1,44 @@
+/**
+ * \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
+ */
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "gettext.h"
 #include "insettoc.h"
+#include "funcrequest.h"
 #include "BufferView.h"
-#include "LyXView.h"
+#include "frontends/LyXView.h"
 #include "frontends/Dialogs.h"
 #include "debug.h"
-#include "buffer.h"
-
+#include "toc.h"
 
 using std::vector;
 using std::ostream;
 
 
-string const InsetTOC::getScreenLabel(Buffer const *) const 
+InsetTOC::InsetTOC(InsetCommandParams const & p, bool same_id)
+       : InsetCommand(p, same_id)
+{}
+
+
+InsetTOC::~InsetTOC()
+{
+       InsetCommandMailer mailer("toc", *this);
+       mailer.hideDialog();
+}
+
+
+string const InsetTOC::getScreenLabel(Buffer const *) const
 {
        string const cmdname(getCmdName());
-       
+
        if (cmdname == "tableofcontents")
                return _("Table of Contents");
        return _("Unknown toc list");
@@ -36,15 +54,15 @@ Inset::Code InsetTOC::lyxCode() const
 }
 
 
-void InsetTOC::edit(BufferView * bv, int, int, unsigned int)
+dispatch_result InsetTOC::localDispatch(FuncRequest const & cmd)
 {
-       bv->owner()->getDialogs()->showTOC(this);
-}
-
-
-void InsetTOC::edit(BufferView * bv, bool)
-{
-       edit(bv, 0, 0, 0);
+       switch (cmd.action) {
+       case LFUN_INSET_EDIT:
+               InsetCommandMailer("toc", *this).showDialog(cmd.view());
+               return DISPATCHED;
+       default:
+               return UNDISPATCHED;
+       }
 }
 
 
@@ -52,20 +70,7 @@ int InsetTOC::ascii(Buffer const * buffer, ostream & os, int) const
 {
        os << getScreenLabel(buffer) << "\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";
-       }
+       toc::asciiTocList(toc::getType(getCmdName()), buffer, os);
 
        os << "\n";
        return 0;
@@ -80,7 +85,7 @@ int InsetTOC::linuxdoc(Buffer const *, ostream & os) const
 }
 
 
-int InsetTOC::docbook(Buffer const *, ostream & os) const
+int InsetTOC::docbook(Buffer const *, ostream & os, bool) const
 {
        if (getCmdName() == "tableofcontents")
                os << "<toc></toc>";