2001-02-26 12:53:35 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
#include "math_deliminset.h"
|
|
|
|
#include "math_parser.h"
|
|
|
|
#include "Painter.h"
|
|
|
|
#include "mathed/support.h"
|
2001-02-14 15:00:50 +00:00
|
|
|
#include "support/LOstream.h"
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-08-09 15:19:31 +00:00
|
|
|
MathDelimInset::MathDelimInset(latexkeys const * l, latexkeys const * r)
|
2001-08-03 17:10:22 +00:00
|
|
|
: MathNestInset(1), left_(l), right_(r)
|
2001-06-25 00:06:33 +00:00
|
|
|
{}
|
2001-02-13 13:28:32 +00:00
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
MathInset * MathDelimInset::clone() const
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2001-02-20 10:49:48 +00:00
|
|
|
return new MathDelimInset(*this);
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-09 15:19:31 +00:00
|
|
|
string MathDelimInset::latexName(latexkeys const * l)
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2001-08-09 15:19:31 +00:00
|
|
|
//static const string vdelim("(){}[]./|");
|
|
|
|
string name = l->name;
|
|
|
|
if (name == "(")
|
|
|
|
return name;
|
|
|
|
if (name == "[")
|
|
|
|
return name;
|
|
|
|
if (name == ".")
|
|
|
|
return name;
|
|
|
|
if (name == ")")
|
|
|
|
return name;
|
|
|
|
if (name == "]")
|
|
|
|
return name;
|
|
|
|
if (name == "/")
|
|
|
|
return name;
|
|
|
|
if (name == "|")
|
|
|
|
return name;
|
|
|
|
return "\\" + name + " ";
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
|
2001-08-09 15:19:31 +00:00
|
|
|
void MathDelimInset::write(std::ostream & os, bool fragile) const
|
|
|
|
{
|
|
|
|
os << "\\left" << latexName(left_);
|
|
|
|
cell(0).write(os, fragile);
|
|
|
|
os << "\\right" << latexName(right_);
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-06 17:20:26 +00:00
|
|
|
void MathDelimInset::draw(Painter & pain, int x, int y) const
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2001-02-15 12:22:01 +00:00
|
|
|
xo(x);
|
|
|
|
yo(y);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
int w = dw();
|
|
|
|
xcell(0).draw(pain, x + w, y);
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-08-09 15:19:31 +00:00
|
|
|
if (latexName(left_) == ".") {
|
2001-06-25 00:06:33 +00:00
|
|
|
pain.line(x + 4, yo() - ascent_, x + 4, yo() + descent_,
|
2001-02-13 13:28:32 +00:00
|
|
|
LColor::mathcursor, Painter::line_onoffdash);
|
|
|
|
} else
|
2001-06-25 00:06:33 +00:00
|
|
|
mathed_draw_deco(pain, x, y - ascent_, w, height(), left_);
|
|
|
|
|
|
|
|
x += width() - w - 2;
|
|
|
|
|
2001-08-09 15:19:31 +00:00
|
|
|
if (latexName(right_) == ".") {
|
2001-06-25 00:06:33 +00:00
|
|
|
pain.line(x + 4, yo() - ascent_, x + 4, yo() + descent_,
|
2001-02-13 13:28:32 +00:00
|
|
|
LColor::mathcursor, Painter::line_onoffdash);
|
|
|
|
} else
|
2001-06-25 00:06:33 +00:00
|
|
|
mathed_draw_deco(pain, x, y - ascent_, w, height(), right_);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int MathDelimInset::dw() const
|
|
|
|
{
|
|
|
|
int w = height()/5;
|
|
|
|
if (w > 15)
|
|
|
|
w = 15;
|
|
|
|
if (w < 6)
|
|
|
|
w = 6;
|
|
|
|
return w;
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-06 17:20:26 +00:00
|
|
|
void MathDelimInset::metrics(MathStyles st) const
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2001-07-26 06:56:43 +00:00
|
|
|
xcell(0).metrics(st);
|
2001-06-25 00:06:33 +00:00
|
|
|
size_ = st;
|
|
|
|
ascent_ = xcell(0).ascent() + 2;
|
|
|
|
descent_ = xcell(0).descent() + 2;
|
|
|
|
width_ = xcell(0).width() + 2 * dw() + 4;
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|