]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetWrap.h
DocBook: add a TODO for a newly discovered bug.
[features.git] / src / insets / InsetWrap.h
index b1539fc971fe5c294dd97acbf272ee3f939d4c38..02e0a202b61cb37d5e68ebaa5d1571b8315e0ac1 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 &);
@@ -55,37 +56,42 @@ public:
        static std::string params2string(InsetWrapParams const &);
 private:
        ///
-       void write(std::ostream & os) const;
+       void setCaptionType(std::string const & type) override;
+       ///
+       void write(std::ostream & os) const override;
        ///
-       void read(Lexer & lex);
+       void read(Lexer & lex) override;
        ///
-       void validate(LaTeXFeatures & features) const;
+       void validate(LaTeXFeatures & features) const override;
        ///
-       InsetCode lyxCode() const { return WRAP_CODE; }
+       InsetCode lyxCode() const override { return WRAP_CODE; }
        ///
-       docstring toolTip(BufferView const & bv, int x, int y) const;
+       docstring toolTip(BufferView const & bv, int x, int y) const override;
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const override;
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const override;
        ///
-       int docbook(odocstream &, OutputParams const &) const;
+       void docbook(XMLStream &, OutputParams const &) const override;
        ///
-       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       docstring xhtml(XMLStream &, OutputParams const &) const override;
        ///
-       bool insetAllowed(InsetCode) const;
+       bool insetAllowed(InsetCode) const override;
        ///
-       bool showInsetDialog(BufferView *) const;
+       bool showInsetDialog(BufferView *) const override;
        ///
-       bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
-       /// Update the counters of this inset and of its contents
-       void updateBuffer(ParIterator const &, UpdateType);
+       bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const override;
+       /// Update the label
+       void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false) override;
        ///
-       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       void doDispatch(Cursor & cur, FuncRequest & cmd) override;
        ///
-       docstring name() const;
+       docstring layoutName() const override;
        ///
-       Inset * clone() const { return new InsetWrap(*this); }
+       Inset * clone() const override { return new InsetWrap(*this); }
+       /// Is the content of this inset part of the immediate (visible) text sequence?
+       bool isPartOfTextSequence() const override { return false; }
 
        ///
        InsetWrapParams params_;