X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettoc.C;h=c959ee47c5aeaa0a96825bb6b2b57897dc78ca88;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=b658a3bd8064ed5e52a9792eefb5e6bebd397f92;hpb=1c52d8f898a221afca246a808df86266023d022e;p=lyx.git diff --git a/src/insets/insettoc.C b/src/insets/insettoc.C index b658a3bd80..c959ee47c5 100644 --- a/src/insets/insettoc.C +++ b/src/insets/insettoc.C @@ -1,74 +1,79 @@ +/** + * \file insettoc.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Lars Gullik Bjønnes + * + * Full author contact details are available in file CREDITS. + */ + #include -#ifdef __GNUG__ -#pragma implementation -#endif +#include "insettoc.h" +#include "buffer.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 "toc.h" +#include "metricsinfo.h" +#include "TocBackend.h" -using std::vector; -using std::ostream; +#include "support/std_ostream.h" -string const InsetTOC::getScreenLabel(Buffer const *) const -{ - string const cmdname(getCmdName()); +namespace lyx { - if (cmdname == "tableofcontents") - return _("Table of Contents"); - return _("Unknown toc list"); -} +using std::string; +using std::ostream; + + +InsetTOC::InsetTOC(InsetCommandParams const & p) + : InsetCommand(p, "toc") +{} -Inset::Code InsetTOC::lyxCode() const +std::auto_ptr InsetTOC::doClone() const { - string const cmdname(getCmdName()); - if (cmdname == "tableofcontents") - return Inset::TOC_CODE; - return Inset::NO_CODE; + return std::auto_ptr(new InsetTOC(*this)); } -void InsetTOC::edit(BufferView * bv, int, int, mouse_button::state) +docstring 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, odocstream & os, + OutputParams const &) const { os << getScreenLabel(buffer) << "\n\n"; - toc::asciiTocList(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