2002-09-11 09:14:57 +00:00
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "math_metricsinfo.h"
|
|
|
|
#include "math_support.h"
|
2002-08-05 16:21:19 +00:00
|
|
|
#include "debug.h"
|
2002-05-30 07:09:54 +00:00
|
|
|
#include "frontends/Painter.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MathMetricsBase::MathMetricsBase()
|
2002-07-08 11:29:51 +00:00
|
|
|
: font(), style(LM_ST_TEXT), fontname("mathnormal"),
|
|
|
|
restrictwidth(false), textwidth(0)
|
2002-05-30 07:09:54 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-08-02 14:29:42 +00:00
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
MathMetricsInfo::MathMetricsInfo()
|
2002-08-02 12:38:20 +00:00
|
|
|
: fullredraw(false)
|
2002-05-30 07:09:54 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-08-02 14:29:42 +00:00
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
MathPainterInfo::MathPainterInfo(Painter & p)
|
|
|
|
: pain(p)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
void MathPainterInfo::draw(int x, int y, char c)
|
|
|
|
{
|
|
|
|
pain.text(x, y, c, base.font);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-05 16:21:19 +00:00
|
|
|
MathStyles smallerScriptStyle(MathStyles st)
|
2002-05-30 07:09:54 +00:00
|
|
|
{
|
2002-08-05 16:21:19 +00:00
|
|
|
switch (st) {
|
2002-05-30 07:09:54 +00:00
|
|
|
case LM_ST_DISPLAY:
|
|
|
|
case LM_ST_TEXT:
|
2002-08-05 16:21:19 +00:00
|
|
|
return LM_ST_SCRIPT;
|
2002-05-30 07:09:54 +00:00
|
|
|
case LM_ST_SCRIPT:
|
2002-08-05 16:21:19 +00:00
|
|
|
case LM_ST_SCRIPTSCRIPT:
|
|
|
|
return LM_ST_SCRIPTSCRIPT;
|
2002-05-30 07:09:54 +00:00
|
|
|
}
|
2002-08-05 16:21:19 +00:00
|
|
|
// shut up compiler
|
|
|
|
lyxerr << "should not happen\n";
|
|
|
|
return LM_ST_DISPLAY;
|
2002-05-30 07:09:54 +00:00
|
|
|
}
|
|
|
|
|
2002-08-05 16:21:19 +00:00
|
|
|
MathScriptChanger::MathScriptChanger(MathMetricsBase & mb)
|
|
|
|
: MathStyleChanger(mb, smallerScriptStyle(mb.style))
|
|
|
|
{}
|
2002-05-30 07:09:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2002-08-05 16:21:19 +00:00
|
|
|
MathStyles smallerFracStyle(MathStyles st)
|
2002-05-30 07:09:54 +00:00
|
|
|
{
|
2002-08-05 16:21:19 +00:00
|
|
|
switch (st) {
|
2002-05-30 07:09:54 +00:00
|
|
|
case LM_ST_DISPLAY:
|
2002-08-05 16:21:19 +00:00
|
|
|
return LM_ST_TEXT;
|
2002-05-30 07:09:54 +00:00
|
|
|
case LM_ST_TEXT:
|
2002-08-05 16:21:19 +00:00
|
|
|
return LM_ST_SCRIPT;
|
2002-05-30 07:09:54 +00:00
|
|
|
case LM_ST_SCRIPT:
|
2002-08-05 16:21:19 +00:00
|
|
|
case LM_ST_SCRIPTSCRIPT:
|
|
|
|
return LM_ST_SCRIPTSCRIPT;
|
2002-05-30 07:09:54 +00:00
|
|
|
}
|
2002-08-05 16:21:19 +00:00
|
|
|
// shut up compiler
|
|
|
|
lyxerr << "should not happen\n";
|
|
|
|
return LM_ST_DISPLAY;
|
2002-05-30 07:09:54 +00:00
|
|
|
}
|
|
|
|
|
2002-08-05 16:21:19 +00:00
|
|
|
MathFracChanger::MathFracChanger(MathMetricsBase & mb)
|
|
|
|
: MathStyleChanger(mb, smallerFracStyle(mb.style))
|
|
|
|
{}
|
2002-05-30 07:09:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-02 06:38:49 +00:00
|
|
|
MathArrayChanger::MathArrayChanger(MathMetricsBase & mb)
|
|
|
|
: MathStyleChanger(mb, mb.style == LM_ST_DISPLAY ? LM_ST_TEXT : mb.style)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
MathShapeChanger::MathShapeChanger(LyXFont & font, LyXFont::FONT_SHAPE shape)
|
|
|
|
: MathChanger<LyXFont, LyXFont::FONT_SHAPE>(font)
|
|
|
|
{
|
|
|
|
save_ = orig_.shape();
|
|
|
|
orig_.setShape(shape);
|
|
|
|
}
|
|
|
|
|
|
|
|
MathShapeChanger::~MathShapeChanger()
|
|
|
|
{
|
|
|
|
orig_.setShape(save_);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MathStyleChanger::MathStyleChanger(MathMetricsBase & mb, MathStyles style)
|
|
|
|
: MathChanger<MathMetricsBase>(mb)
|
|
|
|
{
|
2002-08-05 16:21:19 +00:00
|
|
|
static const int diff[4][4] = { { 0, 0, -3, -5 },
|
2002-12-01 22:59:25 +00:00
|
|
|
{ 0, 0, -3, -5 },
|
|
|
|
{ 3, 3, 0, -2 },
|
|
|
|
{ 5, 5, 2, 0 } };
|
2002-05-30 07:09:54 +00:00
|
|
|
save_ = mb;
|
2002-08-05 16:21:19 +00:00
|
|
|
int t = diff[mb.style][style];
|
2002-12-01 22:59:25 +00:00
|
|
|
if (t > 0)
|
2002-08-05 16:21:19 +00:00
|
|
|
while (t--)
|
|
|
|
mb.font.incSize();
|
2002-12-01 22:59:25 +00:00
|
|
|
else
|
2002-08-05 16:21:19 +00:00
|
|
|
while (t++)
|
|
|
|
mb.font.decSize();
|
|
|
|
mb.style = style;
|
2002-05-30 07:09:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MathStyleChanger::~MathStyleChanger()
|
|
|
|
{
|
|
|
|
orig_ = save_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-06-05 07:12:05 +00:00
|
|
|
MathFontSetChanger::MathFontSetChanger(MathMetricsBase & mb, char const * name)
|
2002-05-30 07:09:54 +00:00
|
|
|
: MathChanger<MathMetricsBase>(mb)
|
|
|
|
{
|
2002-12-01 22:59:25 +00:00
|
|
|
save_ = mb;
|
2002-06-05 07:12:05 +00:00
|
|
|
mb.fontname = name;
|
|
|
|
augmentFont(mb.font, name);
|
2002-05-30 07:09:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MathFontSetChanger::~MathFontSetChanger()
|
|
|
|
{
|
|
|
|
orig_ = save_;
|
|
|
|
}
|
|
|
|
|
2002-07-08 11:29:51 +00:00
|
|
|
|
|
|
|
MathWidthChanger::MathWidthChanger(MathMetricsBase & mb, int w)
|
|
|
|
: MathChanger<MathMetricsBase>(mb)
|
|
|
|
{
|
2002-12-01 22:59:25 +00:00
|
|
|
save_ = mb;
|
2002-07-08 11:29:51 +00:00
|
|
|
mb.restrictwidth = true;
|
|
|
|
mb.textwidth = w;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MathWidthChanger::~MathWidthChanger()
|
|
|
|
{
|
|
|
|
orig_ = save_;
|
|
|
|
}
|