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
|
|
|
|
|
* Author: Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
* Created: March 2001
|
|
|
|
|
* 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-04-24 16:13:38 +00:00
|
|
|
|
#include "math_macroarg.h"
|
2001-02-13 17:08:51 +00:00
|
|
|
|
#include "math_macrotable.h"
|
|
|
|
|
#include "math_macrotemplate.h"
|
2001-11-08 12:28:33 +00:00
|
|
|
|
#include "math_hullinset.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "lyx_main.h"
|
|
|
|
|
#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-11-08 12:15:12 +00:00
|
|
|
|
#include "mathed/math_support.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"
|
2001-11-08 12:06:56 +00:00
|
|
|
|
#include "math_mathmlstream.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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-07 08:40:14 +00:00
|
|
|
|
InsetFormulaMacro::InsetFormulaMacro(string nm, int na)
|
2001-08-03 09:54:48 +00:00
|
|
|
|
{
|
2001-08-07 08:40:14 +00:00
|
|
|
|
setInsetName(nm);
|
2001-10-12 12:02:49 +00:00
|
|
|
|
MathMacroTable::create(nm, na, string());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-14 07:46:11 +00:00
|
|
|
|
InsetFormulaMacro::InsetFormulaMacro(string const & s)
|
|
|
|
|
{
|
2001-10-12 12:02:49 +00:00
|
|
|
|
string name = mathed_parse_macro(s);
|
|
|
|
|
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-10-19 11:25:48 +00:00
|
|
|
|
void InsetFormulaMacro::write(Buffer const * buf, ostream & os) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "FormulaMacro ";
|
2001-11-09 08:35:57 +00:00
|
|
|
|
WriteStream wi(buf, os, false);
|
2001-10-19 11:25:48 +00:00
|
|
|
|
par()->write(wi);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-10-19 11:25:48 +00:00
|
|
|
|
int InsetFormulaMacro::latex(Buffer const * buf, ostream & os, bool fragile,
|
2000-03-09 16:13:43 +00:00
|
|
|
|
bool /*free_spacing*/) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-11-09 08:35:57 +00:00
|
|
|
|
WriteStream wi(buf, os, fragile);
|
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
|
|
|
|
|
|
|
|
|
int InsetFormulaMacro::ascii(Buffer const * buf, ostream & os, int) const
|
2001-06-25 00:06:33 +00:00
|
|
|
|
{
|
2001-11-09 08:35:57 +00:00
|
|
|
|
WriteStream wi(buf, os, false);
|
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
|
|
|
|
{
|
2001-10-12 12:02:49 +00:00
|
|
|
|
string name = mathed_parse_macro(lex);
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
2000-04-04 00:19:15 +00:00
|
|
|
|
|
2000-02-25 13:35:38 +00:00
|
|
|
|
UpdatableInset::RESULT
|
2001-06-28 10:25:20 +00:00
|
|
|
|
InsetFormulaMacro::localDispatch(BufferView * bv,
|
2001-02-23 16:10:03 +00:00
|
|
|
|
kb_action action, string const & arg)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
|
RESULT result = DISPATCHED;
|
|
|
|
|
switch (action) {
|
|
|
|
|
case LFUN_MATH_MACROARG: {
|
|
|
|
|
int const i = lyx::atoi(arg);
|
|
|
|
|
lyxerr << "inserting macro arg " << i << "\n";
|
2001-10-12 12:02:49 +00:00
|
|
|
|
//if (i > 0 && i <= par()->numargs()) {
|
|
|
|
|
mathcursor->insert(MathAtom(new MathMacroArgument(i)));
|
2001-07-17 09:46:07 +00:00
|
|
|
|
updateLocal(bv, true);
|
2001-10-12 12:02:49 +00:00
|
|
|
|
//} else {
|
|
|
|
|
// lyxerr << "not in range 0.." << par()->numargs() << "\n";
|
|
|
|
|
//}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
break;
|
2001-02-15 12:22:01 +00:00
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-10-12 12:58:50 +00:00
|
|
|
|
default: {
|
2001-06-28 10:25:20 +00:00
|
|
|
|
result = InsetFormulaBase::localDispatch(bv, action, arg);
|
2001-10-12 12:58:50 +00:00
|
|
|
|
// force redraw if anything happened
|
|
|
|
|
if (result != UNDISPATCHED) {
|
|
|
|
|
bv->text->status(bv, LyXText::NEED_MORE_REFRESH);
|
|
|
|
|
bv->updateInset(this, false);
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-02-15 12:22:01 +00:00
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
return result;
|
2001-04-24 16:13:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-06-25 00:06:33 +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);
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
if (mathcursor && mathcursor->formula() == this)
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|