mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
f1cba8ff64
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27425 a592a061-630c-0410-9148-cb99ea01b6c8
95 lines
1.6 KiB
C++
95 lines
1.6 KiB
C++
/**
|
|
* \file InsetLine.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "InsetLine.h"
|
|
|
|
#include "Dimension.h"
|
|
#include "Font.h"
|
|
#include "LaTeXFeatures.h"
|
|
#include "MetricsInfo.h"
|
|
#include "OutputParams.h"
|
|
#include "Text.h"
|
|
|
|
#include "frontends/Painter.h"
|
|
|
|
#include "support/debug.h"
|
|
#include "support/docstream.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
namespace lyx {
|
|
|
|
using frontend::Painter;
|
|
|
|
|
|
void InsetLine::read(Lexer &)
|
|
{
|
|
/* Nothing to read */
|
|
}
|
|
|
|
|
|
void InsetLine::write(ostream & os) const
|
|
{
|
|
os << "\n\\lyxline\n";
|
|
}
|
|
|
|
|
|
void InsetLine::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
dim.asc = 3;
|
|
dim.des = 3;
|
|
dim.wid = mi.base.textwidth;
|
|
// Cache the inset dimension.
|
|
setDimCache(mi, dim);
|
|
}
|
|
|
|
|
|
void InsetLine::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
Dimension const dim = dimension(*pi.base.bv);
|
|
pi.pain.line(x, y, x + dim.wid, y, Color_topline,
|
|
Painter::line_solid, Painter::line_thick);
|
|
}
|
|
|
|
|
|
int InsetLine::latex(odocstream & os, OutputParams const & runparams) const
|
|
{
|
|
os << "\\lyxline{\\"
|
|
<< from_ascii(runparams.local_font->latexSize()) << '}';
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetLine::plaintext(odocstream & os, OutputParams const &) const
|
|
{
|
|
os << "\n-------------------------------------------\n";
|
|
return PLAINTEXT_NEWLINE;
|
|
}
|
|
|
|
|
|
int InsetLine::docbook(odocstream & os, OutputParams const &) const
|
|
{
|
|
os << '\n';
|
|
return 0;
|
|
}
|
|
|
|
|
|
void InsetLine::validate(LaTeXFeatures & features) const
|
|
{
|
|
features.require("lyxline");
|
|
}
|
|
|
|
|
|
} // namespace lyx
|