X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetindex.h;h=cb90a519cae83241b5465b00d7facbad1cba4bfe;hb=744c4025902c509fca665ec26a0d9280a7645efd;hp=3f13751563d3fe840ce94b58a4aa006e6ce1d22a;hpb=cda53633ff3a06b87889f37e9fb5b905dec4c80d;p=lyx.git diff --git a/src/insets/insetindex.h b/src/insets/insetindex.h index 3f13751563..cb90a519ca 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 @@ -22,23 +22,21 @@ struct LaTeXFeatures; class InsetIndex : public InsetCommand { public: /// - InsetIndex(InsetCommandParams const &, bool same_id = false); + InsetIndex(InsetCommandParams const &); /// ~InsetIndex(); /// - virtual Inset * clone(Buffer const &, bool same_id = false) const { - return new InsetIndex(params(), same_id); + virtual std::auto_ptr clone() const { + return std::auto_ptr(new InsetIndex(params())); } /// + dispatch_result localDispatch(FuncRequest const & cmd); + /// string const getScreenLabel(Buffer const *) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// - void edit(BufferView *, int, int, mouse_button::state); - /// - void edit(BufferView * bv, bool front = true); - /// - Inset::Code lyxCode() const; + InsetOld::Code lyxCode() const; /// int docbook(Buffer const *, std::ostream &, bool mixcont) const; }; @@ -47,27 +45,30 @@ public: class InsetPrintIndex : public InsetCommand { public: /// - InsetPrintIndex(InsetCommandParams const &, bool same_id = false); + InsetPrintIndex(InsetCommandParams const &); /// - virtual Inset * clone(Buffer const &, bool same_id = false) const { - return new InsetPrintIndex(params(), same_id); + ~InsetPrintIndex(); + /// + virtual std::auto_ptr clone() const { + return std::auto_ptr(new InsetPrintIndex(params())); } + /// + //dispatch_result localDispatch(FuncRequest const & cmd); /// Updates needed features for this inset. void validate(LaTeXFeatures & features) const; /// - void edit(BufferView *, int, int, mouse_button::state) {} - /// - void edit(BufferView *, bool = true) {} - /// EDITABLE editable() const { return NOT_EDITABLE; } /// - bool display() const { return true; } - /// - Inset::Code lyxCode() const; + InsetOld::Code lyxCode() const; /// string const getScreenLabel(Buffer const *) const; /// - virtual bool needFullRow() const { return true; } + void metrics(MetricsInfo &, Dimension &) const; + /// + void draw(PainterInfo & pi, int x, int y) const; +private: + /// + mutable unsigned int center_indent_; }; #endif