mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 23:12:31 +00:00
ed858d73e5
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19920 a592a061-630c-0410-9148-cb99ea01b6c8
80 lines
1.4 KiB
C++
80 lines
1.4 KiB
C++
/**
|
|
* \file InsetTOC.cpp
|
|
* 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 "OutputParams.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")
|
|
{}
|
|
|
|
|
|
Inset * InsetTOC::clone() const
|
|
{
|
|
return new InsetTOC(*this);
|
|
}
|
|
|
|
|
|
docstring const InsetTOC::getScreenLabel(Buffer const & buf) const
|
|
{
|
|
if (getCmdName() == "tableofcontents")
|
|
return buf.B_("Table of Contents");
|
|
return _("Unknown TOC type");
|
|
}
|
|
|
|
|
|
Inset::Code InsetTOC::lyxCode() const
|
|
{
|
|
if (getCmdName() == "tableofcontents")
|
|
return Inset::TOC_CODE;
|
|
return Inset::NO_CODE;
|
|
}
|
|
|
|
|
|
int InsetTOC::plaintext(Buffer const & buffer, odocstream & os,
|
|
OutputParams const &) const
|
|
{
|
|
os << getScreenLabel(buffer) << "\n\n";
|
|
|
|
buffer.tocBackend().writePlaintextTocList(getCmdName(), os);
|
|
|
|
return PLAINTEXT_NEWLINE;
|
|
}
|
|
|
|
|
|
int InsetTOC::docbook(Buffer const &, odocstream & os,
|
|
OutputParams const &) const
|
|
{
|
|
if (getCmdName() == "tableofcontents")
|
|
os << "<toc></toc>";
|
|
return 0;
|
|
}
|
|
|
|
|
|
} // namespace lyx
|