X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetNomencl.h;h=5d6c663d3c26e352a7e1ef0d55f16c0f79cb5967;hb=0362c6aae73c293d1c20277c12d362acfe0b2ef6;hp=8e75693130f8db4f9099f4c499a3eb324ef012dd;hpb=13d7df639b4d237ffac43a8926a0f8ceb0410557;p=lyx.git diff --git a/src/insets/InsetNomencl.h b/src/insets/InsetNomencl.h index 8e75693130..5d6c663d3c 100644 --- a/src/insets/InsetNomencl.h +++ b/src/insets/InsetNomencl.h @@ -40,6 +40,13 @@ public: 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 Inset * clone() const { return new InsetNomencl(params()); @@ -70,6 +77,13 @@ public: 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 Inset * clone() const { return new InsetPrintNomencl(params());