2003-03-12 19:16:42 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file insetnewline.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author John Levon
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-03-12 19:16:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INSET_NEWLINE_H
|
|
|
|
#define INSET_NEWLINE_H
|
|
|
|
|
|
|
|
|
|
|
|
#include "inset.h"
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
class InsetNewline : public InsetOld {
|
2003-03-12 19:16:42 +00:00
|
|
|
public:
|
|
|
|
|
2003-05-19 17:03:12 +00:00
|
|
|
InsetNewline() {}
|
2003-03-12 19:16:42 +00:00
|
|
|
|
2004-11-25 19:13:07 +00:00
|
|
|
InsetBase::Code lyxCode() const { return InsetBase::NEWLINE_CODE; }
|
2003-03-12 19:16:42 +00:00
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
2003-03-12 19:16:42 +00:00
|
|
|
|
2003-05-30 06:48:24 +00:00
|
|
|
virtual void draw(PainterInfo & pi, int x, int y) const;
|
2003-03-12 19:16:42 +00:00
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
virtual int latex(Buffer const &, std::ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams const &) const;
|
2003-03-12 19:16:42 +00:00
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
virtual int plaintext(Buffer const &, std::ostream &,
|
|
|
|
OutputParams const &) const;
|
2003-03-12 19:16:42 +00:00
|
|
|
|
2003-10-31 18:45:43 +00:00
|
|
|
virtual int docbook(Buffer const &, std::ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams const &) const;
|
2003-03-12 19:16:42 +00:00
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
virtual void read(Buffer const &, LyXLex & lex);
|
2003-03-12 19:16:42 +00:00
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
virtual void write(Buffer const & buf, std::ostream & os) const;
|
2003-03-12 19:16:42 +00:00
|
|
|
/// We don't need \begin_inset and \end_inset
|
|
|
|
virtual bool directWrite() const { return true; }
|
2004-02-20 10:32:44 +00:00
|
|
|
/// is this equivalent to a space (which is BTW different from
|
|
|
|
// a line separator)?
|
|
|
|
bool isSpace() const;
|
2004-11-23 23:04:52 +00:00
|
|
|
private:
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const
|
|
|
|
{
|
|
|
|
return std::auto_ptr<InsetBase>(new InsetNewline);
|
|
|
|
}
|
2003-03-12 19:16:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INSET_NEWLINE_H
|