X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetindex.h;h=2f4baef458506144adf493181586614d726a7fcc;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=211043d9452086a0ee79c7adfe038dd3e54f8fa2;hpb=7521b5d20f42102cf444e3fd8718a088a60d0098;p=lyx.git diff --git a/src/insets/insetindex.h b/src/insets/insetindex.h index 211043d945..2f4baef458 100644 --- a/src/insets/insetindex.h +++ b/src/insets/insetindex.h @@ -31,11 +31,17 @@ public: return new InsetIndex(params(), same_id); } /// - string const getScreenLabel() const; + 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); + /// + Inset::Code lyxCode() const; + /// + int docbook(Buffer const *, std::ostream &) const; }; @@ -52,13 +58,15 @@ public: /// void edit(BufferView *, int, int, unsigned int) {} /// + void edit(BufferView *, bool = true) {} + /// EDITABLE editable() const{ return NOT_EDITABLE; } /// bool display() const { return true; } /// Inset::Code lyxCode() const; /// - string const getScreenLabel() const; + string const getScreenLabel(Buffer const *) const; }; #endif