X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetspace.h;h=414e6e4171411043755982c71732157aef84cebc;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=e8c0fc829e1ce66ea7e6c398a02faa3e02382700;hpb=b881ed2d5a4d26b062556d6d417c8f4624741878;p=lyx.git diff --git a/src/insets/insetspace.h b/src/insets/insetspace.h index e8c0fc829e..414e6e4171 100644 --- a/src/insets/insetspace.h +++ b/src/insets/insetspace.h @@ -7,7 +7,7 @@ * \author Asger Alstrup Nielsen * \author Jean-Marc Lasgouttes * \author Lars Gullik Bjønnes - * \author Juergen Spitzmueller + * \author Jürgen Spitzmüller * * Full author contact details are available in file CREDITS. */ @@ -17,9 +17,11 @@ #include "inset.h" -#include "LString.h" -struct LaTeXFeatures; + +namespace lyx { + +class LaTeXFeatures; /// Used to insert different kinds of spaces class InsetSpace : public InsetOld { @@ -54,7 +56,7 @@ public: /// Kind kind() const; /// - void metrics(MetricsInfo &, Dimension &) const; + bool metrics(MetricsInfo &, Dimension &) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -62,18 +64,19 @@ public: /// Will not be used when lyxf3 void read(Buffer const &, LyXLex & lex); /// - int latex(Buffer const &, std::ostream &, - LatexRunParams const &) const; - /// - int ascii(Buffer const &, std::ostream &, int linelen) const; - /// - int linuxdoc(Buffer const &, std::ostream &) const; + int latex(Buffer const &, odocstream &, + OutputParams const &) const; /// - int docbook(Buffer const &, std::ostream &, bool mixcont) const; + int plaintext(Buffer const &, odocstream &, + OutputParams const &) const; /// - virtual std::auto_ptr clone() const; + int docbook(Buffer const &, odocstream &, + OutputParams const &) const; + /// the string that is passed to the TOC + virtual int textString(Buffer const &, odocstream &, + OutputParams const &) const; /// - InsetOld::Code lyxCode() const { return InsetOld::SPACE_CODE; } + InsetBase::Code lyxCode() const { return InsetBase::SPACE_CODE; } /// We don't need \begin_inset and \end_inset bool directWrite() const { return true; } @@ -84,11 +87,14 @@ public: /// is this equivalent to a space (which is BTW different from // a line separator)? bool isSpace() const; - // should we break lines after this inset? - bool isLineSeparator() const; private: + virtual std::auto_ptr doClone() const; + /// And which kind is this? Kind kind_; }; + +} // namespace lyx + #endif // INSET_SPACE_H