2003-11-28 15:53:34 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insetvspace.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author various
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "insetvspace.h"
|
|
|
|
|
|
|
|
|
|
#include "buffer.h"
|
2003-11-28 17:38:39 +00:00
|
|
|
|
#include "BufferView.h"
|
|
|
|
|
#include "dispatchresult.h"
|
|
|
|
|
#include "funcrequest.h"
|
|
|
|
|
#include "gettext.h"
|
2003-11-28 15:53:34 +00:00
|
|
|
|
#include "LColor.h"
|
|
|
|
|
#include "lyxlex.h"
|
|
|
|
|
#include "lyxtext.h"
|
|
|
|
|
#include "metricsinfo.h"
|
|
|
|
|
|
|
|
|
|
#include "frontends/font_metrics.h"
|
2003-11-28 17:38:39 +00:00
|
|
|
|
#include "frontends/Painter.h"
|
2003-11-28 15:53:34 +00:00
|
|
|
|
|
|
|
|
|
#include "support/std_sstream.h"
|
|
|
|
|
|
|
|
|
|
using std::istringstream;
|
|
|
|
|
using std::ostream;
|
|
|
|
|
using std::ostringstream;
|
|
|
|
|
using std::string;
|
|
|
|
|
using std::max;
|
|
|
|
|
|
|
|
|
|
|
2003-12-01 14:16:27 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
int const ADD_TO_VSPACE_WIDTH = 5;
|
|
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
2003-11-28 15:53:34 +00:00
|
|
|
|
|
|
|
|
|
InsetVSpace::InsetVSpace(VSpace const & space)
|
|
|
|
|
: space_(space)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
2003-11-28 17:38:39 +00:00
|
|
|
|
InsetVSpace::~InsetVSpace()
|
|
|
|
|
{
|
|
|
|
|
InsetVSpaceMailer(*this).hideDialog();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-11-28 15:53:34 +00:00
|
|
|
|
std::auto_ptr<InsetBase> InsetVSpace::clone() const
|
|
|
|
|
{
|
|
|
|
|
return std::auto_ptr<InsetBase>(new InsetVSpace(*this));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-11-28 17:38:39 +00:00
|
|
|
|
DispatchResult
|
|
|
|
|
InsetVSpace::priv_dispatch(FuncRequest const & cmd,
|
|
|
|
|
idx_type & idx, pos_type & pos)
|
|
|
|
|
{
|
|
|
|
|
switch (cmd.action) {
|
|
|
|
|
|
|
|
|
|
case LFUN_INSET_MODIFY: {
|
|
|
|
|
InsetVSpaceMailer::string2params(cmd.argument, space_);
|
|
|
|
|
return DispatchResult(true, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LFUN_MOUSE_PRESS:
|
|
|
|
|
InsetVSpaceMailer(*this).showDialog(cmd.view());
|
|
|
|
|
return DispatchResult(true, true);
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return InsetOld::priv_dispatch(cmd, idx, pos);
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-12-02 12:27:07 +00:00
|
|
|
|
|
2003-11-28 17:38:39 +00:00
|
|
|
|
|
2003-11-28 15:53:34 +00:00
|
|
|
|
void InsetVSpace::read(Buffer const &, LyXLex & lex)
|
|
|
|
|
{
|
2003-12-02 12:27:07 +00:00
|
|
|
|
BOOST_ASSERT(lex.isOK());
|
|
|
|
|
string vsp;
|
|
|
|
|
lex >> vsp;
|
|
|
|
|
if (lex)
|
|
|
|
|
space_ = VSpace(vsp);
|
2003-12-01 21:19:16 +00:00
|
|
|
|
|
2003-12-02 12:27:07 +00:00
|
|
|
|
string end_token;
|
|
|
|
|
lex >> end_token;
|
|
|
|
|
if (end_token != "\\end_inset")
|
2003-12-01 21:19:16 +00:00
|
|
|
|
lex.printError("Missing \\end_inset at this point. "
|
|
|
|
|
"Read: `$$Token'");
|
2003-11-28 15:53:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetVSpace::write(Buffer const &, ostream & os) const
|
|
|
|
|
{
|
|
|
|
|
os << "VSpace " << space_.asLyXCommand();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetVSpace::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
|
|
|
{
|
|
|
|
|
int size = 10;
|
2003-12-01 14:16:27 +00:00
|
|
|
|
int const arrow_size = 4;
|
|
|
|
|
int const space_size = space_.inPixels(*mi.base.bv);
|
|
|
|
|
|
|
|
|
|
LyXFont font;
|
|
|
|
|
font.decSize();
|
|
|
|
|
int const min_size = max(3 * arrow_size, font_metrics::maxHeight(font));
|
|
|
|
|
|
|
|
|
|
if (space_.length().len().value() < 0.0)
|
|
|
|
|
size = min_size;
|
|
|
|
|
else
|
|
|
|
|
size = max(min_size, space_size);
|
2003-11-28 15:53:34 +00:00
|
|
|
|
|
|
|
|
|
dim.asc = size / 2;
|
|
|
|
|
dim.des = size / 2;
|
2003-12-01 14:16:27 +00:00
|
|
|
|
dim.wid = 10 + 2 * ADD_TO_VSPACE_WIDTH;
|
2003-11-28 15:53:34 +00:00
|
|
|
|
|
|
|
|
|
dim_ = dim;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetVSpace::draw(PainterInfo & pi, int x, int y) const
|
|
|
|
|
{
|
|
|
|
|
static std::string const label = _("Vertical Space");
|
|
|
|
|
|
|
|
|
|
xo_ = x;
|
|
|
|
|
yo_ = y;
|
|
|
|
|
|
2003-12-01 14:16:27 +00:00
|
|
|
|
x += ADD_TO_VSPACE_WIDTH;
|
2003-11-28 15:53:34 +00:00
|
|
|
|
|
|
|
|
|
int const arrow_size = 4;
|
|
|
|
|
int const start = y - dim_.asc;
|
|
|
|
|
int const end = y + dim_.des;
|
|
|
|
|
|
|
|
|
|
// the label to display (if any)
|
|
|
|
|
string str;
|
|
|
|
|
// y-values for top arrow
|
|
|
|
|
int ty1, ty2;
|
|
|
|
|
// y-values for bottom arrow
|
|
|
|
|
int by1, by2;
|
|
|
|
|
|
|
|
|
|
str = label + " (" + space_.asLyXCommand() + ")";
|
|
|
|
|
|
|
|
|
|
if (space_.kind() == VSpace::VFILL) {
|
|
|
|
|
ty1 = ty2 = start;
|
|
|
|
|
by1 = by2 = end;
|
|
|
|
|
} else {
|
|
|
|
|
// adding or removing space
|
|
|
|
|
bool const added = space_.kind() != VSpace::LENGTH ||
|
|
|
|
|
space_.length().len().value() > 0.0;
|
|
|
|
|
ty1 = added ? (start + arrow_size) : start;
|
|
|
|
|
ty2 = added ? start : (start + arrow_size);
|
|
|
|
|
by1 = added ? (end - arrow_size) : end;
|
|
|
|
|
by2 = added ? end : (end - arrow_size);
|
|
|
|
|
}
|
|
|
|
|
|
2003-12-01 14:16:27 +00:00
|
|
|
|
int const midx = x + arrow_size;
|
2003-11-28 15:53:34 +00:00
|
|
|
|
int const rightx = midx + arrow_size;
|
|
|
|
|
|
|
|
|
|
// first the string
|
|
|
|
|
int w = 0;
|
|
|
|
|
int a = 0;
|
|
|
|
|
int d = 0;
|
|
|
|
|
|
|
|
|
|
LyXFont font;
|
|
|
|
|
font.setColor(LColor::added_space);
|
|
|
|
|
font.decSize();
|
|
|
|
|
font.decSize();
|
|
|
|
|
font_metrics::rectText(str, font, w, a, d);
|
|
|
|
|
|
|
|
|
|
pi.pain.rectText(x + 2 * arrow_size + 5, y + d,
|
|
|
|
|
str, font, LColor::none, LColor::none);
|
|
|
|
|
|
|
|
|
|
// top arrow
|
|
|
|
|
pi.pain.line(x, ty1, midx, ty2, LColor::added_space);
|
|
|
|
|
pi.pain.line(midx, ty2, rightx, ty1, LColor::added_space);
|
|
|
|
|
|
|
|
|
|
// bottom arrow
|
|
|
|
|
pi.pain.line(x, by1, midx, by2, LColor::added_space);
|
|
|
|
|
pi.pain.line(midx, by2, rightx, by1, LColor::added_space);
|
|
|
|
|
|
|
|
|
|
// joining line
|
|
|
|
|
pi.pain.line(midx, ty2, midx, by2, LColor::added_space);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int InsetVSpace::latex(Buffer const & buf, ostream & os,
|
|
|
|
|
OutputParams const &) const
|
|
|
|
|
{
|
|
|
|
|
os << space_.asLatexCommand(buf.params()) << '\n';
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int InsetVSpace::plaintext(Buffer const &, ostream & os,
|
|
|
|
|
OutputParams const &) const
|
|
|
|
|
{
|
|
|
|
|
os << "\n\n";
|
|
|
|
|
return 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int InsetVSpace::linuxdoc(Buffer const &, std::ostream & os,
|
|
|
|
|
OutputParams const &) const
|
|
|
|
|
{
|
|
|
|
|
os << '\n';
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int InsetVSpace::docbook(Buffer const &, std::ostream & os,
|
|
|
|
|
OutputParams const &) const
|
|
|
|
|
{
|
|
|
|
|
os << '\n';
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string const InsetVSpaceMailer::name_ = "vspace";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InsetVSpaceMailer::InsetVSpaceMailer(InsetVSpace & inset)
|
|
|
|
|
: inset_(inset)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string const InsetVSpaceMailer::inset2string(Buffer const &) const
|
|
|
|
|
{
|
2003-12-02 12:27:07 +00:00
|
|
|
|
return params2string(inset_.space());
|
2003-11-28 15:53:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetVSpaceMailer::string2params(string const & in, VSpace & vspace)
|
|
|
|
|
{
|
|
|
|
|
vspace = VSpace();
|
|
|
|
|
|
|
|
|
|
if (in.empty())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
istringstream data(in);
|
|
|
|
|
LyXLex lex(0,0);
|
|
|
|
|
lex.setStream(data);
|
2003-12-02 10:19:51 +00:00
|
|
|
|
string name, vsp;
|
2003-12-02 12:27:07 +00:00
|
|
|
|
lex >> name >> vsp;
|
2003-12-02 10:19:51 +00:00
|
|
|
|
if (lex)
|
|
|
|
|
vspace = VSpace(vsp);
|
2003-11-28 15:53:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string const InsetVSpaceMailer::params2string(VSpace const & vspace)
|
|
|
|
|
{
|
|
|
|
|
ostringstream data;
|
|
|
|
|
data << name_ << ' ' << vspace.asLyXCommand();
|
|
|
|
|
return data.str();
|
|
|
|
|
}
|