X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettoc.C;h=c959ee47c5aeaa0a96825bb6b2b57897dc78ca88;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=d9466b1fa12fc82b8689e0cbde8daece0903fb19;hpb=4588bb075a5319d35c7514e6c537fc5183c4c2e2;p=lyx.git diff --git a/src/insets/insettoc.C b/src/insets/insettoc.C index d9466b1fa1..c959ee47c5 100644 --- a/src/insets/insettoc.C +++ b/src/insets/insettoc.C @@ -12,36 +12,34 @@ #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() -{ - InsetCommandMailer("toc", *this).hideDialog(); -} - - -std::auto_ptr InsetTOC::clone() const +std::auto_ptr InsetTOC::doClone() const { return std::auto_ptr(new InsetTOC(*this)); } -string const InsetTOC::getScreenLabel(Buffer const &) const +docstring const InsetTOC::getScreenLabel(Buffer const &) const { if (getCmdName() == "tableofcontents") return _("Table of Contents"); @@ -49,71 +47,33 @@ string const InsetTOC::getScreenLabel(Buffer const &) const } -InsetOld::Code InsetTOC::lyxCode() const +InsetBase::Code InsetTOC::lyxCode() const { if (getCmdName() == "tableofcontents") - return InsetOld::TOC_CODE; - return InsetOld::NO_CODE; + return InsetBase::TOC_CODE; + return InsetBase::NO_CODE; } -void InsetTOC::metrics(MetricsInfo & mi, Dimension & dim) const -{ - InsetCommand::metrics(mi, dim); - int const x1 = (mi.base.textwidth - dim.wid) / 2; - button().setBox(Box(x1, x1 + dim.wid, -dim.asc, dim.des)); - dim.wid = mi.base.textwidth; - dim_ = dim; -} - - -void InsetTOC::draw(PainterInfo & pi, int x, int y) const -{ - InsetCommand::draw(pi, button().box().x1, y); -} - - -dispatch_result -InsetTOC::priv_dispatch(FuncRequest const & cmd, idx_type & idx, pos_type & pos) -{ - 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::priv_dispatch(cmd, idx, pos); - } -} - - -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