]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.C
Clean up InsetGraphics::Cache and rename as GraphicsInset.
[lyx.git] / src / insets / insettoc.C
index f74b85ff8e869d6c5d5e258b6139e13080db4149..8e0469482548c9bee87976a2aa2cdb5e1cd158bd 100644 (file)
@@ -1,64 +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 "funcrequest.h"
 #include "BufferView.h"
-#include "LyXView.h"
+#include "frontends/LyXView.h"
 #include "frontends/Dialogs.h"
 #include "debug.h"
+#include "toc.h"
 
+using std::vector;
 using std::ostream;
 
 
-string InsetTOC::getScreenLabel() const 
+InsetTOC::InsetTOC(InsetCommandParams const & p)
+       : InsetCommand(p)
+{}
+
+
+InsetTOC::~InsetTOC()
 {
-       string cmdname( getCmdName() );
-       if( cmdname == "tableofcontents" )
+       InsetCommandMailer mailer("toc", *this);
+       mailer.hideDialog();
+}
+
+
+string const InsetTOC::getScreenLabel(Buffer const *) const
+{
+       string const cmdname(getCmdName());
+
+       if (cmdname == "tableofcontents")
                return _("Table of Contents");
-       else if( cmdname == "listofalgorithms" )
-               return _("List of Algorithms");
-       else if( cmdname == "listoffigures" )
-               return _("List of Figures");
-       else
-               return _("List of Tables");
+       return _("Unknown toc list");
 }
 
 
-Inset::Code InsetTOC::LyxCode() const
+Inset::Code InsetTOC::lyxCode() const
 {
-       string cmdname( getCmdName() );
-       if( cmdname == "tableofcontents" )
+       string const cmdname(getCmdName());
+       if (cmdname == "tableofcontents")
                return Inset::TOC_CODE;
-       else if( cmdname == "listofalgorithms" )
-               return Inset::LOA_CODE;
-       else if( cmdname == "listoffigures" )
-               return Inset::LOF_CODE; 
-       else
-               return Inset::LOT_CODE;
+       return Inset::NO_CODE;
 }
 
 
-void InsetTOC::Edit(BufferView * bv, int, int, unsigned int)
+dispatch_result InsetTOC::localDispatch(FuncRequest const & cmd)
 {
-       bv->owner()->getDialogs()->showTOC( this );
+       switch (cmd.action) {
+       case LFUN_INSET_EDIT:
+               InsetCommandMailer("toc", *this).showDialog(cmd.view());
+               return DISPATCHED;
+       default:
+               return InsetCommand::localDispatch(cmd);
+       }
+}
+
+
+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
+int InsetTOC::linuxdoc(Buffer const *, ostream & os) const
 {
-       if( getCmdName() == "tableofcontents" )
+       if (getCmdName() == "tableofcontents")
                os << "<toc>";
        return 0;
 }
 
 
-int InsetTOC::DocBook(Buffer const *, ostream & os) const
+int InsetTOC::docbook(Buffer const *, ostream & os, bool) const
 {
-       if( getCmdName() == "tableofcontents" )
+       if (getCmdName() == "tableofcontents")
                os << "<toc></toc>";
        return 0;
 }