X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettoc.C;h=c959ee47c5aeaa0a96825bb6b2b57897dc78ca88;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=8c8f732c588e1ec3074da680e807d5b617bd6d34;hpb=ef2290cf5e29a6bd1b5e8b83ff3b616a805a5543;p=lyx.git diff --git a/src/insets/insettoc.C b/src/insets/insettoc.C index 8c8f732c58..c959ee47c5 100644 --- a/src/insets/insettoc.C +++ b/src/insets/insettoc.C @@ -7,102 +7,73 @@ * * Full author contact details are available in file CREDITS. */ -#include +#include -#include "gettext.h" #include "insettoc.h" + +#include "buffer.h" +#include "dispatchresult.h" #include "funcrequest.h" -#include "BufferView.h" -#include "frontends/LyXView.h" -#include "frontends/Dialogs.h" -#include "debug.h" -#include "toc.h" +#include "gettext.h" +#include "metricsinfo.h" +#include "TocBackend.h" + +#include "support/std_ostream.h" + + +namespace lyx { -using std::vector; +using std::string; using std::ostream; InsetTOC::InsetTOC(InsetCommandParams const & p) - : InsetCommand(p) + : InsetCommand(p, "toc") {} -InsetTOC::~InsetTOC() +std::auto_ptr InsetTOC::doClone() const { - InsetCommandMailer mailer("toc", *this); - mailer.hideDialog(); + return std::auto_ptr(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 +InsetBase::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); - center_indent_ = (mi.base.textwidth - dim.wid) / 2; - dim.wid = mi.base.textwidth; - dim_ = dim; -} - - -void InsetTOC::draw(PainterInfo & pi, int x, int y) const -{ - InsetCommand::draw(pi, x + center_indent_, y); -} - - -dispatch_result InsetTOC::localDispatch(FuncRequest const & cmd) -{ - switch (cmd.action) { - case LFUN_INSET_EDIT: - 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 << ""; + os << ""; return 0; } -int InsetTOC::docbook(Buffer const *, ostream & os, bool) const -{ - if (getCmdName() == "tableofcontents") - os << ""; - return 0; -} +} // namespace lyx