lyx_mirror/src/insets/insetindex.C
Lars Gullik Bjønnes 45a03f4f67 use the new sstream return non-pods as const, use string instead of char * in a lot of places
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1019 a592a061-630c-0410-9148-cb99ea01b6c8
2000-09-14 17:53:12 +00:00

50 lines
798 B
C

#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "insetindex.h"
#include "BufferView.h"
#include "LyXView.h"
#include "frontends/Dialogs.h"
#include "LaTeXFeatures.h"
InsetIndex::InsetIndex(InsetCommandParams const & p)
: InsetCommand(p)
{}
string const InsetIndex::getScreenLabel() const
{
return _("Idx");
}
void InsetIndex::Edit(BufferView * bv, int, int, unsigned int)
{
bv->owner()->getDialogs()->showIndex( this );
}
InsetPrintIndex::InsetPrintIndex(InsetCommandParams const & p)
: InsetCommand(p)
{}
string const InsetPrintIndex::getScreenLabel() const
{
return _("Index");
}
void InsetPrintIndex::Validate(LaTeXFeatures & features) const
{
features.makeidx = true;
}
Inset::Code InsetPrintIndex::LyxCode() const
{
return Inset::INDEX_CODE;
}