lyx_mirror/src/insets/InsetNomencl.h
Richard Heck 67e70c6c02 Well, it turns out that we need a different return value for the xhtml
routines, one that allows us to "defer" certain material, e.g., a float
that ought to appear in a div but can't simply be put into the middle
of a paragraph.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30079 a592a061-630c-0410-9148-cb99ea01b6c8
2009-06-12 17:23:17 +00:00

101 lines
2.5 KiB
C++

// -*- C++ -*-
/**
* \file InsetNomencl.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bjønnes
* \author O. U. Baran
*
* Full author contact details are available in file CREDITS.
*/
#ifndef INSET_NOMENCL_H
#define INSET_NOMENCL_H
#include "InsetCommand.h"
namespace lyx {
class LaTeXFeatures;
/** Used to insert nomenclature entries
*/
class InsetNomencl : public InsetCommand {
public:
///
InsetNomencl(InsetCommandParams const &);
///
docstring screenLabel() const;
///
docstring toolTip(BufferView const & bv, int x, int y) const;
///
bool hasSettings() const { return true; }
/// Updates needed features for this inset.
void validate(LaTeXFeatures & features) const;
///
InsetCode lyxCode() const { return NOMENCL_CODE; }
///
int docbook(odocstream &, OutputParams const &) const;
/// Does nothing at the moment.
docstring xhtml(odocstream &, OutputParams const &) const;
///
int docbookGlossary(odocstream &) const;
///
static ParamInfo const & findInfo(std::string const &);
///
static std::string defaultCommand() { return "nomenclature"; };
///
static bool isCompatibleCommand(std::string const & s)
{ return s == "nomenclature"; }
private:
Inset * clone() const { return new InsetNomencl(*this); }
/// unique id for this nomenclature entry for docbook export
docstring nomenclature_entry_id;
};
class InsetPrintNomencl : public InsetCommand {
public:
///
InsetPrintNomencl(InsetCommandParams const &);
/// Updates needed features for this inset.
void validate(LaTeXFeatures & features) const;
///
int docbook(odocstream &, OutputParams const &) const;
/// Does nothing at the moment.
docstring xhtml(odocstream &, OutputParams const &) const;
///
InsetCode lyxCode() const;
///
bool hasSettings() const { return true; }
///
DisplayType display() const { return AlignCenter; }
///
docstring screenLabel() const;
///
static ParamInfo const & findInfo(std::string const &);
///
static std::string defaultCommand() { return "printnomenclature"; };
///
static bool isCompatibleCommand(std::string const & s)
{ return s == "printnomenclature"; }
///
int latex(odocstream &, OutputParams const &) const;
///
docstring contextMenu(BufferView const & bv, int x, int y) const;
protected:
///
void doDispatch(Cursor & cur, FuncRequest & cmd);
///
bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
private:
Inset * clone() const { return new InsetPrintNomencl(*this); }
};
} // namespace lyx
#endif