lyx_mirror/src/insets/insetindex.C
Lars Gullik Bjønnes 0d449056ef Output docbook as utf8. Probably quite a bit more work needed, but then help form a docbook person is needed.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15387 a592a061-630c-0410-9148-cb99ea01b6c8
2006-10-19 21:00:33 +00:00

90 lines
1.6 KiB
C

/**
* \file insetindex.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 "insetindex.h"
#include "dispatchresult.h"
#include "funcrequest.h"
#include "gettext.h"
#include "LaTeXFeatures.h"
#include "metricsinfo.h"
#include "sgml.h"
#include "support/std_ostream.h"
using lyx::docstring;
using lyx::odocstream;
using std::string;
using std::ostream;
InsetIndex::InsetIndex(InsetCommandParams const & p)
: InsetCommand(p, "index")
{}
// InsetIndex::InsetIndex(InsetCommandParams const & p, bool)
// : InsetCommand(p, false)
// {}
docstring const InsetIndex::getScreenLabel(Buffer const &) const
{
return _("Idx");
}
int InsetIndex::docbook(Buffer const &, odocstream & os,
OutputParams const &) const
{
// FIXME UNICODE
os << "<indexterm><primary>"
<< lyx::from_ascii(sgml::escapeString(getContents()))
<< "</primary></indexterm>";
return 0;
}
InsetBase::Code InsetIndex::lyxCode() const
{
return InsetBase::INDEX_CODE;
}
InsetPrintIndex::InsetPrintIndex(InsetCommandParams const & p)
: InsetCommand(p, string())
{}
// InsetPrintIndex::InsetPrintIndex(InsetCommandParams const & p, bool)
// : InsetCommand(p, false)
// {}
docstring const InsetPrintIndex::getScreenLabel(Buffer const &) const
{
return _("Index");
}
void InsetPrintIndex::validate(LaTeXFeatures & features) const
{
features.require("makeidx");
}
InsetBase::Code InsetPrintIndex::lyxCode() const
{
return InsetBase::INDEX_PRINT_CODE;
}