lyx_mirror/src/insets/insetindex.C

63 lines
1010 B
C++
Raw Normal View History

#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, bool)
: InsetCommand(p)
{}
string const InsetIndex::getScreenLabel(Buffer const *) const
{
return _("Idx");
}
void InsetIndex::edit(BufferView * bv, int, int, unsigned int)
{
bv->owner()->getDialogs()->showIndex( this );
}
void InsetIndex::edit(BufferView * bv, bool)
{
edit(bv, 0, 0, 0);
}
Inset::Code InsetIndex::lyxCode() const
{
return Inset::INDEX_CODE;
}
InsetPrintIndex::InsetPrintIndex(InsetCommandParams const & p, bool)
: InsetCommand(p)
{}
string const InsetPrintIndex::getScreenLabel(Buffer const *) const
{
return _("Index");
}
void InsetPrintIndex::validate(LaTeXFeatures & features) const
{
features.makeidx = true;
}
Inset::Code InsetPrintIndex::lyxCode() const
{
return Inset::INDEX_PRINT_CODE;
}