]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetWrap.h
Move the global formats and system_formats variables into the
[lyx.git] / src / insets / InsetWrap.h
index ce6b73eb03539cfdd0338712f5edb6afc34b64b5..588a3bc1e16aee37b793ef86a68039a9589df6d9 100644 (file)
@@ -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;
        ///
@@ -79,7 +81,7 @@ private:
        bool showInsetDialog(BufferView *) const;
        ///
        bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
-       /// Update the counters of this inset and of its contents
+       /// Update the label
        void updateBuffer(ParIterator const &, UpdateType);
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
@@ -87,6 +89,8 @@ private:
        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_;