mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
cd424d7853
Create new files for each output format. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8046 a592a061-630c-0410-9148-cb99ea01b6c8
98 lines
1.6 KiB
C
98 lines
1.6 KiB
C
/**
|
|
* \file insetline.C
|
|
* 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 "debug.h"
|
|
#include "LColor.h"
|
|
#include "lyxtext.h"
|
|
#include "metricsinfo.h"
|
|
#include "LaTeXFeatures.h"
|
|
|
|
#include "frontends/Painter.h"
|
|
|
|
using std::endl;
|
|
using std::ostream;
|
|
|
|
|
|
void InsetLine::read(Buffer const &, LyXLex &)
|
|
{
|
|
/* Nothing to read */
|
|
}
|
|
|
|
|
|
void InsetLine::write(Buffer const &, 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;
|
|
dim_ = dim;
|
|
}
|
|
|
|
|
|
void InsetLine::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
pi.pain.line(x, y, x + dim_.wid, y, LColor::topline, Painter::line_solid,
|
|
Painter::line_thick);
|
|
}
|
|
|
|
|
|
int InsetLine::latex(Buffer const &, ostream & os,
|
|
OutputParams const &) const
|
|
{
|
|
os << "\\lyxline{}";
|
|
|
|
/* was:
|
|
os << "\\lyxline{\\"
|
|
<< pit->getFont(bparams, 0, outerFont(pit, paragraphs)).latexSize()
|
|
<< "}\\vspace{-1\\parskip}";
|
|
*/
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetLine::plaintext(Buffer const &, ostream & os,
|
|
OutputParams const &) const
|
|
{
|
|
os << "-------------------------------------------";
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetLine::linuxdoc(Buffer const &, std::ostream & os,
|
|
OutputParams const &) const
|
|
{
|
|
os << '\n';
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetLine::docbook(Buffer const &, std::ostream & os,
|
|
OutputParams const &) const
|
|
{
|
|
os << '\n';
|
|
return 0;
|
|
}
|
|
|
|
|
|
void InsetLine::validate(LaTeXFeatures & features) const
|
|
{
|
|
features.require("lyxline");
|
|
}
|