]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetWrap.h
New attempt on #9906: allow following hyperlinks via context menu.
[lyx.git] / src / insets / InsetWrap.h
index bdd084b0ef98cfaaaf89d72ad8a5e15cab6132b4..5619dc042b73f491accce98d5c5d986ad1a3dcbc 100644 (file)
@@ -12,8 +12,9 @@
 #ifndef INSETWRAP_H
 #define INSETWRAP_H
 
-#include "InsetCollapsable.h"
-#include "Length.h"
+#include "InsetCaptionable.h"
+
+#include "support/Length.h"
 
 
 namespace lyx {
@@ -41,7 +42,7 @@ public:
 
 /** The wrap inset
  */
-class InsetWrap : public InsetCollapsable {
+class InsetWrap : public InsetCaptionable {
 public:
        ///
        InsetWrap(Buffer *, std::string const &);
@@ -54,6 +55,8 @@ public:
        ///
        static std::string params2string(InsetWrapParams const &);
 private:
+       ///
+       void setCaptionType(std::string const & type);
        ///
        void write(std::ostream & os) const;
        ///
@@ -67,25 +70,28 @@ private:
        ///
        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;
+       void docbook(XMLStream &, OutputParams const &) const;
        ///
-       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       docstring xhtml(XMLStream &, 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 updateBuffer(ParIterator const &, UpdateType);
+       /// Update the label
+       void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false);
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
        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_;