]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetWrap.h
Make undo action no-ops when the buffer is read-only
[lyx.git] / src / insets / InsetWrap.h
index e7c316c42a762fcce32fdd61e0c179022b2cb615..a44821e4281d3228fdbb75ac38b96bf8d3e72a1f 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 {
@@ -29,22 +30,22 @@ public:
        ///
        std::string type;
        ///
-       int lines;
+       int lines = 0;
        ///
-       std::string placement;
+       std::string placement = "o";
        ///
-       Length overhang;
+       Length overhang = Length(0, Length::PCW);
        ///
-       Length width;
+       Length width = Length(50, Length::PCW);
 };
 
 
 /** The wrap inset
  */
-class InsetWrap : public InsetCollapsable {
+class InsetWrap : public InsetCaptionable {
 public:
        ///
-       InsetWrap(Buffer const &, std::string const &);
+       InsetWrap(Buffer *, std::string const &);
        ///
        ~InsetWrap();
        ///
@@ -55,39 +56,42 @@ public:
        static std::string params2string(InsetWrapParams const &);
 private:
        ///
-       void write(std::ostream & os) const;
+       void setCaptionType(std::string const & type) override;
        ///
-       void read(Lexer & lex);
+       void write(std::ostream & os) const override;
        ///
-       void validate(LaTeXFeatures & features) const;
+       void read(Lexer & lex) override;
        ///
-       InsetCode lyxCode() const { return WRAP_CODE; }
+       void validate(LaTeXFeatures & features) const override;
        ///
-       docstring toolTip(BufferView const & bv, int x, int y) const;
+       InsetCode lyxCode() const override { return WRAP_CODE; }
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       docstring toolTip(BufferView const & bv, int x, int y) const override;
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const override;
        ///
-       int docbook(odocstream &, OutputParams const &) const;
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const override;
        ///
-       docstring xhtml(odocstream &, OutputParams const &) const;
+       void docbook(XMLStream &, OutputParams const &) const override;
        ///
-       docstring editMessage() 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 updateLabels(ParIterator const &);
+       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_;