mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
fd355bbb2f
InsetCommand. Clean-up many Mailer::string2params functions. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8233 a592a061-630c-0410-9148-cb99ea01b6c8
83 lines
1.5 KiB
C
83 lines
1.5 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 "dispatchresult.h"
|
|
#include "funcrequest.h"
|
|
#include "gettext.h"
|
|
#include "metricsinfo.h"
|
|
#include "toc.h"
|
|
|
|
#include "support/std_ostream.h"
|
|
|
|
using std::string;
|
|
using std::ostream;
|
|
|
|
|
|
|
|
InsetTOC::InsetTOC(InsetCommandParams const & p)
|
|
: InsetCommand(p, "toc")
|
|
{}
|
|
|
|
|
|
std::auto_ptr<InsetBase> InsetTOC::clone() const
|
|
{
|
|
return std::auto_ptr<InsetBase>(new InsetTOC(*this));
|
|
}
|
|
|
|
|
|
string const InsetTOC::getScreenLabel(Buffer const &) const
|
|
{
|
|
if (getCmdName() == "tableofcontents")
|
|
return _("Table of Contents");
|
|
return _("Unknown toc list");
|
|
}
|
|
|
|
|
|
InsetOld::Code InsetTOC::lyxCode() const
|
|
{
|
|
if (getCmdName() == "tableofcontents")
|
|
return InsetOld::TOC_CODE;
|
|
return InsetOld::NO_CODE;
|
|
}
|
|
|
|
|
|
int InsetTOC::plaintext(Buffer const & buffer, ostream & os,
|
|
OutputParams const &) const
|
|
{
|
|
os << getScreenLabel(buffer) << "\n\n";
|
|
|
|
lyx::toc::asciiTocList(lyx::toc::getType(getCmdName()), buffer, os);
|
|
|
|
os << "\n";
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetTOC::linuxdoc(Buffer const &, ostream & os,
|
|
OutputParams const &) const
|
|
{
|
|
if (getCmdName() == "tableofcontents")
|
|
os << "<toc>";
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetTOC::docbook(Buffer const &, ostream & os,
|
|
OutputParams const &) const
|
|
{
|
|
if (getCmdName() == "tableofcontents")
|
|
os << "<toc></toc>";
|
|
return 0;
|
|
}
|