2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_boxinset.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2001-12-05 08:04:20 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2001-10-19 11:25:48 +00:00
|
|
|
|
#include "math_boxinset.h"
|
2003-09-07 21:25:37 +00:00
|
|
|
|
#include "math_data.h"
|
2001-11-08 12:06:56 +00:00
|
|
|
|
#include "math_mathmlstream.h"
|
2001-12-05 08:04:20 +00:00
|
|
|
|
#include "math_streamstr.h"
|
2003-09-05 17:23:11 +00:00
|
|
|
|
#include "support/std_ostream.h"
|
2001-10-19 11:25:48 +00:00
|
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
|
using std::string;
|
2003-07-25 17:11:25 +00:00
|
|
|
|
using std::auto_ptr;
|
|
|
|
|
|
2002-01-03 12:02:54 +00:00
|
|
|
|
|
2001-10-19 11:25:48 +00:00
|
|
|
|
MathBoxInset::MathBoxInset(string const & name)
|
2002-07-11 10:20:31 +00:00
|
|
|
|
: MathNestInset(1), name_(name)
|
2001-10-19 16:07:10 +00:00
|
|
|
|
{}
|
2001-10-19 11:25:48 +00:00
|
|
|
|
|
|
|
|
|
|
2004-11-23 23:04:52 +00:00
|
|
|
|
auto_ptr<InsetBase> MathBoxInset::doClone() const
|
2001-10-19 11:25:48 +00:00
|
|
|
|
{
|
2003-07-25 17:11:25 +00:00
|
|
|
|
return auto_ptr<InsetBase>(new MathBoxInset(*this));
|
2001-10-19 11:25:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-11-09 08:35:57 +00:00
|
|
|
|
void MathBoxInset::write(WriteStream & os) const
|
2001-10-19 11:25:48 +00:00
|
|
|
|
{
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << '\\' << name_ << '{' << cell(0) << '}';
|
2001-10-19 11:25:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-11-09 08:35:57 +00:00
|
|
|
|
void MathBoxInset::normalize(NormalStream & os) const
|
2001-10-19 11:25:48 +00:00
|
|
|
|
{
|
2001-12-18 12:21:33 +00:00
|
|
|
|
os << '[' << name_ << ' ';
|
2001-10-19 11:25:48 +00:00
|
|
|
|
//text_->write(buffer(), os);
|
|
|
|
|
os << "] ";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void MathBoxInset::metrics(MetricsInfo & mi, Dimension & dim) const
|
2001-10-19 11:25:48 +00:00
|
|
|
|
{
|
2003-03-21 14:20:48 +00:00
|
|
|
|
FontSetChanger dummy(mi.base, "textnormal");
|
2004-01-30 11:41:12 +00:00
|
|
|
|
cell(0).metrics(mi, dim);
|
|
|
|
|
metricsMarkers(dim);
|
|
|
|
|
dim_ = dim;
|
2002-06-04 09:06:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void MathBoxInset::draw(PainterInfo & pi, int x, int y) const
|
2002-06-04 09:06:04 +00:00
|
|
|
|
{
|
2003-03-21 14:20:48 +00:00
|
|
|
|
FontSetChanger dummy(pi.base, "textnormal");
|
2002-08-02 14:29:42 +00:00
|
|
|
|
cell(0).draw(pi, x, y);
|
2003-05-28 13:22:36 +00:00
|
|
|
|
drawMarkers(pi, x, y);
|
2001-10-24 19:09:31 +00:00
|
|
|
|
}
|
2002-07-10 07:15:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void MathBoxInset::infoize(std::ostream & os) const
|
|
|
|
|
{
|
|
|
|
|
os << "Box: " << name_;
|
|
|
|
|
}
|