mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
c5c7a9e568
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7670 a592a061-630c-0410-9148-cb99ea01b6c8
55 lines
875 B
C
55 lines
875 B
C
/**
|
|
* \file insethfill.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 "insethfill.h"
|
|
|
|
using std::ostream;
|
|
|
|
|
|
InsetHFill::InsetHFill()
|
|
: InsetCommand(InsetCommandParams("hfill"))
|
|
{}
|
|
|
|
|
|
int InsetHFill::latex(Buffer const &, ostream & os,
|
|
LatexRunParams const &) const
|
|
{
|
|
os << getCommand();
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetHFill::ascii(Buffer const &, ostream & os, int) const
|
|
{
|
|
os << '\t';
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetHFill::linuxdoc(Buffer const &, std::ostream & os) const
|
|
{
|
|
os << '\n';
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetHFill::docbook(Buffer const &, std::ostream & os, bool) const
|
|
{
|
|
os << '\n';
|
|
return 0;
|
|
}
|
|
|
|
void InsetHFill::write(Buffer const &, ostream & os) const
|
|
{
|
|
os << "\n\\hfill \n";
|
|
}
|