]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insettoc.C
index 2a04a0c03bf92679f2d6a6384cb090ff5277fcfe..46137a94c78fad93855924e60c05a21dbe21e4bb 100644 (file)
@@ -1,31 +1,93 @@
+/**
+ * \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 "buffer.h"
-#include "bufferlist.h"
-#include "commandtags.h"
-#include "lyxfunc.h"
-#include "LyXView.h"
+#include "funcrequest.h"
 #include "BufferView.h"
+#include "frontends/LyXView.h"
+#include "frontends/Dialogs.h"
+#include "debug.h"
+#include "toc.h"
 
-void InsetTOC::Edit(BufferView * bv, int, int, unsigned int)
+using std::vector;
+using std::ostream;
+
+
+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");
+}
+
+
+Inset::Code InsetTOC::lyxCode() const
 {
-       bv->owner()->getLyXFunc()->Dispatch(LFUN_TOCVIEW);
+       string const cmdname(getCmdName());
+       if (cmdname == "tableofcontents")
+               return Inset::TOC_CODE;
+       return Inset::NO_CODE;
 }
 
-int InsetTOC::Linuxdoc(ostream & os) const
+
+dispatch_result InsetTOC::localDispatch(FuncRequest const & cmd)
+{
+       switch (cmd.action) {
+       case LFUN_INSET_EDIT:
+               InsetCommandMailer("toc", *this).showDialog(cmd.view());
+               return DISPATCHED;
+       default:
+               return UNDISPATCHED;
+       }
+}
+
+
+int InsetTOC::ascii(Buffer const * buffer, ostream & os, int) const
+{
+       os << getScreenLabel(buffer) << "\n\n";
+
+       toc::asciiTocList(toc::getType(getCmdName()), buffer, os);
+
+       os << "\n";
+       return 0;
+}
+
+
+int InsetTOC::linuxdoc(Buffer const *, ostream & os) const
 {
-       os << "<toc>";
+       if (getCmdName() == "tableofcontents")
+               os << "<toc>";
        return 0;
 }
 
 
-int InsetTOC::DocBook(ostream & os) const
+int InsetTOC::docbook(Buffer const *, ostream & os, bool) const
 {
-       os << "<toc></toc>";
+       if (getCmdName() == "tableofcontents")
+               os << "<toc></toc>";
        return 0;
 }