lyx_mirror/src/insets/insethfill.C
André Pönitz 6c300f72a2 move everything into namespace lyx
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15422 a592a061-630c-0410-9148-cb99ea01b6c8
2006-10-21 00:16:43 +00:00

87 lines
1.3 KiB
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"
#include "gettext.h"
#include "support/std_ostream.h"
namespace lyx {
using std::ostream;
InsetHFill::InsetHFill()
: InsetCommand(InsetCommandParams("hfill"), std::string())
{}
std::auto_ptr<InsetBase> InsetHFill::doClone() const
{
return std::auto_ptr<InsetBase>(new InsetHFill);
}
void InsetHFill::metrics(MetricsInfo &, Dimension & dim) const
{
dim.wid = 3;
dim.asc = 3;
dim.des = 3;
dim_ = dim;
}
docstring const InsetHFill::getScreenLabel(Buffer const &) const
{
return _("Horizontal Fill");
}
int InsetHFill::latex(Buffer const &, odocstream & os,
OutputParams const &) const
{
os << getCommand() << "{}";
return 0;
}
int InsetHFill::plaintext(Buffer const &, odocstream & os,
OutputParams const &) const
{
os << '\t';
return 0;
}
int InsetHFill::docbook(Buffer const &, odocstream & os,
OutputParams const &) const
{
os << '\n';
return 0;
}
void InsetHFill::write(Buffer const &, ostream & os) const
{
os << "\n\\hfill\n";
}
bool InsetHFill::isSpace() const
{
return true;
}
} // namespace lyx