]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetWrap.h
XHTML for InsetWrap.
[features.git] / src / insets / InsetWrap.h
index 6078e53ec6a5191ba63d3815ae0e53b59c59bb80..aa21ebf4cf4592030e0e8fd23d975ad296e58ff7 100644 (file)
@@ -63,12 +63,16 @@ private:
        ///
        InsetCode lyxCode() const { return WRAP_CODE; }
        ///
+       docstring toolTip(BufferView const & bv, int x, int y) const;
+       ///
        int latex(odocstream &, OutputParams const &) const;
        ///
        int plaintext(odocstream &, OutputParams const &) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
+       docstring xhtml(odocstream &, OutputParams const &) const;
+       ///
        docstring editMessage() const;
        ///
        bool insetAllowed(InsetCode) const;
@@ -76,19 +80,19 @@ private:
        bool showInsetDialog(BufferView *) const;
        ///
        bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
-       // Update the counters of this inset and of its contents
+       /// Update the counters of this inset and of its contents
        void updateLabels(ParIterator const &);
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
-       docstring name() const { return name_; }
+       docstring getCaptionText(OutputParams const &) const;
+       ///
+       docstring name() const;
        ///
        Inset * clone() const { return new InsetWrap(*this); }
 
        ///
        InsetWrapParams params_;
-       ///
-       docstring name_;
 };
 
 } // namespace lyx