X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetspace.h;h=eb87db4acb36172949632383a10c49139a8eb9f6;hb=5603df4a5b7e511b31026c9a4f8f55b2b10fde57;hp=c92b173c43ae634549a65051ff6dc98962162479;hpb=ccce6b9662e3a753d8864b1832d766a8f4ceef02;p=lyx.git diff --git a/src/insets/insetspace.h b/src/insets/insetspace.h index c92b173c43..eb87db4acb 100644 --- a/src/insets/insetspace.h +++ b/src/insets/insetspace.h @@ -1,15 +1,15 @@ // -*- C++ -*- /** - * \file InsetSpace.h + * \file insetspace.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \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 + * Full author contact details are available in file CREDITS. */ #ifndef INSET_SPACE_H @@ -17,12 +17,11 @@ #include "inset.h" -#include "LString.h" struct LaTeXFeatures; /// Used to insert different kinds of spaces -class InsetSpace : public Inset { +class InsetSpace : public InsetOld { public: /// The different kinds of spaces we support @@ -46,33 +45,37 @@ public: }; /// - InsetSpace() {} + InsetSpace(); + /// explicit InsetSpace(Kind k); /// Kind kind() const; /// - void dimension(BufferView *, LyXFont const &, Dimension &) const; + void metrics(MetricsInfo &, Dimension &) const; /// - void draw(BufferView *, LyXFont const &, int, float &) const; + void draw(PainterInfo & pi, int x, int y) const; /// - void write(Buffer const *, std::ostream &) const; + void write(Buffer const &, std::ostream &) const; /// Will not be used when lyxf3 - void read(Buffer const *, LyXLex & lex); + void read(Buffer const &, LyXLex & lex); /// - int latex(Buffer const *, std::ostream &, LatexRunParams const &, - bool fragile, bool free_spc) const; + int latex(Buffer const &, std::ostream &, + OutputParams const &) const; /// - int ascii(Buffer const *, std::ostream &, int linelen) const; + int plaintext(Buffer const &, std::ostream &, + OutputParams const &) const; /// - int linuxdoc(Buffer const *, std::ostream &) const; + int linuxdoc(Buffer const &, std::ostream &, + OutputParams const &) const; /// - int docbook(Buffer const *, std::ostream &, bool mixcont) const; + int docbook(Buffer const &, std::ostream &, + OutputParams const &) const; /// - virtual Inset * clone(Buffer const &, bool same_id = false) const; + virtual std::auto_ptr clone() const; /// - Inset::Code lyxCode() const { return Inset::SPACE_CODE; } + InsetOld::Code lyxCode() const { return InsetOld::SPACE_CODE; } /// We don't need \begin_inset and \end_inset bool directWrite() const { return true; } @@ -83,8 +86,6 @@ 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: /// And which kind is this? Kind kind_;