2003-03-12 19:16:42 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
* \file InsetNewline.h
|
2003-03-12 19:16:42 +00:00
|
|
|
* 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
|
|
|
|
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
#include "Inset.h"
|
2007-11-29 07:04:28 +00:00
|
|
|
#include "support/gettext.h"
|
2003-03-12 19:16:42 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
class InsetNewline : public Inset {
|
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
|
|
|
|
2007-10-13 09:04:52 +00:00
|
|
|
InsetCode lyxCode() const { return NEWLINE_CODE; }
|
2003-03-12 19:16:42 +00:00
|
|
|
|
2007-09-21 20:39:47 +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
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int latex(odocstream &, OutputParams const &) const;
|
2003-03-12 19:16:42 +00:00
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int plaintext(odocstream &, OutputParams const &) const;
|
2003-03-12 19:16:42 +00:00
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int docbook(odocstream &, OutputParams const &) const;
|
2003-03-12 19:16:42 +00:00
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
virtual void read(Lexer & lex);
|
2003-03-12 19:16:42 +00:00
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
virtual void write(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
|
2008-02-23 03:48:57 +00:00
|
|
|
/// a line separator)?
|
2004-02-20 10:32:44 +00:00
|
|
|
bool isSpace() const;
|
2007-11-25 18:34:37 +00:00
|
|
|
|
2008-01-04 15:44:51 +00:00
|
|
|
virtual docstring insetLabel() const { return docstring(); }
|
2007-11-25 18:34:37 +00:00
|
|
|
|
|
|
|
virtual std::string getLyXName() const { return "\\newline"; }
|
|
|
|
|
|
|
|
virtual std::string getCmdName() const { return "\\\\"; }
|
|
|
|
|
|
|
|
virtual ColorCode ColorName() const { return Color_eolmarker; }
|
|
|
|
|
2004-11-23 23:04:52 +00:00
|
|
|
private:
|
2008-02-27 20:43:16 +00:00
|
|
|
Inset * clone() const { return new InsetNewline; }
|
2003-03-12 19:16:42 +00:00
|
|
|
};
|
|
|
|
|
2007-11-25 18:34:37 +00:00
|
|
|
class InsetLinebreak : public InsetNewline {
|
|
|
|
public:
|
|
|
|
InsetLinebreak() {}
|
|
|
|
|
|
|
|
docstring insetLabel() const { return _("line break"); }
|
|
|
|
|
|
|
|
std::string getLyXName() const { return "\\linebreak"; }
|
|
|
|
|
|
|
|
std::string getCmdName() const { return "\\linebreak{}"; }
|
|
|
|
|
|
|
|
ColorCode ColorName() const { return Color_pagebreak; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual Inset * clone() const
|
|
|
|
{
|
|
|
|
return new InsetLinebreak;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
2003-03-12 19:16:42 +00:00
|
|
|
#endif // INSET_NEWLINE_H
|