X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetWrap.h;h=588a3bc1e16aee37b793ef86a68039a9589df6d9;hb=e5c79a43ee78192f45a9ab34873f8bb426b5f37e;hp=b079997743e48f50adccf2826cde8d49455bbf5e;hpb=996505c2ae981187d34580633fca410972c2493d;p=lyx.git diff --git a/src/insets/InsetWrap.h b/src/insets/InsetWrap.h index b079997743..588a3bc1e1 100644 --- a/src/insets/InsetWrap.h +++ b/src/insets/InsetWrap.h @@ -12,7 +12,7 @@ #ifndef INSETWRAP_H #define INSETWRAP_H -#include "InsetCollapsable.h" +#include "InsetCaptionable.h" #include "Length.h" @@ -41,7 +41,7 @@ public: /** The wrap inset */ -class InsetWrap : public InsetCollapsable { +class InsetWrap : public InsetCaptionable { public: /// InsetWrap(Buffer *, std::string const &); @@ -54,6 +54,8 @@ public: /// static std::string params2string(InsetWrapParams const &); private: + /// + void setCaptionType(std::string const & type); /// void write(std::ostream & os) const; /// @@ -65,9 +67,10 @@ private: /// docstring toolTip(BufferView const & bv, int x, int y) const; /// - int latex(odocstream &, OutputParams const &) const; + void latex(otexstream &, OutputParams const &) const; /// - int plaintext(odocstream &, OutputParams const &) const; + int plaintext(odocstringstream & ods, OutputParams const & op, + size_t max_length = INT_MAX) const; /// int docbook(odocstream &, OutputParams const &) const; /// @@ -78,14 +81,16 @@ private: 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 &, bool); + /// Update the label + void updateBuffer(ParIterator const &, UpdateType); /// void doDispatch(Cursor & cur, FuncRequest & cmd); /// - docstring name() const; + docstring layoutName() const; /// Inset * clone() const { return new InsetWrap(*this); } + /// Is the content of this inset part of the immediate (visible) text sequence? + bool isPartOfTextSequence() const { return false; } /// InsetWrapParams params_;