1999-09-27 18:44:28 +00:00
|
|
|
|
/*
|
2001-07-06 12:09:32 +00:00
|
|
|
|
* File: formulamacro.C
|
|
|
|
|
* Purpose: Implementation of the formula macro LyX inset
|
2001-12-11 17:47:27 +00:00
|
|
|
|
* Author: Andr<EFBFBD> P<EFBFBD>nitz, based on ideas of Alejandro Aguilar Sierra
|
2001-07-06 12:09:32 +00:00
|
|
|
|
* Created: March 2001
|
2002-03-21 17:42:56 +00:00
|
|
|
|
* Description: Allows the edition of math macros inside Lyx.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*
|
2001-07-06 12:09:32 +00:00
|
|
|
|
* Copyright: 2001 The LyX Project
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*
|
|
|
|
|
* You are free to use and modify this code under the terms of
|
|
|
|
|
* the GNU General Public Licence version 2 or later.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
2001-02-15 12:22:01 +00:00
|
|
|
|
#pragma implementation
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "formulamacro.h"
|
|
|
|
|
#include "commandtags.h"
|
|
|
|
|
#include "math_cursor.h"
|
|
|
|
|
#include "math_parser.h"
|
|
|
|
|
#include "math_macro.h"
|
2001-02-13 17:08:51 +00:00
|
|
|
|
#include "math_macrotable.h"
|
2001-12-11 17:47:27 +00:00
|
|
|
|
#include "math_support.h"
|
|
|
|
|
#include "math_mathmlstream.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "BufferView.h"
|
|
|
|
|
#include "gettext.h"
|
2000-02-10 17:53:36 +00:00
|
|
|
|
#include "Painter.h"
|
2000-04-04 00:19:15 +00:00
|
|
|
|
#include "font.h"
|
2000-10-02 00:55:02 +00:00
|
|
|
|
#include "support/lyxlib.h"
|
2001-02-14 12:02:08 +00:00
|
|
|
|
#include "support/LOstream.h"
|
2001-02-26 12:53:35 +00:00
|
|
|
|
#include "debug.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
|
#include "lyxlex.h"
|
2001-10-12 12:58:50 +00:00
|
|
|
|
#include "lyxtext.h"
|
2001-07-29 15:34:18 +00:00
|
|
|
|
#include "lyxfont.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-06-27 15:57:57 +00:00
|
|
|
|
using std::ostream;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
extern MathCursor * mathcursor;
|
2001-04-24 16:13:38 +00:00
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
InsetFormulaMacro::InsetFormulaMacro()
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-08-14 07:46:11 +00:00
|
|
|
|
// inset name is inherited from Inset
|
2001-08-07 08:40:14 +00:00
|
|
|
|
setInsetName("unknown");
|
2001-08-03 09:54:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-27 11:02:56 +00:00
|
|
|
|
InsetFormulaMacro::InsetFormulaMacro(string const & name, int nargs)
|
2001-08-03 09:54:48 +00:00
|
|
|
|
{
|
2002-02-01 17:01:30 +00:00
|
|
|
|
setInsetName(name);
|
2002-03-27 11:02:56 +00:00
|
|
|
|
MathMacroTable::create(name, nargs);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-14 07:46:11 +00:00
|
|
|
|
InsetFormulaMacro::InsetFormulaMacro(string const & s)
|
|
|
|
|
{
|
2002-02-01 17:01:30 +00:00
|
|
|
|
string name;
|
|
|
|
|
mathed_parse_macro(name, s);
|
2001-10-12 12:02:49 +00:00
|
|
|
|
setInsetName(name);
|
2001-08-14 07:46:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
|
Inset * InsetFormulaMacro::clone(Buffer const &, bool) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-04-24 16:13:38 +00:00
|
|
|
|
return new InsetFormulaMacro(*this);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-12-03 16:24:50 +00:00
|
|
|
|
void InsetFormulaMacro::write(Buffer const *, ostream & os) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "FormulaMacro ";
|
2002-03-25 12:11:25 +00:00
|
|
|
|
WriteStream wi(os, false, false);
|
2001-10-19 11:25:48 +00:00
|
|
|
|
par()->write(wi);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 17:42:56 +00:00
|
|
|
|
int InsetFormulaMacro::latex(Buffer const *, ostream & os, bool fragile,
|
2000-03-09 16:13:43 +00:00
|
|
|
|
bool /*free_spacing*/) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2002-03-25 12:11:25 +00:00
|
|
|
|
WriteStream wi(os, fragile, true);
|
2001-10-19 11:25:48 +00:00
|
|
|
|
par()->write(wi);
|
2000-09-05 14:15:09 +00:00
|
|
|
|
return 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-10-19 11:25:48 +00:00
|
|
|
|
|
2001-12-03 16:24:50 +00:00
|
|
|
|
int InsetFormulaMacro::ascii(Buffer const *, ostream & os, int) const
|
2001-06-25 00:06:33 +00:00
|
|
|
|
{
|
2002-03-25 12:11:25 +00:00
|
|
|
|
WriteStream wi(os, false, true);
|
2001-10-19 11:25:48 +00:00
|
|
|
|
par()->write(wi);
|
2001-06-25 00:06:33 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-09-24 13:38:52 +00:00
|
|
|
|
int InsetFormulaMacro::linuxdoc(Buffer const * buf, ostream & os) const
|
2000-03-06 02:42:40 +00:00
|
|
|
|
{
|
2001-09-24 13:38:52 +00:00
|
|
|
|
return ascii(buf, os, 0);
|
2000-03-06 02:42:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-09-24 13:38:52 +00:00
|
|
|
|
int InsetFormulaMacro::docbook(Buffer const * buf, ostream & os) const
|
2000-03-06 02:42:40 +00:00
|
|
|
|
{
|
2001-09-24 13:38:52 +00:00
|
|
|
|
return ascii(buf, os, 0);
|
2000-03-06 02:42:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-09-24 13:38:52 +00:00
|
|
|
|
void InsetFormulaMacro::read(Buffer const *, LyXLex & lex)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2002-02-01 17:01:30 +00:00
|
|
|
|
string name;
|
|
|
|
|
mathed_parse_macro(name, lex);
|
2001-10-12 12:02:49 +00:00
|
|
|
|
setInsetName(name);
|
2001-10-24 09:16:06 +00:00
|
|
|
|
//lyxerr << "metrics disabled";
|
2001-08-03 09:54:48 +00:00
|
|
|
|
metrics();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
|
|
|
|
string InsetFormulaMacro::prefix() const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return string(" ") + _("Macro: ") + getInsetName() + ": ";
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
int InsetFormulaMacro::ascent(BufferView *, LyXFont const &) const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return par()->ascent() + 5;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
int InsetFormulaMacro::descent(BufferView *, LyXFont const &) const
|
2001-04-24 16:13:38 +00:00
|
|
|
|
{
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return par()->descent() + 5;
|
2001-04-24 16:13:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-10-19 11:25:48 +00:00
|
|
|
|
int InsetFormulaMacro::width(BufferView * bv, LyXFont const & f) const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
2001-10-22 15:37:49 +00:00
|
|
|
|
metrics(bv, f);
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return 10 + lyxfont::width(prefix(), f) + par()->width();
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
MathAtom const & InsetFormulaMacro::par() const
|
2001-04-24 16:13:38 +00:00
|
|
|
|
{
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return MathMacroTable::provide(getInsetName());
|
2001-06-25 00:06:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
MathAtom & InsetFormulaMacro::par()
|
2001-06-25 00:06:33 +00:00
|
|
|
|
{
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return MathMacroTable::provide(getInsetName());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-08-01 13:28:45 +00:00
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
Inset::Code InsetFormulaMacro::lyxCode() const
|
2001-08-01 13:28:45 +00:00
|
|
|
|
{
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return Inset::MATHMACRO_CODE;
|
2001-08-01 13:28:45 +00:00
|
|
|
|
}
|
2001-08-03 09:54:48 +00:00
|
|
|
|
|
|
|
|
|
|
2001-10-12 12:02:49 +00:00
|
|
|
|
MathInsetTypes InsetFormulaMacro::getType() const
|
2001-08-03 09:54:48 +00:00
|
|
|
|
{
|
2001-10-12 12:02:49 +00:00
|
|
|
|
return LM_OT_MACRO;
|
2001-08-03 09:54:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetFormulaMacro::draw(BufferView * bv, LyXFont const & f,
|
2001-10-24 09:16:06 +00:00
|
|
|
|
int y, float & x, bool /*cleared*/) const
|
2001-08-03 09:54:48 +00:00
|
|
|
|
{
|
|
|
|
|
Painter & pain = bv->painter();
|
|
|
|
|
LyXFont font(f);
|
|
|
|
|
|
|
|
|
|
// label
|
|
|
|
|
font.setColor(LColor::math);
|
2002-03-21 17:42:56 +00:00
|
|
|
|
|
2001-10-24 09:16:06 +00:00
|
|
|
|
int const a = y - ascent(bv, font) + 1;
|
2001-08-03 09:54:48 +00:00
|
|
|
|
int const w = width(bv, font) - 2;
|
|
|
|
|
int const h = ascent(bv, font) + descent(bv, font) - 2;
|
|
|
|
|
|
|
|
|
|
// LColor::mathbg used to be "AntiqueWhite" but is "linen" now, too
|
2001-10-24 09:16:06 +00:00
|
|
|
|
pain.fillRectangle(int(x), a , w, h, LColor::mathmacrobg);
|
|
|
|
|
pain.rectangle(int(x), a, w, h, LColor::mathframe);
|
2001-08-03 09:54:48 +00:00
|
|
|
|
|
2001-12-10 10:09:00 +00:00
|
|
|
|
if (mathcursor &&
|
|
|
|
|
const_cast<InsetFormulaBase const *>(mathcursor->formula()) == this)
|
2001-08-03 09:54:48 +00:00
|
|
|
|
mathcursor->drawSelection(pain);
|
|
|
|
|
|
2001-10-24 09:16:06 +00:00
|
|
|
|
pain.text(int(x + 2), y, prefix(), font);
|
2001-08-03 09:54:48 +00:00
|
|
|
|
x += width(bv, font);
|
|
|
|
|
|
|
|
|
|
// formula
|
2001-10-24 09:16:06 +00:00
|
|
|
|
xo_ = int(x) - par()->width() - 5;
|
|
|
|
|
yo_ = y;
|
|
|
|
|
par()->draw(pain, xo_, yo_);
|
2001-08-03 09:54:48 +00:00
|
|
|
|
}
|