X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetNomencl.h;h=14507b66ce3cd163b7c0b8b9110e70531d2bba93;hb=3d7ede605978461a6bd67b250925fcc8bf8404c3;hp=39e1d9ce3bbe1c929128c64c8adf9c9bb81de4a9;hpb=f1cba8ff64b369792fd49f5ddf90e8126ab476ac;p=lyx.git diff --git a/src/insets/InsetNomencl.h b/src/insets/InsetNomencl.h index 39e1d9ce3b..14507b66ce 100644 --- a/src/insets/InsetNomencl.h +++ b/src/insets/InsetNomencl.h @@ -26,30 +26,54 @@ class LaTeXFeatures; class InsetNomencl : public InsetCommand { public: /// - InsetNomencl(InsetCommandParams const &); + InsetNomencl(Buffer * buf, InsetCommandParams const &); + /// - docstring screenLabel() const; + int docbookGlossary(odocstream &) const; + + /// \name Public functions inherited from Inset class + //@{ /// docstring toolTip(BufferView const & bv, int x, int y) const; /// - EDITABLE editable() const { return IS_EDITABLE; } + bool hasSettings() const { return true; } /// Updates needed features for this inset. void validate(LaTeXFeatures & features) const; /// + void addToToc(DocIterator const & di, bool output_active, + UpdateType utype) const; + /// InsetCode lyxCode() const { return NOMENCL_CODE; } /// int docbook(odocstream &, OutputParams const &) const; - /// - int docbookGlossary(odocstream &) const; + /// Does nothing at the moment. + docstring xhtml(XHTMLStream &, OutputParams const &) const; + //@} + + /// \name Static public methods obligated for InsetCommand derived classes + //@{ /// static ParamInfo const & findInfo(std::string const &); /// - static std::string defaultCommand() { return "nomenclature"; }; + static std::string defaultCommand() { return "nomenclature"; } /// static bool isCompatibleCommand(std::string const & s) { return s == "nomenclature"; } + //@} + private: + /// \name Private functions inherited from Inset class + //@{ + /// Inset * clone() const { return new InsetNomencl(*this); } + //@} + + /// \name Private functions inherited from InsetCommand class + //@{ + /// + docstring screenLabel() const; + //@} + /// unique id for this nomenclature entry for docbook export docstring nomenclature_entry_id; }; @@ -58,34 +82,58 @@ private: class InsetPrintNomencl : public InsetCommand { public: /// - InsetPrintNomencl(InsetCommandParams const &); + InsetPrintNomencl(Buffer * buf, InsetCommandParams const &); + + /// \name Public functions inherited from Inset class + //@{ /// 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(odocstream &, OutputParams const &) const; + /// + docstring xhtml(XHTMLStream &, OutputParams const &) const; /// InsetCode lyxCode() const; /// + bool hasSettings() const { return true; } + /// DisplayType display() const { return AlignCenter; } /// - docstring screenLabel() const; + void latex(otexstream &, OutputParams const &) const; + /// + std::string contextMenuName() const; + //@} + + /// \name Static public methods obligated for InsetCommand derived classes + //@{ /// static ParamInfo const & findInfo(std::string const &); /// - static std::string defaultCommand() { return "printnomenclature"; }; + static std::string defaultCommand() { return "printnomenclature"; } /// static bool isCompatibleCommand(std::string const & s) { return s == "printnomenclature"; } + //@} + private: + /// \name Private functions inherited from Inset class + //@{ + /// Inset * clone() const { return new InsetPrintNomencl(*this); } -}; + /// + bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & status) const; + /// + void doDispatch(Cursor & cur, FuncRequest & cmd); + /// + docstring layoutName() const { return from_ascii("PrintNomencl"); } + //@} + /// \name Private functions inherited from InsetCommand class + //@{ + /// + docstring screenLabel() const; + //@} +}; } // namespace lyx