X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetLine.h;h=43b7e36cdef413b3d3048f748c398f08df6e83b8;hb=67e70c6c022fa445cd654937faeb87955e3bca7a;hp=ec57739c6c23581f2ca4d9b15d26d77f7ca0eeaa;hpb=c8d00ed1272cd489041bed2115081008b6a26489;p=lyx.git diff --git a/src/insets/InsetLine.h b/src/insets/InsetLine.h index ec57739c6c..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. */ @@ -18,40 +18,36 @@ namespace lyx { -class InsetLine : public InsetOld { +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 &, LyXLex & 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); } };