]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.C
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insettoc.C
index 809e5b242ada784762a777e135c6109752df7a22..512c9e96d7e17868f9a4407ea377e0ca0c0533dd 100644 (file)
@@ -5,69 +5,67 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
+
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include "insettoc.h"
 
+#include "dispatchresult.h"
+#include "funcrequest.h"
 #include "gettext.h"
-#include "insettoc.h"
-#include "BufferView.h"
-#include "frontends/LyXView.h"
-#include "frontends/Dialogs.h"
-#include "debug.h"
+#include "metricsinfo.h"
 #include "toc.h"
 
-using std::vector;
+#include "support/std_ostream.h"
+
+using std::string;
 using std::ostream;
 
 
-string const InsetTOC::getScreenLabel(Buffer const *) const
-{
-       string const cmdname(getCmdName());
 
-       if (cmdname == "tableofcontents")
-               return _("Table of Contents");
-       return _("Unknown toc list");
-}
+InsetTOC::InsetTOC(InsetCommandParams const & p)
+       : InsetCommand(p, "toc")
+{}
 
 
-Inset::Code InsetTOC::lyxCode() const
+std::auto_ptr<InsetBase> InsetTOC::doClone() const
 {
-       string const cmdname(getCmdName());
-       if (cmdname == "tableofcontents")
-               return Inset::TOC_CODE;
-       return Inset::NO_CODE;
+       return std::auto_ptr<InsetBase>(new InsetTOC(*this));
 }
 
 
-void InsetTOC::edit(BufferView * bv, int, int, mouse_button::state)
+string const InsetTOC::getScreenLabel(Buffer const &) const
 {
-       bv->owner()->getDialogs().showTOC(this);
+       if (getCmdName() == "tableofcontents")
+               return _("Table of Contents");
+       return _("Unknown toc list");
 }
 
 
-void InsetTOC::edit(BufferView * bv, bool)
+InsetBase::Code InsetTOC::lyxCode() const
 {
-       edit(bv, 0, 0, mouse_button::none);
+       if (getCmdName() == "tableofcontents")
+               return InsetBase::TOC_CODE;
+       return InsetBase::NO_CODE;
 }
 
 
-int InsetTOC::ascii(Buffer const * buffer, ostream & os, int) const
+int InsetTOC::plaintext(Buffer const & buffer, ostream & os,
+                   OutputParams const &) const
 {
        os << getScreenLabel(buffer) << "\n\n";
 
-       toc::asciiTocList(toc::getType(getCmdName()), buffer, os);
+       lyx::toc::asciiTocList(lyx::toc::getType(getCmdName()), buffer, os);
 
        os << "\n";
        return 0;
 }
 
 
-int InsetTOC::linuxdoc(Buffer const *, ostream & os) const
+int InsetTOC::linuxdoc(Buffer const &, ostream & os,
+                      OutputParams const &) const
 {
        if (getCmdName() == "tableofcontents")
                os << "<toc>";
@@ -75,7 +73,8 @@ int InsetTOC::linuxdoc(Buffer const *, ostream & os) const
 }
 
 
-int InsetTOC::docbook(Buffer const *, ostream & os, bool) const
+int InsetTOC::docbook(Buffer const &, ostream & os,
+                     OutputParams const &) const
 {
        if (getCmdName() == "tableofcontents")
                os << "<toc></toc>";