]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.C
Make it compile when USE_BOOST_FORMAT is unset
[lyx.git] / src / insets / insettoc.C
index e93003c44318bc8e5d18f221572dcb4c0129d265..809e5b242ada784762a777e135c6109752df7a22 100644 (file)
@@ -1,32 +1,83 @@
+/**
+ * \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 "BufferView.h"
+#include "frontends/LyXView.h"
+#include "frontends/Dialogs.h"
+#include "debug.h"
+#include "toc.h"
 
-extern BufferView *current_view;
+using std::vector;
+using std::ostream;
 
-void InsetTOC::Edit(int, int)
+
+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
+{
+       string const cmdname(getCmdName());
+       if (cmdname == "tableofcontents")
+               return Inset::TOC_CODE;
+       return Inset::NO_CODE;
+}
+
+
+void InsetTOC::edit(BufferView * bv, int, int, mouse_button::state)
+{
+       bv->owner()->getDialogs().showTOC(this);
+}
+
+
+void InsetTOC::edit(BufferView * bv, bool)
 {
-       current_view->getOwner()->getLyXFunc()->Dispatch(LFUN_TOCVIEW);
+       edit(bv, 0, 0, mouse_button::none);
 }
 
-int InsetTOC::Linuxdoc(LString &file)
+
+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
 {
-       file += "<toc>";
+       if (getCmdName() == "tableofcontents")
+               os << "<toc>";
        return 0;
 }
 
 
-int InsetTOC::DocBook(LString &file)
+int InsetTOC::docbook(Buffer const *, ostream & os, bool) const
 {
-       file += "<toc></toc>";
+       if (getCmdName() == "tableofcontents")
+               os << "<toc></toc>";
        return 0;
 }