X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetWrap.h;h=b1539fc971fe5c294dd97acbf272ee3f939d4c38;hb=f5123ccfa82215030c70561af881175d92244492;hp=6078e53ec6a5191ba63d3815ae0e53b59c59bb80;hpb=209b04eaa9b2e6820a40a81699f7e640eb67686b;p=lyx.git diff --git a/src/insets/InsetWrap.h b/src/insets/InsetWrap.h index 6078e53ec6..b1539fc971 100644 --- a/src/insets/InsetWrap.h +++ b/src/insets/InsetWrap.h @@ -44,7 +44,7 @@ public: class InsetWrap : public InsetCollapsable { public: /// - InsetWrap(Buffer const &, std::string const &); + InsetWrap(Buffer *, std::string const &); /// ~InsetWrap(); /// @@ -63,32 +63,32 @@ private: /// InsetCode lyxCode() const { return WRAP_CODE; } /// + docstring toolTip(BufferView const & bv, int x, int y) const; + /// int latex(odocstream &, OutputParams const &) const; /// int plaintext(odocstream &, OutputParams const &) const; /// int docbook(odocstream &, OutputParams const &) const; /// - docstring editMessage() const; + docstring xhtml(XHTMLStream &, OutputParams const &) const; /// bool insetAllowed(InsetCode) const; /// bool showInsetDialog(BufferView *) const; /// bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; - // Update the counters of this inset and of its contents - void updateLabels(ParIterator const &); + /// Update the counters of this inset and of its contents + void updateBuffer(ParIterator const &, UpdateType); /// void doDispatch(Cursor & cur, FuncRequest & cmd); /// - docstring name() const { return name_; } + docstring name() const; /// Inset * clone() const { return new InsetWrap(*this); } /// InsetWrapParams params_; - /// - docstring name_; }; } // namespace lyx