mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
0c59c26b08
* src/insets/InsetIndex.{cpp,h} (latex): - a more general method to get the index sorting of formatted strings and macros right (bug 4800). Please test, everybody. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24515 a592a061-630c-0410-9148-cb99ea01b6c8
81 lines
1.7 KiB
C++
81 lines
1.7 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetIndex.h
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef INSET_INDEX_H
|
|
#define INSET_INDEX_H
|
|
|
|
|
|
#include "InsetCollapsable.h"
|
|
#include "InsetCommand.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
/** Used to insert index labels
|
|
*/
|
|
class InsetIndex : public InsetCollapsable {
|
|
public:
|
|
///
|
|
InsetIndex(Buffer const &);
|
|
private:
|
|
///
|
|
EDITABLE editable() const { return HIGHLY_EDITABLE; }
|
|
///
|
|
InsetCode lyxCode() const { return INDEX_CODE; }
|
|
///
|
|
docstring name() const { return from_ascii("Index"); }
|
|
///
|
|
void write(std::ostream & os) const;
|
|
///
|
|
int docbook(odocstream &, OutputParams const &) const;
|
|
///
|
|
int latex(odocstream &, OutputParams const &) const;
|
|
/// should paragraph indendation be omitted in any case?
|
|
bool neverIndent() const { return true; }
|
|
///
|
|
void addToToc(ParConstIterator const &) const;
|
|
///
|
|
Inset * clone() const { return new InsetIndex(*this); }
|
|
};
|
|
|
|
|
|
class InsetPrintIndex : public InsetCommand {
|
|
public:
|
|
///
|
|
InsetPrintIndex(InsetCommandParams const &);
|
|
|
|
///
|
|
static ParamInfo const & findInfo(std::string const &);
|
|
///
|
|
static std::string defaultCommand() { return "printindex"; };
|
|
///
|
|
static bool isCompatibleCommand(std::string const & s)
|
|
{ return s == "printindex"; }
|
|
private:
|
|
/// Updates needed features for this inset.
|
|
void validate(LaTeXFeatures & features) const;
|
|
///
|
|
EDITABLE editable() const { return NOT_EDITABLE; }
|
|
///
|
|
InsetCode lyxCode() const;
|
|
///
|
|
DisplayType display() const { return AlignCenter; }
|
|
///
|
|
docstring screenLabel() const;
|
|
///
|
|
Inset * clone() const { return new InsetPrintIndex(*this); }
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|