X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetLine.h;h=43b7e36cdef413b3d3048f748c398f08df6e83b8;hb=67e70c6c022fa445cd654937faeb87955e3bca7a;hp=0541411ce223a4e15683cd1b9c035ed03d7a2864;hpb=51fbea02a8f7dc1e360a61bdc95d5ac9200cb5f6;p=lyx.git diff --git a/src/insets/InsetLine.h b/src/insets/InsetLine.h index 0541411ce2..43b7e36cde 100644 --- a/src/insets/InsetLine.h +++ b/src/insets/InsetLine.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. */ @@ -13,45 +13,41 @@ #define INSET_LINE_H -#include "InsetBase.h" +#include "Inset.h" namespace lyx { -class InsetLine : public InsetBase { +class InsetLine : public Inset { public: - + /// InsetLine() {} - - InsetBase::Code lyxCode() const { return InsetBase::LINE_CODE; } - - bool metrics(MetricsInfo &, Dimension &) const; - + /// + InsetCode lyxCode() const { return LINE_CODE; } + /// + void metrics(MetricsInfo &, Dimension &) const; + /// void draw(PainterInfo & pi, int x, int y) const; - - int latex(Buffer const &, odocstream &, - OutputParams const &) const; - - int plaintext(Buffer const &, odocstream &, - OutputParams const &) const; - - int docbook(Buffer const &, odocstream &, - OutputParams const &) const; - - void read(Buffer const &, Lexer & lex); - - void write(Buffer const & buf, std::ostream & os) 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; + /// + void read(Lexer & lex); + /// + void write(std::ostream & os) const; /// We don't need \begin_inset and \end_inset bool directWrite() const { return true; } - - bool display() const { return true; } + /// + DisplayType display() const { return AlignCenter; } /// void validate(LaTeXFeatures & features) const; private: - virtual std::auto_ptr doClone() const - { - return std::auto_ptr(new InsetLine); - } + Inset * clone() const { return new InsetLine(*this); } };