lyx_mirror/src/mathed/math_decorationinset.C
André Pönitz 63d5a3c4d4 Fix for mis-drawing reported by Dekel
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2188 a592a061-630c-0410-9148-cb99ea01b6c8
2001-07-05 14:48:45 +00:00

78 lines
1.5 KiB
C

#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "math_decorationinset.h"
#include "mathed/support.h"
#include "math_parser.h"
#include "support/LOstream.h"
#include "support/lstrings.h"
using std::ostream;
MathDecorationInset::MathDecorationInset(int d)
: MathInset("", LM_OT_DECO, 1), deco_(d)
{
upper_ = deco_ != LM_underline && deco_ != LM_underbrace;
}
MathInset * MathDecorationInset::clone() const
{
return new MathDecorationInset(*this);
}
void MathDecorationInset::Metrics(MathStyles st)
{
int const h = 2 * mathed_char_height(LM_TC_VAR, size(), 'I',
ascent_, descent_);
xcell(0).Metrics(st);
width_ = xcell(0).width();
ascent_ = xcell(0).ascent();
descent_ = xcell(0).descent();
int w = width() + 4;
dh_ = w / 5;
if (dh_ > h)
dh_ = h;
if (upper_) {
ascent_ += dh_ + 2;
dy_ = -ascent_;
} else {
dy_ = descent_ + 2;
descent_ += dh_ + 4;
}
width_ = w;
}
void MathDecorationInset::draw(Painter & pain, int x, int y)
{
xo(x);
yo(x);
xcell(0).draw(pain, x, y);
mathed_draw_deco(pain, x, y + dy_, width_, dh_, deco_);
}
void MathDecorationInset::Write(ostream & os, bool fragile) const
{
latexkeys const * l = lm_get_key_by_id(deco_, LM_TK_WIDE);
if (fragile &&
(compare(l->name, "overbrace") == 0 ||
compare(l->name, "underbrace") == 0 ||
compare(l->name, "overleftarrow") == 0 ||
compare(l->name, "overrightarrow") == 0))
os << "\\protect";
os << '\\' << l->name << '{';
cell(0).Write(os, fragile);
os << '}';
}