2006-11-04 17:55:36 +00:00
|
|
|
|
// -*- 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<EFBFBD>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;
|
|
|
|
|
|
2006-11-07 22:28:53 +00:00
|
|
|
|
/** Used to insert glossary labels
|
2006-11-04 17:55:36 +00:00
|
|
|
|
*/
|
|
|
|
|
class InsetNomencl : public InsetCommand {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
InsetNomencl(InsetCommandParams const &);
|
|
|
|
|
///
|
|
|
|
|
docstring const getScreenLabel(Buffer const &) const;
|
|
|
|
|
///
|
|
|
|
|
EDITABLE editable() const { return IS_EDITABLE; }
|
|
|
|
|
/// Updates needed features for this inset.
|
|
|
|
|
void validate(LaTeXFeatures & features) const;
|
|
|
|
|
///
|
|
|
|
|
InsetBase::Code lyxCode() const;
|
|
|
|
|
///
|
|
|
|
|
int docbook(Buffer const &, odocstream &,
|
|
|
|
|
OutputParams const &) const;
|
2006-11-10 15:45:42 +00:00
|
|
|
|
///
|
|
|
|
|
int docbookGlossary(odocstream &) const;
|
2006-11-04 17:55:36 +00:00
|
|
|
|
private:
|
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const {
|
|
|
|
|
return std::auto_ptr<InsetBase>(new InsetNomencl(params()));
|
|
|
|
|
}
|
2006-11-10 15:45:42 +00:00
|
|
|
|
/// unique id for this glossary entry for docbook export
|
|
|
|
|
docstring glossary_entry_id;
|
2006-11-04 17:55:36 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class InsetPrintNomencl : public InsetCommand {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
InsetPrintNomencl(InsetCommandParams const &);
|
|
|
|
|
/// Updates needed features for this inset.
|
|
|
|
|
void validate(LaTeXFeatures & features) const;
|
|
|
|
|
// FIXME: This should be editable to set the label width (stored
|
|
|
|
|
// in params_["labelwidth"]).
|
|
|
|
|
// Currently the width can be read from file and written, but not
|
|
|
|
|
// changed.
|
|
|
|
|
///
|
|
|
|
|
EDITABLE editable() const { return NOT_EDITABLE; }
|
|
|
|
|
///
|
|
|
|
|
int docbook(Buffer const &, odocstream &,
|
|
|
|
|
OutputParams const &) const;
|
|
|
|
|
///
|
|
|
|
|
InsetBase::Code lyxCode() const;
|
|
|
|
|
///
|
|
|
|
|
bool display() const { return true; }
|
|
|
|
|
///
|
|
|
|
|
docstring const getScreenLabel(Buffer const &) const;
|
|
|
|
|
private:
|
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const {
|
|
|
|
|
return std::auto_ptr<InsetBase>(new InsetPrintNomencl(params()));
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
|
|
#endif
|