X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetVSpace.h;h=03e8d59b5e51dd887af73486fa93489c71e00277;hb=3d4076b598deb18660e50ec9c327efc3b15f15d0;hp=faf8095639bb3206b238b5162e0e03fceca1ea1e;hpb=db8c16d554ebb1dcb319e44d318572de6eff024b;p=lyx.git diff --git a/src/insets/InsetVSpace.h b/src/insets/InsetVSpace.h index faf8095639..03e8d59b5e 100644 --- a/src/insets/InsetVSpace.h +++ b/src/insets/InsetVSpace.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -12,47 +12,61 @@ #ifndef INSET_VSPACE_H #define INSET_VSPACE_H - #include "Inset.h" #include "VSpace.h" -#include "MailInset.h" namespace lyx { -class InsetVSpace : public Inset { +class InsetVSpace : public Inset +{ public: /// - InsetVSpace() {} + InsetVSpace() : Inset(0) {} /// InsetVSpace(VSpace const &); + /// How much? + VSpace const & space() const { return space_; } + /// + InsetCode lyxCode() const { return VSPACE_CODE; } /// - ~InsetVSpace(); + bool hasSettings() const { return true; } + /// + std::string contextMenuName() const; + /// + static void string2params(std::string const &, VSpace &); + /// + static std::string params2string(VSpace const &); +private: /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// 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); /// void write(std::ostream & os) const; /// DisplayType display() const { return AlignCenter; } - /// How much? - VSpace const & space() const { return space_; } - -protected: /// void doDispatch(Cursor & cur, FuncRequest & cmd); - -private: - virtual Inset * clone() const; + /// + bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const; + /// + Inset * clone() const { return new InsetVSpace(*this); } /// docstring const label() const; @@ -61,28 +75,6 @@ private: }; -class InsetVSpaceMailer : public MailInset { -public: - /// - InsetVSpaceMailer(InsetVSpace & 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 &, VSpace &); - /// - static std::string const params2string(VSpace const &); -private: - /// - static std::string const name_; - /// - InsetVSpace & inset_; -}; - - } // namespace lyx #endif