mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
054a35c9a1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18790 a592a061-630c-0410-9148-cb99ea01b6c8
127 lines
2.3 KiB
C++
127 lines
2.3 KiB
C++
/**
|
|
* \file InsetNewline.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "InsetNewline.h"
|
|
|
|
#include "debug.h"
|
|
#include "MetricsInfo.h"
|
|
#include "OutputParams.h"
|
|
|
|
#include "frontends/FontMetrics.h"
|
|
#include "frontends/Painter.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
using std::endl;
|
|
using std::ostream;
|
|
|
|
|
|
void InsetNewline::read(Buffer const &, Lexer &)
|
|
{
|
|
/* Nothing to read */
|
|
}
|
|
|
|
|
|
void InsetNewline::write(Buffer const &, ostream & os) const
|
|
{
|
|
os << "\n\\newline\n";
|
|
}
|
|
|
|
|
|
bool InsetNewline::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
frontend::FontMetrics const & fm = theFontMetrics(mi.base.font);
|
|
dim.asc = fm.maxAscent();
|
|
dim.des = fm.maxDescent();
|
|
dim.wid = fm.width('n');
|
|
bool const changed = dim_ != dim;
|
|
dim_ = dim;
|
|
return changed;
|
|
}
|
|
|
|
|
|
int InsetNewline::latex(Buffer const &, odocstream &,
|
|
OutputParams const &) const
|
|
{
|
|
lyxerr << "Eek, calling InsetNewline::latex !" << endl;
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetNewline::plaintext(Buffer const &, odocstream & os,
|
|
OutputParams const &) const
|
|
{
|
|
os << '\n';
|
|
return PLAINTEXT_NEWLINE;
|
|
}
|
|
|
|
|
|
int InsetNewline::docbook(Buffer const &, odocstream & os,
|
|
OutputParams const &) const
|
|
{
|
|
os << '\n';
|
|
return 0;
|
|
}
|
|
|
|
|
|
void InsetNewline::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
frontend::FontMetrics const & fm = theFontMetrics(pi.base.font);
|
|
int const wid = fm.width('n');
|
|
int const asc = fm.maxAscent();
|
|
|
|
int xp[3];
|
|
int yp[3];
|
|
|
|
yp[0] = int(y - 0.875 * asc * 0.75);
|
|
yp[1] = int(y - 0.500 * asc * 0.75);
|
|
yp[2] = int(y - 0.125 * asc * 0.75);
|
|
|
|
if (pi.ltr_pos) {
|
|
xp[0] = int(x + wid * 0.375);
|
|
xp[1] = int(x);
|
|
xp[2] = int(x + wid * 0.375);
|
|
} else {
|
|
xp[0] = int(x + wid * 0.625);
|
|
xp[1] = int(x + wid);
|
|
xp[2] = int(x + wid * 0.625);
|
|
}
|
|
|
|
pi.pain.lines(xp, yp, 3, Color::eolmarker);
|
|
|
|
yp[0] = int(y - 0.500 * asc * 0.75);
|
|
yp[1] = int(y - 0.500 * asc * 0.75);
|
|
yp[2] = int(y - asc * 0.75);
|
|
|
|
if (pi.ltr_pos) {
|
|
xp[0] = int(x);
|
|
xp[1] = int(x + wid);
|
|
xp[2] = int(x + wid);
|
|
} else {
|
|
xp[0] = int(x + wid);
|
|
xp[1] = int(x);
|
|
xp[2] = int(x);
|
|
}
|
|
|
|
pi.pain.lines(xp, yp, 3, Color::eolmarker);
|
|
}
|
|
|
|
|
|
bool InsetNewline::isSpace() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
} // namespace lyx
|