X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettoc.C;h=c959ee47c5aeaa0a96825bb6b2b57897dc78ca88;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=512c9e96d7e17868f9a4407ea377e0ca0c0533dd;hpb=686f1e276f013e2dc56e3025798c7131bef173f5;p=lyx.git diff --git a/src/insets/insettoc.C b/src/insets/insettoc.C index 512c9e96d7..c959ee47c5 100644 --- a/src/insets/insettoc.C +++ b/src/insets/insettoc.C @@ -12,19 +12,22 @@ #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, "toc") {} @@ -36,7 +39,7 @@ std::auto_ptr InsetTOC::doClone() const } -string const InsetTOC::getScreenLabel(Buffer const &) const +docstring const InsetTOC::getScreenLabel(Buffer const &) const { if (getCmdName() == "tableofcontents") return _("Table of Contents"); @@ -52,31 +55,25 @@ InsetBase::Code InsetTOC::lyxCode() const } -int InsetTOC::plaintext(Buffer const & buffer, ostream & os, +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, - OutputParams const &) const -{ - if (getCmdName() == "tableofcontents") - os << ""; - return 0; -} - - -int InsetTOC::docbook(Buffer const &, ostream & os, +int InsetTOC::docbook(Buffer const &, odocstream & os, OutputParams const &) const { if (getCmdName() == "tableofcontents") os << ""; return 0; } + + +} // namespace lyx