X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetindex.h;h=cb90a519cae83241b5465b00d7facbad1cba4bfe;hb=744c4025902c509fca665ec26a0d9280a7645efd;hp=ec68765ac03b271b0fe11414cd76c3312274cbdd;hpb=a654de29ea80901be5321f603008f0e6a82a0ec9;p=lyx.git diff --git a/src/insets/insetindex.h b/src/insets/insetindex.h index ec68765ac0..cb90a519ca 100644 --- a/src/insets/insetindex.h +++ b/src/insets/insetindex.h @@ -1,20 +1,17 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetindex.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1996-2001 the LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS. + */ #ifndef INSET_INDEX_H #define INSET_INDEX_H -#ifdef __GNUG__ -#pragma interface -#endif #include "insetcommand.h" @@ -25,48 +22,53 @@ 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, unsigned int); - /// - void edit(BufferView * bv, bool front = true); + InsetOld::Code lyxCode() const; /// - Inset::Code lyxCode() const; - /// - int docbook(Buffer const *, std::ostream &) const; + int docbook(Buffer const *, std::ostream &, bool mixcont) const; }; class InsetPrintIndex : public InsetCommand { public: /// - InsetPrintIndex(InsetCommandParams const &, bool same_id = false); + InsetPrintIndex(InsetCommandParams const &); + /// + ~InsetPrintIndex(); /// - virtual Inset * clone(Buffer const &, bool same_id = false) const { - return new InsetPrintIndex(params(), same_id); + 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, unsigned int) {} + EDITABLE editable() const { return NOT_EDITABLE; } /// - void edit(BufferView *, bool = true) {} + InsetOld::Code lyxCode() const; /// - EDITABLE editable() const{ return NOT_EDITABLE; } + string const getScreenLabel(Buffer const *) const; /// - bool display() const { return true; } + void metrics(MetricsInfo &, Dimension &) const; /// - Inset::Code lyxCode() const; + void draw(PainterInfo & pi, int x, int y) const; +private: /// - string const getScreenLabel(Buffer const *) const; + mutable unsigned int center_indent_; }; #endif