X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetindex.h;h=638825412cce397fb9d05c75d51952896eddf3c6;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=d30319586a1bd6139a5b80d600904d2f3f5c9e1a;hpb=b0eb70e869128e30ab7e4538aa32a244fd4cea57;p=lyx.git diff --git a/src/insets/insetindex.h b/src/insets/insetindex.h index d30319586a..638825412c 100644 --- a/src/insets/insetindex.h +++ b/src/insets/insetindex.h @@ -15,7 +15,10 @@ #include "insetcommand.h" -struct LaTeXFeatures; + +namespace lyx { + +class LaTeXFeatures; /** Used to insert index labels */ @@ -24,24 +27,18 @@ public: /// InsetIndex(InsetCommandParams const &); /// - ~InsetIndex(); - /// - virtual std::auto_ptr clone() const { - return std::auto_ptr(new InsetIndex(params())); - } - /// - std::string const getScreenLabel(Buffer const &) const; + docstring const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// - InsetOld::Code lyxCode() const; + InsetBase::Code lyxCode() const; /// - int docbook(Buffer const &, std::ostream &, bool mixcont) const; -protected: - /// - virtual - DispatchResult - priv_dispatch(FuncRequest const & cmd, idx_type &, pos_type &); + int docbook(Buffer const &, odocstream &, + OutputParams const &) const; +private: + virtual std::auto_ptr doClone() const { + return std::auto_ptr(new InsetIndex(params())); + } }; @@ -49,29 +46,23 @@ class InsetPrintIndex : public InsetCommand { public: /// InsetPrintIndex(InsetCommandParams const &); - /// - ~InsetPrintIndex(); - /// - virtual std::auto_ptr clone() const { - return std::auto_ptr(new InsetPrintIndex(params())); - } /// Updates needed features for this inset. void validate(LaTeXFeatures & features) const; /// EDITABLE editable() const { return NOT_EDITABLE; } /// - InsetOld::Code lyxCode() const; + InsetBase::Code lyxCode() const; /// bool display() const { return true; } /// - std::string const getScreenLabel(Buffer const &) const; - /// - void metrics(MetricsInfo &, Dimension &) const; - /// - void draw(PainterInfo & pi, int x, int y) const; + docstring const getScreenLabel(Buffer const &) const; private: - /// - mutable unsigned int center_indent_; + virtual std::auto_ptr doClone() const { + return std::auto_ptr(new InsetPrintIndex(params())); + } }; + +} // namespace lyx + #endif