lyx_mirror/src/insets/insetindex.C
Jean-Marc Lasgouttes e59e72d1d1 do not include language.h and gettext.h in lyxfont.h and lyxparagraph.h
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1899 a592a061-630c-0410-9148-cb99ea01b6c8
2001-04-05 12:26:41 +00:00

51 lines
819 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"
#include "gettext.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;
}