]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetWrap.h
Pass XHTMLStream by reference. Problem found by coverity.
[lyx.git] / src / insets / InsetWrap.h
index 4bdafb65555f6b95d3eae9c6f660408fcabf2988..ce6b73eb03539cfdd0338712f5edb6afc34b64b5 100644 (file)
@@ -14,7 +14,6 @@
 
 #include "InsetCollapsable.h"
 #include "Length.h"
-#include "MailInset.h"
 
 
 namespace lyx {
@@ -45,11 +44,15 @@ public:
 class InsetWrap : public InsetCollapsable {
 public:
        ///
-       InsetWrap(Buffer const &, std::string const &);
+       InsetWrap(Buffer *, std::string const &);
        ///
        ~InsetWrap();
        ///
        InsetWrapParams const & params() const { return params_; }
+       ///
+       static void string2params(std::string const &, InsetWrapParams &);
+       ///
+       static std::string params2string(InsetWrapParams const &);
 private:
        ///
        void write(std::ostream & os) const;
@@ -60,57 +63,35 @@ private:
        ///
        InsetCode lyxCode() const { return WRAP_CODE; }
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       docstring toolTip(BufferView const & bv, int x, int y) const;
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const;
+       ///
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
-       docstring editMessage() const;
+       docstring xhtml(XHTMLStream &, 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 updateLabels(ParIterator const &);
+       /// Update the counters of this inset and of its contents
+       void updateBuffer(ParIterator const &, UpdateType);
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
-       docstring name() const { return name_; }
+       docstring layoutName() const;
        ///
        Inset * clone() const { return new InsetWrap(*this); }
 
        ///
        InsetWrapParams params_;
-       ///
-       docstring name_;
-};
-
-
-class InsetWrapMailer : public MailInset {
-public:
-       ///
-       InsetWrapMailer(InsetWrap & inset);
-       ///
-       virtual Inset & inset() const { return inset_; }
-       ///
-       virtual std::string const & name() const { return name_; }
-       ///
-       virtual std::string const inset2string(Buffer const &) const;
-       ///
-       static void string2params(std::string const &, InsetWrapParams &);
-       ///
-       static std::string const params2string(InsetWrapParams const &);
-private:
-       ///
-       static std::string const name_;
-       ///
-       InsetWrap & inset_;
 };
 
-
 } // namespace lyx
 
 #endif