X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetVSpace.h;h=e94ebcd91fb59d6c0d38ef69e6a90df1b03efdac;hb=1f0305509b99681885958c03f8d8f04c1564c84c;hp=873e3c36236c8d3601b2d20e3a4fffa4b71912df;hpb=80228965b1d6be9dbc8afb10578f71fec671af37;p=lyx.git diff --git a/src/insets/InsetVSpace.h b/src/insets/InsetVSpace.h index 873e3c3623..e94ebcd91f 100644 --- a/src/insets/InsetVSpace.h +++ b/src/insets/InsetVSpace.h @@ -22,19 +22,19 @@ class InsetVSpace : public Inset { public: /// - InsetVSpace() {} + InsetVSpace() : Inset(0) {} /// InsetVSpace(VSpace const &); - /// - ~InsetVSpace(); /// How much? VSpace const & space() const { return space_; } /// InsetCode lyxCode() const { return VSPACE_CODE; } /// - EDITABLE editable() const { return IS_EDITABLE; } + bool hasSettings() const { return true; } + /// + bool clickable(int, int) const { return true; } /// - docstring contextMenu(BufferView const & bv, int x, int y) const; + std::string contextMenuName() const; /// static void string2params(std::string const &, VSpace &); /// @@ -45,11 +45,18 @@ private: /// void draw(PainterInfo & pi, int x, int y) const; /// - int latex(odocstream &, OutputParams const &) const; + 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; + /// Note that this returns the inset rather than writing it, + /// so it will actually be written after the present paragraph. + /// The normal case is that this inset will be on a line by + /// itself, and in that case the present paragraph will not, + /// in fact, appear at all. + docstring xhtml(XHTMLStream &, OutputParams const &) const; /// void read(Lexer & lex); /// @@ -64,8 +71,6 @@ private: Inset * clone() const { return new InsetVSpace(*this); } /// docstring const label() const; - /// - bool showInsetDialog(BufferView * bv) const; /// VSpace space_;