X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettoc.C;h=c959ee47c5aeaa0a96825bb6b2b57897dc78ca88;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=633d522076ffd6b8ff4c0807b343f58278eba898;hpb=46ab079b9fa9f5057ddccfb4df8c8c6b9c42a71a;p=lyx.git diff --git a/src/insets/insettoc.C b/src/insets/insettoc.C index 633d522076..c959ee47c5 100644 --- a/src/insets/insettoc.C +++ b/src/insets/insettoc.C @@ -1,116 +1,79 @@ -#include +/** + * \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. + */ -#ifdef __GNUG__ -#pragma implementation -#endif +#include -#include "gettext.h" #include "insettoc.h" -#include "BufferView.h" -#include "LyXView.h" -#include "frontends/Dialogs.h" -#include "debug.h" + #include "buffer.h" +#include "dispatchresult.h" +#include "funcrequest.h" +#include "gettext.h" +#include "metricsinfo.h" +#include "TocBackend.h" +#include "support/std_ostream.h" + + +namespace lyx { + +using std::string; using std::ostream; -using std::endl; -string const InsetTOC::getScreenLabel() const -{ - string cmdname( getCmdName() ); - if (cmdname == "tableofcontents" ) - return _("Table of Contents"); - else if (cmdname == "listofalgorithms" ) - return _("List of Algorithms"); - else if (cmdname == "listoffigures" ) - return _("List of Figures"); - else - return _("List of Tables"); -} + +InsetTOC::InsetTOC(InsetCommandParams const & p) + : InsetCommand(p, "toc") +{} -Inset::Code InsetTOC::LyxCode() const +std::auto_ptr InsetTOC::doClone() const { - string cmdname( getCmdName() ); - if (cmdname == "tableofcontents" ) - return Inset::TOC_CODE; - else if (cmdname == "listofalgorithms" ) - return Inset::LOA_CODE; - else if (cmdname == "listoffigures" ) - return Inset::LOF_CODE; - else - return Inset::LOT_CODE; + return std::auto_ptr(new InsetTOC(*this)); } -void InsetTOC::Edit(BufferView * bv, int, int, unsigned int) +docstring const InsetTOC::getScreenLabel(Buffer const &) const { - bv->owner()->getDialogs()->showTOC( this ); + if (getCmdName() == "tableofcontents") + return _("Table of Contents"); + return _("Unknown toc list"); } -int InsetTOC::Ascii(Buffer const * buffer, ostream & os, int) const +InsetBase::Code InsetTOC::lyxCode() const { - os << getScreenLabel() << endl << endl; - -#if 0 - Buffer::TocType type; - string cmdname = getCmdName(); - if (cmdname == "tableofcontents" ) - type = Buffer::TOC_TOC; - else if (cmdname == "listofalgorithms" ) - type = Buffer::TOC_LOA; - else if (cmdname == "listoffigures" ) - type = Buffer::TOC_LOF; - else - type = Buffer::TOC_LOT; - - vector > const toc_list = - buffer->getTocList(); - vector const & toc = toc_list[type]; - for (vector::const_iterator it = toc.begin(); - it != toc.end(); ++it) - os << string(4 * it->depth, ' ') << it->str << endl; -#else -#warning Fix Me! (Lgb) - string type; - string cmdname = getCmdName(); - if (cmdname == "tableofcontents" ) - type = "TOC"; - else if (cmdname == "listofalgorithms" ) - type = "LOA"; - else if (cmdname == "listoffigures" ) - type = "LOF"; - else - type = "LOT"; - - Buffer::Lists const toc_list = buffer->getLists(); - Buffer::Lists::const_iterator cit = - toc_list.find(type); - if (cit != toc_list.end()) { - Buffer::SingleList::const_iterator ccit = cit->second.begin(); - Buffer::SingleList::const_iterator end = cit->second.end(); - for (; ccit != end; ++ccit) - os << string(4 * ccit->depth, ' ') - << ccit->str << endl; - } -#endif - os << endl; - return 0; + if (getCmdName() == "tableofcontents") + return InsetBase::TOC_CODE; + return InsetBase::NO_CODE; } -int InsetTOC::Linuxdoc(Buffer const *, ostream & os) const +int InsetTOC::plaintext(Buffer const & buffer, odocstream & os, + OutputParams const &) const { - if (getCmdName() == "tableofcontents" ) - os << ""; + os << getScreenLabel(buffer) << "\n\n"; + + buffer.tocBackend().writePlaintextTocList(getCmdName(), os); + + os << "\n"; return 0; } -int InsetTOC::DocBook(Buffer const *, ostream & os) const +int InsetTOC::docbook(Buffer const &, odocstream & os, + OutputParams const &) const { - if (getCmdName() == "tableofcontents" ) + if (getCmdName() == "tableofcontents") os << ""; return 0; } + + +} // namespace lyx