]> 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 4c09831aeb630128c0fc44d65eea05bc1a7946cb..c959ee47c5aeaa0a96825bb6b2b57897dc78ca88 100644 (file)
@@ -1,38 +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 "insettoc.h"
-#include "commandtags.h"
-#include "lyxfunc.h"
-#include "LyXView.h"
-#include "BufferView.h"
 
+#include "buffer.h"
+#include "dispatchresult.h"
+#include "funcrequest.h"
+#include "gettext.h"
+#include "metricsinfo.h"
+#include "TocBackend.h"
+
+#include "support/std_ostream.h"
+
+
+namespace lyx {
+
+using std::string;
 using std::ostream;
 
 
-string InsetTOC::getScreenLabel() const 
+InsetTOC::InsetTOC(InsetCommandParams const & p)
+       : InsetCommand(p, "toc")
+{}
+
+
+std::auto_ptr<InsetBase> InsetTOC::doClone() const
 {
-       return _("Table of Contents");
+       return std::auto_ptr<InsetBase>(new InsetTOC(*this));
 }
 
 
-void InsetTOC::Edit(BufferView * bv, int, int, unsigned int)
+docstring const InsetTOC::getScreenLabel(Buffer const &) const
 {
-       bv->owner()->getLyXFunc()->Dispatch(LFUN_TOCVIEW);
+       if (getCmdName() == "tableofcontents")
+               return _("Table of Contents");
+       return _("Unknown toc list");
 }
 
-int InsetTOC::Linuxdoc(ostream & os) const
+
+InsetBase::Code InsetTOC::lyxCode() const
 {
-       os << "<toc>";
+       if (getCmdName() == "tableofcontents")
+               return InsetBase::TOC_CODE;
+       return InsetBase::NO_CODE;
+}
+
+
+int InsetTOC::plaintext(Buffer const & buffer, odocstream & os,
+                   OutputParams const &) const
+{
+       os << getScreenLabel(buffer) << "\n\n";
+
+       buffer.tocBackend().writePlaintextTocList(getCmdName(), os);
+
+       os << "\n";
        return 0;
 }
 
 
-int InsetTOC::DocBook(ostream & os) const
+int InsetTOC::docbook(Buffer const &, odocstream & os,
+                     OutputParams const &) const
 {
-       os << "<toc></toc>";
+       if (getCmdName() == "tableofcontents")
+               os << "<toc></toc>";
        return 0;
 }
+
+
+} // namespace lyx