mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
ed858d73e5
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19920 a592a061-630c-0410-9148-cb99ea01b6c8
79 lines
1.2 KiB
C++
79 lines
1.2 KiB
C++
/**
|
|
* \file InsetHFill.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 "InsetHFill.h"
|
|
#include "gettext.h"
|
|
|
|
#include "support/std_ostream.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
InsetHFill::InsetHFill()
|
|
: InsetCommand(InsetCommandParams("hfill"), std::string())
|
|
{}
|
|
|
|
|
|
Inset * InsetHFill::clone() const
|
|
{
|
|
return new InsetHFill;
|
|
}
|
|
|
|
|
|
bool InsetHFill::metrics(MetricsInfo &, Dimension & dim) const
|
|
{
|
|
dim.wid = 3;
|
|
dim.asc = 3;
|
|
dim.des = 3;
|
|
bool const changed = dim_ != dim;
|
|
dim_ = dim;
|
|
return changed;
|
|
}
|
|
|
|
|
|
docstring const InsetHFill::getScreenLabel(Buffer const &) const
|
|
{
|
|
return _("Horizontal Fill");
|
|
}
|
|
|
|
|
|
int InsetHFill::plaintext(Buffer const &, odocstream & os,
|
|
OutputParams const &) const
|
|
{
|
|
os << " ";
|
|
return 5;
|
|
}
|
|
|
|
|
|
int InsetHFill::docbook(Buffer const &, odocstream & os,
|
|
OutputParams const &) const
|
|
{
|
|
os << '\n';
|
|
return 0;
|
|
}
|
|
|
|
|
|
void InsetHFill::write(Buffer const &, std::ostream & os) const
|
|
{
|
|
os << "\n\\hfill\n";
|
|
}
|
|
|
|
|
|
bool InsetHFill::isSpace() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
} // namespace lyx
|