X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetNomencl.h;h=5d6c663d3c26e352a7e1ef0d55f16c0f79cb5967;hb=0362c6aae73c293d1c20277c12d362acfe0b2ef6;hp=96efc4bf4ce4ea0539402b3ecbf2643be5f08b91;hpb=295eea310e4b6b5db8ab3728605a745efe7e1576;p=lyx.git diff --git a/src/insets/InsetNomencl.h b/src/insets/InsetNomencl.h index 96efc4bf4c..5d6c663d3c 100644 --- a/src/insets/InsetNomencl.h +++ b/src/insets/InsetNomencl.h @@ -34,15 +34,22 @@ public: /// Updates needed features for this inset. void validate(LaTeXFeatures & features) const; /// - Inset::Code lyxCode() const; + InsetCode lyxCode() const { return NOMENCL_CODE; } /// int docbook(Buffer const &, 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: - virtual std::auto_ptr doClone() const { - return std::auto_ptr(new InsetNomencl(params())); + virtual Inset * clone() const { + return new InsetNomencl(params()); } /// unique id for this nomenclature entry for docbook export docstring nomenclature_entry_id; @@ -65,14 +72,21 @@ public: int docbook(Buffer const &, odocstream &, OutputParams const &) const; /// - Inset::Code lyxCode() const; + InsetCode lyxCode() const; /// - bool display() const { return true; } + DisplayType display() const { return AlignCenter; } /// docstring const getScreenLabel(Buffer const &) const; + /// + static ParamInfo const & findInfo(std::string const &); + /// + static std::string defaultCommand() { return "printnomenclature"; }; + /// + static bool isCompatibleCommand(std::string const & s) + { return s == "printnomenclature"; } private: - virtual std::auto_ptr doClone() const { - return std::auto_ptr(new InsetPrintNomencl(params())); + virtual Inset * clone() const { + return new InsetPrintNomencl(params()); } };