]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLine.h
Well, it turns out that we need a different return value for the xhtml
[lyx.git] / src / insets / InsetLine.h
index ec57739c6c23581f2ca4d9b15d26d77f7ca0eeaa..43b7e36cdef413b3d3048f748c398f08df6e83b8 100644 (file)
@@ -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.
  */
 
 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<InsetBase> doClone() const
-       {
-               return std::auto_ptr<InsetBase>(new InsetLine);
-       }
+       Inset * clone() const { return new InsetLine(*this); }
 };