X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettoc.h;h=413740f4860ebbfe5c9950107a255ba70a108a7d;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=9e2078f2cbb637c44f409e5305dc9c8d9e997194;hpb=ba916a0f89d99dac83a584e60fd98c1b3d6d614d;p=lyx.git diff --git a/src/insets/insettoc.h b/src/insets/insettoc.h index 9e2078f2cb..413740f486 100644 --- a/src/insets/insettoc.h +++ b/src/insets/insettoc.h @@ -5,7 +5,7 @@ * LyX, The Document Word Processor * * Copyright 1995 Matthias Ettrich - * Copyright 1996-2000 The LyX Team. + * Copyright 1996-2001 The LyX Team. * * ====================================================== */ @@ -23,25 +23,30 @@ class InsetTOC : public InsetCommand { public: /// - InsetTOC(InsetCommandParams const & p) : InsetCommand(p) {} + InsetTOC(InsetCommandParams const & p, bool same_id = false) + : InsetCommand(p, same_id) {} /// - Inset * Clone(Buffer const &) const { return new InsetTOC(params()); } - /// - string const getScreenLabel() const; + virtual Inset * clone(Buffer const &, bool same_id = false) const { + return new InsetTOC(params(), same_id); + } /// - void Edit(BufferView * bv, int, int, unsigned int); - /// - EDITABLE Editable() const { return IS_EDITABLE; } + string const getScreenLabel(Buffer const *) const; + /// + void edit(BufferView * bv, int, int, unsigned int); + /// + void edit(BufferView * bv, bool front = true); + /// + EDITABLE editable() const { return IS_EDITABLE; } /// bool display() const { return true; } /// - Inset::Code LyxCode() const; + Inset::Code lyxCode() const; /// - int Ascii(Buffer const *, std::ostream &, int linelen) const; + int ascii(Buffer const *, std::ostream &, int linelen) const; /// - int Linuxdoc(Buffer const *, std::ostream &) const; + int linuxdoc(Buffer const *, std::ostream &) const; /// - int DocBook(Buffer const *, std::ostream &) const; + int docbook(Buffer const *, std::ostream &) const; }; #endif