mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
51e0c8bd1f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2413 a592a061-630c-0410-9148-cb99ea01b6c8
104 lines
1.8 KiB
C
104 lines
1.8 KiB
C
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "xarray.h"
|
|
#include "math_inset.h"
|
|
#include "mathed/support.h"
|
|
#include "math_defs.h"
|
|
#include "Painter.h"
|
|
|
|
using std::max;
|
|
using std::min;
|
|
|
|
|
|
MathXArray::MathXArray()
|
|
: width_(0), ascent_(0), descent_(0), xo_(0), yo_(0), style_(LM_ST_TEXT)
|
|
{}
|
|
|
|
|
|
void MathXArray::metrics(MathStyles st)
|
|
{
|
|
if (data_.empty()) {
|
|
mathed_char_dim(LM_TC_VAR, st, 'I', ascent_, descent_, width_);
|
|
return;
|
|
}
|
|
|
|
ascent_ = 0;
|
|
descent_ = 0;
|
|
width_ = 0;
|
|
style_ = st;
|
|
|
|
for (int pos = 0; pos < data_.size(); ++pos) {
|
|
MathInset * p = data_.nextInset(pos);
|
|
p->metrics(st);
|
|
int asc = p->ascent();
|
|
int des = p->descent();
|
|
int wid = p->width();
|
|
ascent_ = max(ascent_, asc);
|
|
descent_ = max(descent_, des);
|
|
width_ += wid;
|
|
}
|
|
}
|
|
|
|
|
|
void MathXArray::draw(Painter & pain, int x, int y)
|
|
{
|
|
xo_ = x;
|
|
yo_ = y;
|
|
|
|
if (data_.empty()) {
|
|
pain.rectangle(x, y - ascent_, width_, height(), LColor::mathline);
|
|
return;
|
|
}
|
|
|
|
for (int pos = 0; pos < data_.size(); ++pos) {
|
|
MathInset * p = data_.nextInset(pos);
|
|
p->draw(pain, x, y);
|
|
x += p->width();
|
|
}
|
|
}
|
|
|
|
|
|
int MathXArray::pos2x(int targetpos) const
|
|
{
|
|
int x = 0;
|
|
targetpos = min(targetpos, data_.size());
|
|
for (int pos = 0; pos < targetpos; ++pos)
|
|
x += width(pos);
|
|
return x;
|
|
}
|
|
|
|
|
|
int MathXArray::x2pos(int targetx) const
|
|
{
|
|
int pos = 0;
|
|
int lastx = 0;
|
|
int currx = 0;
|
|
for ( ; currx < targetx && pos < data_.size(); ++pos) {
|
|
lastx = currx;
|
|
currx += width(pos);
|
|
}
|
|
if (abs(lastx - targetx) < abs(currx - targetx))
|
|
data_.prev(pos);
|
|
return pos;
|
|
}
|
|
|
|
|
|
int MathXArray::width(int pos) const
|
|
{
|
|
if (pos >= data_.size())
|
|
return 0;
|
|
return data_.nextInset(pos)->width();
|
|
}
|
|
|
|
|
|
std::ostream & operator<<(std::ostream & os, MathXArray const & ar)
|
|
{
|
|
os << ar.data_;
|
|
return os;
|
|
}
|
|
|