]> 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 abd689b255282d7c9cbcd9b06a3fcaa86d6a1440..c959ee47c5aeaa0a96825bb6b2b57897dc78ca88 100644 (file)
  *
  * Full author contact details are available in file CREDITS.
  */
+
 #include <config.h>
 
 #include "insettoc.h"
 
+#include "buffer.h"
+#include "dispatchresult.h"
 #include "funcrequest.h"
 #include "gettext.h"
 #include "metricsinfo.h"
-#include "toc.h"
+#include "TocBackend.h"
+
+#include "support/std_ostream.h"
+
+
+namespace lyx {
 
+using std::string;
 using std::ostream;
 
 
 InsetTOC::InsetTOC(InsetCommandParams const & p)
-       : InsetCommand(p)
+       : InsetCommand(p, "toc")
 {}
 
 
-InsetTOC::~InsetTOC()
+std::auto_ptr<InsetBase> InsetTOC::doClone() const
 {
-       InsetCommandMailer mailer("toc", *this);
-       mailer.hideDialog();
+       return std::auto_ptr<InsetBase>(new InsetTOC(*this));
 }
 
 
-string const InsetTOC::getScreenLabel(Buffer const &) const
+docstring const InsetTOC::getScreenLabel(Buffer const &) const
 {
-       string const cmdname(getCmdName());
-
-       if (cmdname == "tableofcontents")
+       if (getCmdName() == "tableofcontents")
                return _("Table of Contents");
        return _("Unknown toc list");
 }
 
 
-InsetOld::Code InsetTOC::lyxCode() const
-{
-       string const cmdname(getCmdName());
-       if (cmdname == "tableofcontents")
-               return InsetOld::TOC_CODE;
-       return InsetOld::NO_CODE;
-}
-
-
-void InsetTOC::metrics(MetricsInfo & mi, Dimension & dim) const
-{
-       InsetCommand::metrics(mi, dim);
-       int center_indent = (mi.base.textwidth - dim.wid) / 2;
-       Box b(center_indent, center_indent + dim.wid, -dim.asc, dim.des);
-       button().setBox(b);
-
-       dim.wid = mi.base.textwidth;
-       dim_ = dim;
-}
-
-
-void InsetTOC::draw(PainterInfo & pi, int x, int y) const
+InsetBase::Code InsetTOC::lyxCode() const
 {
-       InsetCommand::draw(pi, x + button().box().x1, y);
-}
-
-
-dispatch_result InsetTOC::localDispatch(FuncRequest const & cmd)
-{
-       switch (cmd.action) {
-       case LFUN_MOUSE_RELEASE:
-               if (button().box().contains(cmd.x, cmd.y))
-                       InsetCommandMailer("toc", *this).showDialog(cmd.view());
-               return DISPATCHED;
-
-       case LFUN_INSET_DIALOG_SHOW:
-               InsetCommandMailer("toc", *this).showDialog(cmd.view());
-               return DISPATCHED;
-
-       default:
-               return InsetCommand::localDispatch(cmd);
-       }
+       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, odocstream & os,
+                   OutputParams const &) const
 {
        os << getScreenLabel(buffer) << "\n\n";
 
-       lyx::toc::asciiTocList(lyx::toc::getType(getCmdName()), buffer, os);
+       buffer.tocBackend().writePlaintextTocList(getCmdName(), os);
 
        os << "\n";
        return 0;
 }
 
 
-int InsetTOC::linuxdoc(Buffer const &, ostream & os) const
+int InsetTOC::docbook(Buffer const &, odocstream & os,
+                     OutputParams const &) const
 {
        if (getCmdName() == "tableofcontents")
-               os << "<toc>";
+               os << "<toc></toc>";
        return 0;
 }
 
 
-int InsetTOC::docbook(Buffer const &, ostream & os, bool) const
-{
-       if (getCmdName() == "tableofcontents")
-               os << "<toc></toc>";
-       return 0;
-}
+} // namespace lyx