X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetindex.h;h=638825412cce397fb9d05c75d51952896eddf3c6;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=5ead498423faf49c68350ffe3021acc097b93a39;hpb=2a5ab60ce880dea3719832844ee857275b837019;p=lyx.git diff --git a/src/insets/insetindex.h b/src/insets/insetindex.h index 5ead498423..638825412c 100644 --- a/src/insets/insetindex.h +++ b/src/insets/insetindex.h @@ -6,7 +6,7 @@ * * \author Lars Gullik Bjønnes * - * Full author contact details are available in file CREDITS + * Full author contact details are available in file CREDITS. */ #ifndef INSET_INDEX_H @@ -15,7 +15,10 @@ #include "insetcommand.h" -struct LaTeXFeatures; + +namespace lyx { + +class LaTeXFeatures; /** Used to insert index labels */ @@ -24,21 +27,18 @@ public: /// InsetIndex(InsetCommandParams const &); /// - ~InsetIndex(); - /// - virtual InsetBase * clone() const { - return new InsetIndex(params()); - } - /// - dispatch_result localDispatch(FuncRequest const & cmd); - /// - string const getScreenLabel(Buffer const *) const; + docstring const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// - Inset::Code lyxCode() const; + InsetBase::Code lyxCode() const; /// - int docbook(Buffer const *, std::ostream &, bool mixcont) const; + int docbook(Buffer const &, odocstream &, + OutputParams const &) const; +private: + virtual std::auto_ptr doClone() const { + return std::auto_ptr(new InsetIndex(params())); + } }; @@ -46,26 +46,23 @@ class InsetPrintIndex : public InsetCommand { public: /// InsetPrintIndex(InsetCommandParams const &); - /// - ~InsetPrintIndex(); - /// - InsetBase * clone() const { - return new InsetPrintIndex(params()); - } - /// - //dispatch_result localDispatch(FuncRequest const & cmd); /// Updates needed features for this inset. void validate(LaTeXFeatures & features) const; /// EDITABLE editable() const { return NOT_EDITABLE; } /// - bool display() const { return true; } - /// - Inset::Code lyxCode() const; + InsetBase::Code lyxCode() const; /// - string const getScreenLabel(Buffer const *) const; + bool display() const { return true; } /// - virtual bool needFullRow() const { return true; } + docstring const getScreenLabel(Buffer const &) const; +private: + virtual std::auto_ptr doClone() const { + return std::auto_ptr(new InsetPrintIndex(params())); + } }; + +} // namespace lyx + #endif