X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetLine.h;h=43b7e36cdef413b3d3048f748c398f08df6e83b8;hb=67e70c6c022fa445cd654937faeb87955e3bca7a;hp=aa76cfd24e6c53b803435a01475d03ec656a6324;hpb=73849af5df4d92146bf7c57b489f30d698884401;p=lyx.git diff --git a/src/insets/InsetLine.h b/src/insets/InsetLine.h index aa76cfd24e..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. */ @@ -20,38 +20,34 @@ namespace lyx { class InsetLine : public Inset { public: - + /// InsetLine() {} - - Inset::Code lyxCode() const { return Inset::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; } - + /// 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); } };