lyx_mirror/src/insets/insettoc.C
Abdelrazak Younes 479e9054db * Buffer
- new pimpled TocBackend member and associated accessors.

* toc.[Ch]: delete all toc related methods except outline.

* TocBackend:
  - goTo(): deleted, this gets rid of the LyXView dependency
  - made all accessors const.

* ControlToc: 
  - rework the controller to work exclusively with TocBackend.
  - goTo(): now call LyXView::dispatch() directly

all other files: update with the TocBackend or ControlToc API changes.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15852 a592a061-630c-0410-9148-cb99ea01b6c8
2006-11-11 00:35:14 +00:00

80 lines
1.4 KiB
C

/**
* \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 <config.h>
#include "insettoc.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;
InsetTOC::InsetTOC(InsetCommandParams const & p)
: InsetCommand(p, "toc")
{}
std::auto_ptr<InsetBase> InsetTOC::doClone() const
{
return std::auto_ptr<InsetBase>(new InsetTOC(*this));
}
docstring const InsetTOC::getScreenLabel(Buffer const &) const
{
if (getCmdName() == "tableofcontents")
return _("Table of Contents");
return _("Unknown toc list");
}
InsetBase::Code InsetTOC::lyxCode() const
{
if (getCmdName() == "tableofcontents")
return InsetBase::TOC_CODE;
return InsetBase::NO_CODE;
}
int InsetTOC::plaintext(Buffer const & buffer, odocstream & os,
OutputParams const &) const
{
os << getScreenLabel(buffer) << "\n\n";
buffer.tocBackend().asciiTocList(getCmdName(), os);
os << "\n";
return 0;
}
int InsetTOC::docbook(Buffer const &, odocstream & os,
OutputParams const &) const
{
if (getCmdName() == "tableofcontents")
os << "<toc></toc>";
return 0;
}
} // namespace lyx