2003-08-19 13:00:56 +00:00
|
|
|
/**
|
2007-11-05 23:46:17 +00:00
|
|
|
* \file MathMacroTemplate.cpp
|
2003-08-19 13:00:56 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author André Pönitz
|
2008-10-21 13:04:22 +00:00
|
|
|
* \author Stefan Schimanski
|
2003-08-19 13:00:56 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
2003-08-02 11:30:30 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2007-11-05 23:46:17 +00:00
|
|
|
#include "MathMacroTemplate.h"
|
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
#include "DocIterator.h"
|
2007-12-23 16:32:00 +00:00
|
|
|
#include "LaTeXFeatures.h"
|
2007-11-01 11:13:07 +00:00
|
|
|
#include "InsetMathBrace.h"
|
|
|
|
#include "InsetMathChar.h"
|
|
|
|
#include "InsetMathSqrt.h"
|
|
|
|
#include "MathMacro.h"
|
|
|
|
#include "MathMacroArgument.h"
|
2006-10-22 10:15:23 +00:00
|
|
|
#include "MathStream.h"
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "MathParser.h"
|
|
|
|
#include "MathSupport.h"
|
2007-11-01 11:13:07 +00:00
|
|
|
#include "MathMacroArgument.h"
|
2004-04-13 06:27:29 +00:00
|
|
|
|
2007-05-01 08:26:40 +00:00
|
|
|
#include "Buffer.h"
|
2007-12-23 01:25:51 +00:00
|
|
|
#include "BufferView.h"
|
2007-11-01 11:13:07 +00:00
|
|
|
#include "Color.h"
|
2007-04-26 14:56:30 +00:00
|
|
|
#include "Cursor.h"
|
2007-11-01 11:13:07 +00:00
|
|
|
#include "DispatchResult.h"
|
|
|
|
#include "FuncRequest.h"
|
|
|
|
#include "FuncStatus.h"
|
2007-04-26 11:30:54 +00:00
|
|
|
#include "Lexer.h"
|
2007-11-01 11:13:07 +00:00
|
|
|
#include "Undo.h"
|
2001-02-14 15:00:50 +00:00
|
|
|
|
2004-04-13 06:27:29 +00:00
|
|
|
#include "frontends/Painter.h"
|
|
|
|
|
2008-04-30 08:26:40 +00:00
|
|
|
#include "support/lassert.h"
|
2007-11-01 11:13:07 +00:00
|
|
|
#include "support/convert.h"
|
2008-02-18 07:14:42 +00:00
|
|
|
#include "support/debug.h"
|
|
|
|
#include "support/gettext.h"
|
2007-11-05 23:46:17 +00:00
|
|
|
#include "support/docstream.h"
|
2004-04-13 06:27:29 +00:00
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
#include <sstream>
|
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
using support::bformat;
|
2004-04-13 06:27:29 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class InsetLabelBox : public InsetMathNest {
|
|
|
|
public:
|
|
|
|
///
|
2009-11-08 11:45:46 +00:00
|
|
|
InsetLabelBox(Buffer * buf, MathAtom const & atom, docstring label,
|
2007-12-23 01:27:18 +00:00
|
|
|
MathMacroTemplate const & parent, bool frame = false);
|
2009-11-08 11:45:46 +00:00
|
|
|
InsetLabelBox(Buffer * buf, docstring label, MathMacroTemplate const & parent,
|
2007-12-23 01:27:18 +00:00
|
|
|
bool frame = false);
|
2007-12-23 01:25:51 +00:00
|
|
|
///
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
|
|
///
|
|
|
|
void draw(PainterInfo &, int x, int y) const;
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:26:46 +00:00
|
|
|
protected:
|
2007-12-23 01:25:51 +00:00
|
|
|
///
|
|
|
|
MathMacroTemplate const & parent_;
|
|
|
|
///
|
|
|
|
Inset * clone() const;
|
|
|
|
///
|
|
|
|
docstring const label_;
|
|
|
|
///
|
|
|
|
bool frame_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-11-08 11:45:46 +00:00
|
|
|
InsetLabelBox::InsetLabelBox(Buffer * buf, MathAtom const & atom, docstring label,
|
2008-02-29 10:02:25 +00:00
|
|
|
MathMacroTemplate const & parent, bool frame)
|
2009-11-08 11:45:46 +00:00
|
|
|
: InsetMathNest(buf, 1), parent_(parent), label_(label), frame_(frame)
|
2007-12-23 01:25:51 +00:00
|
|
|
{
|
|
|
|
cell(0).insert(0, atom);
|
|
|
|
}
|
|
|
|
|
2007-12-23 01:26:46 +00:00
|
|
|
|
2009-11-08 11:45:46 +00:00
|
|
|
InsetLabelBox::InsetLabelBox(Buffer * buf, docstring label,
|
2007-12-23 01:27:42 +00:00
|
|
|
MathMacroTemplate const & parent, bool frame)
|
2009-11-08 11:45:46 +00:00
|
|
|
: InsetMathNest(buf, 1), parent_(parent), label_(label), frame_(frame)
|
2007-12-23 01:25:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
|
|
|
|
Inset * InsetLabelBox::clone() const
|
2007-12-23 01:25:51 +00:00
|
|
|
{
|
|
|
|
return new InsetLabelBox(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
void InsetLabelBox::metrics(MetricsInfo & mi, Dimension & dim) const
|
2007-12-23 01:25:51 +00:00
|
|
|
{
|
|
|
|
// kernel
|
|
|
|
cell(0).metrics(mi, dim);
|
|
|
|
|
|
|
|
// frame
|
|
|
|
if (frame_) {
|
|
|
|
dim.wid += 6;
|
|
|
|
dim.asc += 5;
|
|
|
|
dim.des += 5;
|
|
|
|
}
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// adjust to common height in main metrics phase
|
|
|
|
if (!parent_.premetrics()) {
|
|
|
|
dim.asc = max(dim.asc, parent_.commonLabelBoxAscent());
|
|
|
|
dim.des = max(dim.des, parent_.commonLabelBoxDescent());
|
|
|
|
}
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// label
|
2007-12-23 01:26:46 +00:00
|
|
|
if (parent_.editing(mi.base.bv) && label_.length() > 0) {
|
2007-12-23 01:25:51 +00:00
|
|
|
// grey
|
|
|
|
FontInfo font = sane_font;
|
|
|
|
font.setSize(FONT_SIZE_TINY);
|
|
|
|
font.setColor(Color_mathmacrolabel);
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// make space for label and box
|
|
|
|
int lwid = mathed_string_width(font, label_);
|
|
|
|
int maxasc;
|
|
|
|
int maxdes;
|
2007-12-23 01:28:51 +00:00
|
|
|
math_font_max_dim(font, maxasc, maxdes);
|
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
dim.wid = max(dim.wid, lwid + 2);
|
|
|
|
|
|
|
|
// space for the label
|
|
|
|
if (!parent_.premetrics())
|
|
|
|
dim.des += maxasc + maxdes + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
void InsetLabelBox::draw(PainterInfo & pi, int x, int y) const
|
2007-12-23 01:25:51 +00:00
|
|
|
{
|
|
|
|
Dimension const dim = dimension(*pi.base.bv);
|
2007-12-23 01:26:46 +00:00
|
|
|
Dimension const cdim = cell(0).dimension(*pi.base.bv);
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// kernel
|
2007-12-23 01:26:46 +00:00
|
|
|
cell(0).draw(pi, x + (dim.wid - cdim.wid) / 2, y);
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// label
|
2007-12-23 01:26:46 +00:00
|
|
|
if (parent_.editing(pi.base.bv) && label_.length() > 0) {
|
2007-12-23 01:25:51 +00:00
|
|
|
// grey
|
|
|
|
FontInfo font = sane_font;
|
|
|
|
font.setSize(FONT_SIZE_TINY);
|
|
|
|
font.setColor(Color_mathmacrolabel);
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// make space for label and box
|
|
|
|
int lwid = mathed_string_width(font, label_);
|
|
|
|
int maxasc;
|
|
|
|
int maxdes;
|
|
|
|
math_font_max_dim(font, maxasc, maxdes);
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
if (lwid < dim.wid)
|
|
|
|
pi.pain.text(x + (dim.wid - lwid) / 2, y + dim.des - maxdes, label_, font);
|
|
|
|
else
|
|
|
|
pi.pain.text(x, y + dim.des - maxdes, label_, font);
|
|
|
|
}
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// draw frame
|
|
|
|
int boxHeight = parent_.commonLabelBoxAscent() + parent_.commonLabelBoxDescent();
|
|
|
|
if (frame_) {
|
2007-12-23 01:28:51 +00:00
|
|
|
pi.pain.rectangle(x + 1, y - dim.ascent() + 1,
|
|
|
|
dim.wid - 2, boxHeight - 2,
|
2007-12-23 01:27:18 +00:00
|
|
|
Color_mathline);
|
2007-12-23 01:25:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-23 01:26:46 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class DisplayLabelBox : public InsetLabelBox {
|
|
|
|
public:
|
|
|
|
///
|
2009-11-08 11:45:46 +00:00
|
|
|
DisplayLabelBox(Buffer * buf, MathAtom const & atom, docstring label,
|
2007-12-23 01:27:18 +00:00
|
|
|
MathMacroTemplate const & parent);
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:26:46 +00:00
|
|
|
///
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
|
|
///
|
|
|
|
void draw(PainterInfo &, int x, int y) const;
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:26:46 +00:00
|
|
|
protected:
|
|
|
|
///
|
|
|
|
Inset * clone() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-11-08 11:45:46 +00:00
|
|
|
DisplayLabelBox::DisplayLabelBox(Buffer * buf, MathAtom const & atom,
|
2007-12-23 01:28:51 +00:00
|
|
|
docstring label,
|
2007-12-23 01:27:18 +00:00
|
|
|
MathMacroTemplate const & parent)
|
2009-11-08 11:45:46 +00:00
|
|
|
: InsetLabelBox(buf, atom, label, parent, true)
|
2007-12-23 01:26:46 +00:00
|
|
|
{
|
|
|
|
}
|
2007-12-23 01:28:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inset * DisplayLabelBox::clone() const
|
2007-12-23 01:26:46 +00:00
|
|
|
{
|
|
|
|
return new DisplayLabelBox(*this);
|
|
|
|
}
|
2007-12-23 01:28:51 +00:00
|
|
|
|
|
|
|
|
2007-12-23 01:26:46 +00:00
|
|
|
void DisplayLabelBox::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
|
|
{
|
|
|
|
InsetLabelBox::metrics(mi, dim);
|
|
|
|
if (!parent_.editing(mi.base.bv)
|
2007-12-23 01:27:18 +00:00
|
|
|
&& parent_.cell(parent_.displayIdx()).empty()) {
|
2007-12-23 01:26:46 +00:00
|
|
|
dim.wid = 0;
|
|
|
|
dim.asc = 0;
|
|
|
|
dim.des = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:26:46 +00:00
|
|
|
void DisplayLabelBox::draw(PainterInfo & pi, int x, int y) const
|
|
|
|
{
|
|
|
|
if (parent_.editing(pi.base.bv)
|
2007-12-23 01:27:18 +00:00
|
|
|
|| !parent_.cell(parent_.displayIdx()).empty()) {
|
2007-12-23 01:26:46 +00:00
|
|
|
InsetLabelBox::draw(pi, x, y);
|
|
|
|
} else {
|
|
|
|
bool enabled = pi.pain.isDrawingEnabled();
|
|
|
|
pi.pain.setDrawingEnabled(false);
|
|
|
|
InsetLabelBox::draw(pi, x, y);
|
|
|
|
pi.pain.setDrawingEnabled(enabled);
|
|
|
|
}
|
|
|
|
}
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:26:46 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2001-02-13 17:08:51 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
class InsetMathWrapper : public InsetMath {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
InsetMathWrapper(MathData const * value) : value_(value) {}
|
|
|
|
///
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
|
|
///
|
|
|
|
void draw(PainterInfo &, int x, int y) const;
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
private:
|
|
|
|
///
|
|
|
|
Inset * clone() const;
|
|
|
|
///
|
|
|
|
MathData const * value_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
Inset * InsetMathWrapper::clone() const
|
2007-11-01 11:13:07 +00:00
|
|
|
{
|
|
|
|
return new InsetMathWrapper(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
void InsetMathWrapper::metrics(MetricsInfo & mi, Dimension & dim) const
|
2007-11-01 11:13:07 +00:00
|
|
|
{
|
|
|
|
value_->metrics(mi, dim);
|
|
|
|
//metricsMarkers2(dim);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
void InsetMathWrapper::draw(PainterInfo & pi, int x, int y) const
|
2007-11-01 11:13:07 +00:00
|
|
|
{
|
|
|
|
value_->draw(pi, x, y);
|
|
|
|
//drawMarkers(pi, x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-29 10:02:25 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
class InsetColoredCell : public InsetMathNest {
|
|
|
|
public:
|
|
|
|
///
|
2009-11-08 11:45:46 +00:00
|
|
|
InsetColoredCell(Buffer * buf, ColorCode min, ColorCode max);
|
2008-02-29 10:02:25 +00:00
|
|
|
///
|
2009-11-08 11:45:46 +00:00
|
|
|
InsetColoredCell(Buffer * buf, ColorCode min, ColorCode max, MathAtom const & atom);
|
2008-02-29 10:02:25 +00:00
|
|
|
///
|
|
|
|
void draw(PainterInfo &, int x, int y) const;
|
|
|
|
///
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
///
|
|
|
|
Inset * clone() const;
|
|
|
|
///
|
|
|
|
ColorCode min_;
|
|
|
|
///
|
|
|
|
ColorCode max_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-11-08 11:45:46 +00:00
|
|
|
InsetColoredCell::InsetColoredCell(Buffer * buf, ColorCode min, ColorCode max)
|
|
|
|
: InsetMathNest(buf, 1), min_(min), max_(max)
|
2008-02-29 10:02:25 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-08 11:45:46 +00:00
|
|
|
InsetColoredCell::InsetColoredCell(Buffer * buf, ColorCode min, ColorCode max, MathAtom const & atom)
|
|
|
|
: InsetMathNest(buf, 1), min_(min), max_(max)
|
2008-02-29 10:02:25 +00:00
|
|
|
{
|
|
|
|
cell(0).insert(0, atom);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Inset * InsetColoredCell::clone() const
|
|
|
|
{
|
|
|
|
return new InsetColoredCell(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetColoredCell::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
|
|
{
|
|
|
|
cell(0).metrics(mi, dim);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetColoredCell::draw(PainterInfo & pi, int x, int y) const
|
|
|
|
{
|
|
|
|
pi.pain.enterMonochromeMode(min_, max_);
|
|
|
|
cell(0).draw(pi, x, y);
|
|
|
|
pi.pain.leaveMonochromeMode();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class InsetNameWrapper : public InsetMathWrapper {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
InsetNameWrapper(MathData const * value, MathMacroTemplate const & parent);
|
|
|
|
///
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
|
|
///
|
|
|
|
void draw(PainterInfo &, int x, int y) const;
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
private:
|
|
|
|
///
|
|
|
|
MathMacroTemplate const & parent_;
|
|
|
|
///
|
|
|
|
Inset * clone() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
InsetNameWrapper::InsetNameWrapper(MathData const * value,
|
2007-12-23 01:28:24 +00:00
|
|
|
MathMacroTemplate const & parent)
|
2007-12-23 01:27:18 +00:00
|
|
|
: InsetMathWrapper(value), parent_(parent)
|
2007-12-23 01:25:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
Inset * InsetNameWrapper::clone() const
|
2007-12-23 01:25:51 +00:00
|
|
|
{
|
|
|
|
return new InsetNameWrapper(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
void InsetNameWrapper::metrics(MetricsInfo & mi, Dimension & dim) const
|
2007-12-23 01:25:51 +00:00
|
|
|
{
|
|
|
|
InsetMathWrapper::metrics(mi, dim);
|
|
|
|
dim.wid += mathed_string_width(mi.base.font, from_ascii("\\"));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
void InsetNameWrapper::draw(PainterInfo & pi, int x, int y) const
|
2007-12-23 01:25:51 +00:00
|
|
|
{
|
|
|
|
// create fonts
|
|
|
|
PainterInfo namepi = pi;
|
|
|
|
if (parent_.validMacro())
|
|
|
|
namepi.base.font.setColor(Color_latex);
|
|
|
|
else
|
2007-12-23 01:28:51 +00:00
|
|
|
namepi.base.font.setColor(Color_error);
|
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// draw backslash
|
|
|
|
pi.pain.text(x, y, from_ascii("\\"), namepi.base.font);
|
|
|
|
x += mathed_string_width(namepi.base.font, from_ascii("\\"));
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// draw name
|
|
|
|
InsetMathWrapper::draw(namepi, x, y);
|
|
|
|
}
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
2007-12-23 01:28:51 +00:00
|
|
|
|
|
|
|
|
2009-11-06 15:18:48 +00:00
|
|
|
MathMacroTemplate::MathMacroTemplate(Buffer * buf)
|
2009-11-08 11:45:46 +00:00
|
|
|
: InsetMathNest(buf, 3), numargs_(0), argsInLook_(0), optionals_(0),
|
2007-12-23 01:26:46 +00:00
|
|
|
type_(MacroTypeNewcommand), lookOutdated_(true)
|
2006-01-24 11:04:30 +00:00
|
|
|
{
|
|
|
|
initMath();
|
|
|
|
}
|
2001-02-13 17:08:51 +00:00
|
|
|
|
2001-04-25 15:43:57 +00:00
|
|
|
|
2009-11-08 11:45:46 +00:00
|
|
|
MathMacroTemplate::MathMacroTemplate(Buffer * buf, docstring const & name, int numargs,
|
|
|
|
int optionals, MacroType type, vector<MathData> const & optionalValues,
|
2007-11-05 23:46:17 +00:00
|
|
|
MathData const & def, MathData const & display)
|
2009-11-08 11:45:46 +00:00
|
|
|
: InsetMathNest(buf, optionals + 3), numargs_(numargs), argsInLook_(numargs),
|
2007-12-21 20:42:46 +00:00
|
|
|
optionals_(optionals), optionalValues_(optionalValues),
|
2007-12-23 01:26:46 +00:00
|
|
|
type_(type), lookOutdated_(true)
|
2001-10-02 10:50:10 +00:00
|
|
|
{
|
2006-01-24 11:04:30 +00:00
|
|
|
initMath();
|
|
|
|
|
2001-12-11 11:33:43 +00:00
|
|
|
if (numargs_ > 9)
|
2001-10-02 10:50:10 +00:00
|
|
|
lyxerr << "MathMacroTemplate::MathMacroTemplate: wrong # of arguments: "
|
2007-12-12 19:28:07 +00:00
|
|
|
<< numargs_ << endl;
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
asArray(name, cell(0));
|
|
|
|
optionalValues_.resize(9);
|
2007-12-23 01:28:51 +00:00
|
|
|
for (int i = 0; i < optionals_; ++i)
|
2007-11-01 11:13:07 +00:00
|
|
|
cell(optIdx(i)) = optionalValues_[i];
|
|
|
|
cell(defIdx()) = def;
|
|
|
|
cell(displayIdx()) = display;
|
2007-12-23 01:25:51 +00:00
|
|
|
|
|
|
|
updateLook();
|
2002-07-12 14:24:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-08 11:45:46 +00:00
|
|
|
MathMacroTemplate::MathMacroTemplate(Buffer * buf, docstring const & str)
|
|
|
|
: InsetMathNest(buf, 3), numargs_(0), optionals_(0),
|
2007-12-23 01:26:46 +00:00
|
|
|
type_(MacroTypeNewcommand), lookOutdated_(true)
|
2002-07-12 14:24:47 +00:00
|
|
|
{
|
2009-11-06 15:18:48 +00:00
|
|
|
buffer_ = buf;
|
2006-01-24 11:04:30 +00:00
|
|
|
initMath();
|
|
|
|
|
2009-11-08 11:45:46 +00:00
|
|
|
MathData ar(buf);
|
|
|
|
mathed_parse_cell(ar, str, Parse::NORMAL);
|
2002-07-12 14:24:47 +00:00
|
|
|
if (ar.size() != 1 || !ar[0]->asMacroTemplate()) {
|
2006-10-22 14:37:32 +00:00
|
|
|
lyxerr << "Cannot read macro from '" << ar << "'" << endl;
|
2007-12-19 22:57:22 +00:00
|
|
|
asArray(from_ascii("invalidmacro"), cell(0));
|
|
|
|
// FIXME: The macro template does not make sense after this.
|
|
|
|
// The whole parsing should not be in a constructor which
|
|
|
|
// has no chance to report failure.
|
2002-07-12 14:24:47 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
operator=( *(ar[0]->asMacroTemplate()) );
|
2007-12-23 01:25:51 +00:00
|
|
|
|
|
|
|
updateLook();
|
2001-10-02 10:50:10 +00:00
|
|
|
}
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
|
|
|
2007-08-30 18:03:17 +00:00
|
|
|
Inset * MathMacroTemplate::clone() const
|
2001-02-26 12:53:35 +00:00
|
|
|
{
|
2008-01-08 10:29:47 +00:00
|
|
|
MathMacroTemplate * inset = new MathMacroTemplate(*this);
|
|
|
|
// the parent pointers of the proxy insets above will point to
|
|
|
|
// to the old template. Hence, the look must be updated.
|
|
|
|
inset->updateLook();
|
|
|
|
return inset;
|
2001-02-26 12:53:35 +00:00
|
|
|
}
|
2001-02-13 17:08:51 +00:00
|
|
|
|
2001-06-27 15:33:55 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
docstring MathMacroTemplate::name() const
|
2004-04-13 06:27:29 +00:00
|
|
|
{
|
2007-11-01 11:13:07 +00:00
|
|
|
return asString(cell(0));
|
2004-04-13 06:27:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-21 20:42:46 +00:00
|
|
|
void MathMacroTemplate::updateToContext(MacroContext const & mc) const
|
|
|
|
{
|
|
|
|
redefinition_ = mc.get(name()) != 0;
|
|
|
|
}
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2008-03-04 14:57:34 +00:00
|
|
|
void MathMacroTemplate::updateLook() const
|
2007-12-23 01:25:51 +00:00
|
|
|
{
|
|
|
|
lookOutdated_ = true;
|
|
|
|
}
|
|
|
|
|
2007-12-23 01:26:46 +00:00
|
|
|
|
2008-02-29 10:02:25 +00:00
|
|
|
void MathMacroTemplate::createLook(int args) const
|
2007-12-23 01:25:51 +00:00
|
|
|
{
|
|
|
|
look_.clear();
|
2008-02-29 10:02:25 +00:00
|
|
|
argsInLook_ = args;
|
2007-12-23 01:25:51 +00:00
|
|
|
|
|
|
|
// \foo
|
2009-11-08 11:45:46 +00:00
|
|
|
look_.push_back(MathAtom(
|
|
|
|
new InsetLabelBox(buffer_, _("Name"), *this, false)));
|
2007-12-23 01:25:51 +00:00
|
|
|
MathData & nameData = look_[look_.size() - 1].nucleus()->cell(0);
|
|
|
|
nameData.push_back(MathAtom(new InsetNameWrapper(&cell(0), *this)));
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// [#1][#2]
|
|
|
|
int i = 0;
|
|
|
|
if (optionals_ > 0) {
|
2009-11-08 11:45:46 +00:00
|
|
|
look_.push_back(MathAtom(
|
|
|
|
new InsetLabelBox(buffer_, _("optional"), *this, false)));
|
2008-02-29 10:02:25 +00:00
|
|
|
|
2008-03-10 12:49:50 +00:00
|
|
|
MathData * optData = &look_[look_.size() - 1].nucleus()->cell(0);
|
2007-12-23 01:25:51 +00:00
|
|
|
for (; i < optionals_; ++i) {
|
2008-03-10 12:49:50 +00:00
|
|
|
// color it light grey, if it is to be removed when the cursor leaves
|
|
|
|
if (i == argsInLook_) {
|
2008-02-29 10:02:25 +00:00
|
|
|
optData->push_back(MathAtom(
|
2009-11-08 11:45:46 +00:00
|
|
|
new InsetColoredCell(buffer_, Color_mathbg, Color_mathmacrooldarg)));
|
2008-03-10 12:49:50 +00:00
|
|
|
optData = &(*optData)[optData->size() - 1].nucleus()->cell(0);
|
2008-02-29 10:02:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
optData->push_back(MathAtom(new InsetMathChar('[')));
|
|
|
|
optData->push_back(MathAtom(new InsetMathWrapper(&cell(1 + i))));
|
|
|
|
optData->push_back(MathAtom(new InsetMathChar(']')));
|
2007-12-23 01:25:51 +00:00
|
|
|
}
|
|
|
|
}
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// {#3}{#4}
|
|
|
|
for (; i < numargs_; ++i) {
|
|
|
|
MathData arg;
|
|
|
|
arg.push_back(MathAtom(new MathMacroArgument(i + 1)));
|
2008-02-29 10:02:25 +00:00
|
|
|
if (i >= argsInLook_) {
|
2009-11-08 11:45:46 +00:00
|
|
|
look_.push_back(MathAtom(new InsetColoredCell(buffer_,
|
2008-02-29 10:02:25 +00:00
|
|
|
Color_mathbg, Color_mathmacrooldarg,
|
|
|
|
MathAtom(new InsetMathBrace(arg)))));
|
|
|
|
} else
|
|
|
|
look_.push_back(MathAtom(new InsetMathBrace(arg)));
|
2007-12-23 01:25:51 +00:00
|
|
|
}
|
2008-02-29 10:02:25 +00:00
|
|
|
for (; i < argsInLook_; ++i) {
|
|
|
|
MathData arg;
|
|
|
|
arg.push_back(MathAtom(new MathMacroArgument(i + 1)));
|
2009-11-08 11:45:46 +00:00
|
|
|
look_.push_back(MathAtom(new InsetColoredCell(buffer_,
|
2008-02-29 10:02:25 +00:00
|
|
|
Color_mathbg, Color_mathmacronewarg,
|
|
|
|
MathAtom(new InsetMathBrace(arg)))));
|
|
|
|
}
|
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// :=
|
|
|
|
look_.push_back(MathAtom(new InsetMathChar(':')));
|
|
|
|
look_.push_back(MathAtom(new InsetMathChar('=')));
|
|
|
|
|
|
|
|
// definition
|
2007-12-23 01:26:46 +00:00
|
|
|
look_.push_back(MathAtom(
|
2009-11-08 11:45:46 +00:00
|
|
|
new InsetLabelBox(buffer_, MathAtom(
|
2007-12-23 01:26:46 +00:00
|
|
|
new InsetMathWrapper(&cell(defIdx()))), _("TeX"), *this, true)));
|
2007-12-23 01:25:51 +00:00
|
|
|
|
|
|
|
// display
|
2007-12-23 01:26:46 +00:00
|
|
|
look_.push_back(MathAtom(
|
2009-11-08 11:45:46 +00:00
|
|
|
new DisplayLabelBox(buffer_, MathAtom(
|
2007-12-23 01:26:46 +00:00
|
|
|
new InsetMathWrapper(&cell(displayIdx()))), _("LyX"), *this)));
|
2007-12-23 01:25:51 +00:00
|
|
|
}
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-21 20:42:46 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
void MathMacroTemplate::metrics(MetricsInfo & mi, Dimension & dim) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2007-11-01 11:13:07 +00:00
|
|
|
FontSetChanger dummy1(mi.base, from_ascii("mathnormal"));
|
|
|
|
StyleChanger dummy2(mi.base, LM_ST_TEXT);
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
// valid macro?
|
|
|
|
MacroData const * macro = 0;
|
2007-12-21 20:42:46 +00:00
|
|
|
if (validName()) {
|
|
|
|
macro = mi.macrocontext.get(name());
|
|
|
|
|
|
|
|
// updateToContext() - avoids another lookup
|
|
|
|
redefinition_ = macro != 0;
|
2007-11-01 11:13:07 +00:00
|
|
|
}
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// update look?
|
2008-02-29 10:02:25 +00:00
|
|
|
int argsInDef = maxArgumentInDefinition();
|
|
|
|
if (lookOutdated_ || argsInDef != argsInLook_) {
|
2007-12-23 01:25:51 +00:00
|
|
|
lookOutdated_ = false;
|
2008-02-29 10:02:25 +00:00
|
|
|
createLook(argsInDef);
|
2007-11-01 11:13:07 +00:00
|
|
|
}
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
/// metrics for inset contents
|
2007-11-01 11:13:07 +00:00
|
|
|
if (macro)
|
2007-12-23 01:28:51 +00:00
|
|
|
macro->lock();
|
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// first phase, premetric:
|
|
|
|
premetrics_ = true;
|
|
|
|
look_.metrics(mi, dim);
|
|
|
|
labelBoxAscent_ = dim.asc;
|
|
|
|
labelBoxDescent_ = dim.des;
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// second phase, main metric:
|
|
|
|
premetrics_ = false;
|
|
|
|
look_.metrics(mi, dim);
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
if (macro)
|
|
|
|
macro->unlock();
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
dim.wid += 6;
|
|
|
|
dim.des += 2;
|
|
|
|
dim.asc += 2;
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
setDimCache(mi, dim);
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
2001-02-13 17:08:51 +00:00
|
|
|
|
2001-06-27 15:33:55 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
void MathMacroTemplate::draw(PainterInfo & pi, int x, int y) const
|
2001-02-13 17:08:51 +00:00
|
|
|
{
|
2007-11-01 11:13:07 +00:00
|
|
|
FontSetChanger dummy1(pi.base, from_ascii("mathnormal"));
|
|
|
|
StyleChanger dummy2(pi.base, LM_ST_TEXT);
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
setPosCache(pi, x, y);
|
|
|
|
Dimension const dim = dimension(*pi.base.bv);
|
|
|
|
|
|
|
|
// draw outer frame
|
|
|
|
int const a = y - dim.asc + 1;
|
|
|
|
int const w = dim.wid - 2;
|
|
|
|
int const h = dim.height() - 2;
|
2007-12-23 01:28:51 +00:00
|
|
|
pi.pain.rectangle(x, a, w, h, Color_mathframe);
|
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// just to be sure: set some dummy values for coord cache
|
2008-03-10 12:49:50 +00:00
|
|
|
for (idx_type i = 0; i < nargs(); ++i)
|
2007-12-23 01:25:51 +00:00
|
|
|
cell(i).setXY(*pi.base.bv, x, y);
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
// draw contents
|
|
|
|
look_.draw(pi, x + 3, y);
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
2001-02-13 17:08:51 +00:00
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2008-02-11 08:20:13 +00:00
|
|
|
void MathMacroTemplate::edit(Cursor & cur, bool front, EntryDirection entry_from)
|
2007-12-23 01:24:34 +00:00
|
|
|
{
|
2008-03-04 14:57:34 +00:00
|
|
|
updateLook();
|
2008-03-03 15:21:13 +00:00
|
|
|
cur.updateFlags(Update::SinglePar);
|
2008-02-10 19:52:45 +00:00
|
|
|
InsetMathNest::edit(cur, front, entry_from);
|
2007-12-23 01:24:34 +00:00
|
|
|
}
|
2007-12-23 01:28:51 +00:00
|
|
|
|
|
|
|
|
2008-02-22 20:45:18 +00:00
|
|
|
bool MathMacroTemplate::notifyCursorLeaves(Cursor const & old, Cursor & cur)
|
2007-12-23 01:24:34 +00:00
|
|
|
{
|
2008-02-29 10:02:40 +00:00
|
|
|
// find this in cursor old
|
|
|
|
Cursor insetCur = old;
|
|
|
|
int scriptSlice = insetCur.find(this);
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(scriptSlice != -1, /**/);
|
2008-02-29 10:02:40 +00:00
|
|
|
insetCur.cutOff(scriptSlice);
|
|
|
|
|
|
|
|
commitEditChanges(insetCur);
|
2007-12-23 01:25:51 +00:00
|
|
|
updateLook();
|
2007-12-23 01:24:34 +00:00
|
|
|
cur.updateFlags(Update::Force);
|
2008-02-22 20:45:18 +00:00
|
|
|
return InsetMathNest::notifyCursorLeaves(old, cur);
|
2007-12-23 01:24:34 +00:00
|
|
|
}
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2008-11-17 11:46:07 +00:00
|
|
|
void MathMacroTemplate::removeArguments(Cursor & cur, int from, int to)
|
|
|
|
{
|
|
|
|
for (DocIterator it = doc_iterator_begin(&buffer(), this); it; it.forwardChar()) {
|
2007-11-01 11:13:07 +00:00
|
|
|
if (!it.nextInset())
|
2007-12-23 01:27:04 +00:00
|
|
|
continue;
|
2009-07-16 19:00:24 +00:00
|
|
|
if (it.nextInset()->lyxCode() != MATH_MACROARG_CODE)
|
2007-12-23 01:27:04 +00:00
|
|
|
continue;
|
2007-11-01 11:13:07 +00:00
|
|
|
MathMacroArgument * arg = static_cast<MathMacroArgument*>(it.nextInset());
|
|
|
|
int n = arg->number() - 1;
|
|
|
|
if (from <= n && n <= to) {
|
|
|
|
int cellSlice = cur.find(it.cell());
|
|
|
|
if (cellSlice != -1 && cur[cellSlice].pos() > it.pos())
|
2007-12-23 01:27:04 +00:00
|
|
|
--cur[cellSlice].pos();
|
2007-11-01 11:13:07 +00:00
|
|
|
|
|
|
|
it.cell().erase(it.pos());
|
|
|
|
}
|
|
|
|
}
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
updateLook();
|
2001-08-08 17:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-17 11:46:07 +00:00
|
|
|
void MathMacroTemplate::shiftArguments(size_t from, int by)
|
|
|
|
{
|
|
|
|
for (DocIterator it = doc_iterator_begin(&buffer(), this); it; it.forwardChar()) {
|
2007-11-01 11:13:07 +00:00
|
|
|
if (!it.nextInset())
|
2007-12-23 01:27:04 +00:00
|
|
|
continue;
|
2009-07-16 19:00:24 +00:00
|
|
|
if (it.nextInset()->lyxCode() != MATH_MACROARG_CODE)
|
2007-12-23 01:27:04 +00:00
|
|
|
continue;
|
2007-11-01 11:13:07 +00:00
|
|
|
MathMacroArgument * arg = static_cast<MathMacroArgument*>(it.nextInset());
|
2008-03-28 09:04:48 +00:00
|
|
|
if (arg->number() >= int(from) + 1)
|
2007-11-01 11:13:07 +00:00
|
|
|
arg->setNumber(arg->number() + by);
|
|
|
|
}
|
2007-12-23 01:25:51 +00:00
|
|
|
|
|
|
|
updateLook();
|
2004-04-13 06:27:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-29 10:02:25 +00:00
|
|
|
int MathMacroTemplate::maxArgumentInDefinition() const
|
|
|
|
{
|
2009-08-06 09:53:06 +00:00
|
|
|
// We don't have a buffer when pasting from the clipboard (bug 6014).
|
|
|
|
Buffer const * macro_buffer = this->isBufferValid() ? &buffer() : 0;
|
2008-02-29 10:02:25 +00:00
|
|
|
int maxArg = 0;
|
2009-08-06 09:53:06 +00:00
|
|
|
DocIterator it = doc_iterator_begin(macro_buffer, this);
|
2008-02-29 10:02:25 +00:00
|
|
|
it.idx() = defIdx();
|
|
|
|
for (; it; it.forwardChar()) {
|
|
|
|
if (!it.nextInset())
|
|
|
|
continue;
|
2009-07-16 19:00:24 +00:00
|
|
|
if (it.nextInset()->lyxCode() != MATH_MACROARG_CODE)
|
2008-02-29 10:02:25 +00:00
|
|
|
continue;
|
|
|
|
MathMacroArgument * arg = static_cast<MathMacroArgument*>(it.nextInset());
|
|
|
|
maxArg = std::max(int(arg->number()), maxArg);
|
|
|
|
}
|
|
|
|
return maxArg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathMacroTemplate::insertMissingArguments(int maxArg)
|
|
|
|
{
|
|
|
|
bool found[9] = { false, false, false, false, false, false, false, false, false };
|
|
|
|
idx_type idx = cell(displayIdx()).empty() ? defIdx() : displayIdx();
|
|
|
|
|
|
|
|
// search for #n macros arguments
|
2008-11-17 11:46:07 +00:00
|
|
|
DocIterator it = doc_iterator_begin(&buffer(), this);
|
2008-02-29 10:02:25 +00:00
|
|
|
it.idx() = idx;
|
|
|
|
for (; it && it[0].idx() == idx; it.forwardChar()) {
|
|
|
|
if (!it.nextInset())
|
|
|
|
continue;
|
2009-07-16 19:00:24 +00:00
|
|
|
if (it.nextInset()->lyxCode() != MATH_MACROARG_CODE)
|
2008-02-29 10:02:25 +00:00
|
|
|
continue;
|
|
|
|
MathMacroArgument * arg = static_cast<MathMacroArgument*>(it.nextInset());
|
|
|
|
found[arg->number() - 1] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// add missing ones
|
|
|
|
for (int i = 0; i < maxArg; ++i) {
|
|
|
|
if (found[i])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
cell(idx).push_back(MathAtom(new MathMacroArgument(i + 1)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathMacroTemplate::changeArity(Cursor & cur, int newNumArg)
|
|
|
|
{
|
|
|
|
// remove parameter which do not appear anymore in the definition
|
|
|
|
for (int i = numargs_; i > newNumArg; --i)
|
|
|
|
removeParameter(cur, numargs_ - 1, false);
|
|
|
|
|
|
|
|
// add missing parameter
|
|
|
|
for (int i = numargs_; i < newNumArg; ++i)
|
|
|
|
insertParameter(cur, numargs_, false, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathMacroTemplate::commitEditChanges(Cursor & cur)
|
|
|
|
{
|
|
|
|
int argsInDef = maxArgumentInDefinition();
|
|
|
|
if (argsInDef != numargs_) {
|
|
|
|
cur.recordUndoFullDocument();
|
|
|
|
changeArity(cur, argsInDef);
|
|
|
|
}
|
|
|
|
insertMissingArguments(argsInDef);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
// FIXME: factorize those functions here with a functional style, maybe using Boost's function
|
|
|
|
// objects?
|
|
|
|
|
|
|
|
void fixMacroInstancesAddRemove(Cursor const & from, docstring const & name, int n, bool insert) {
|
|
|
|
Cursor dit = from;
|
|
|
|
|
|
|
|
for (; dit; dit.forwardPos()) {
|
|
|
|
// only until a macro is redefined
|
|
|
|
if (dit.inset().lyxCode() == MATHMACRO_CODE) {
|
|
|
|
MathMacroTemplate const & macroTemplate
|
|
|
|
= static_cast<MathMacroTemplate const &>(dit.inset());
|
|
|
|
if (macroTemplate.name() == name)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// in front of macro instance?
|
|
|
|
Inset * inset = dit.nextInset();
|
2007-12-23 01:28:03 +00:00
|
|
|
if (!inset)
|
|
|
|
continue;
|
|
|
|
InsetMath * insetMath = inset->asInsetMath();
|
|
|
|
if (!insetMath)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
MathMacro * macro = insetMath->asMacro();
|
|
|
|
if (macro && macro->name() == name && macro->folded()) {
|
|
|
|
// found macro instance
|
|
|
|
if (insert)
|
|
|
|
macro->insertArgument(n);
|
|
|
|
else
|
|
|
|
macro->removeArgument(n);
|
2007-11-01 11:13:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-04-17 16:52:43 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
|
|
|
|
void fixMacroInstancesOptional(Cursor const & from, docstring const & name, int optionals) {
|
|
|
|
Cursor dit = from;
|
|
|
|
|
|
|
|
for (; dit; dit.forwardPos()) {
|
|
|
|
// only until a macro is redefined
|
|
|
|
if (dit.inset().lyxCode() == MATHMACRO_CODE) {
|
|
|
|
MathMacroTemplate const & macroTemplate
|
|
|
|
= static_cast<MathMacroTemplate const &>(dit.inset());
|
|
|
|
if (macroTemplate.name() == name)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// in front of macro instance?
|
|
|
|
Inset * inset = dit.nextInset();
|
2007-12-23 01:28:03 +00:00
|
|
|
if (!inset)
|
|
|
|
continue;
|
|
|
|
InsetMath * insetMath = inset->asInsetMath();
|
|
|
|
if (!insetMath)
|
|
|
|
continue;
|
|
|
|
MathMacro * macro = insetMath->asMacro();
|
|
|
|
if (macro && macro->name() == name && macro->folded()) {
|
|
|
|
// found macro instance
|
|
|
|
macro->setOptionals(optionals);
|
2007-11-01 11:13:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template<class F>
|
2007-12-23 01:28:51 +00:00
|
|
|
void fixMacroInstancesFunctional(Cursor const & from,
|
2007-11-01 11:13:07 +00:00
|
|
|
docstring const & name, F & fix) {
|
|
|
|
Cursor dit = from;
|
|
|
|
|
|
|
|
for (; dit; dit.forwardPos()) {
|
|
|
|
// only until a macro is redefined
|
|
|
|
if (dit.inset().lyxCode() == MATHMACRO_CODE) {
|
|
|
|
MathMacroTemplate const & macroTemplate
|
|
|
|
= static_cast<MathMacroTemplate const &>(dit.inset());
|
|
|
|
if (macroTemplate.name() == name)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// in front of macro instance?
|
|
|
|
Inset * inset = dit.nextInset();
|
2007-12-23 01:28:03 +00:00
|
|
|
if (!inset)
|
|
|
|
continue;
|
|
|
|
InsetMath * insetMath = inset->asInsetMath();
|
|
|
|
if (!insetMath)
|
|
|
|
continue;
|
|
|
|
MathMacro * macro = insetMath->asMacro();
|
|
|
|
if (macro && macro->name() == name && macro->folded())
|
|
|
|
F(macro);
|
2007-11-01 11:13:07 +00:00
|
|
|
}
|
2001-03-05 10:52:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-29 10:02:25 +00:00
|
|
|
void MathMacroTemplate::insertParameter(Cursor & cur, int pos, bool greedy, bool addarg)
|
2001-02-13 17:08:51 +00:00
|
|
|
{
|
2007-11-01 11:13:07 +00:00
|
|
|
if (pos <= numargs_ && pos >= optionals_ && numargs_ < 9) {
|
|
|
|
++numargs_;
|
2008-02-29 10:02:25 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
// append example #n
|
2008-02-29 10:02:25 +00:00
|
|
|
if (addarg) {
|
|
|
|
shiftArguments(pos, 1);
|
|
|
|
|
|
|
|
cell(defIdx()).push_back(MathAtom(new MathMacroArgument(pos + 1)));
|
|
|
|
if (!cell(displayIdx()).empty())
|
|
|
|
cell(displayIdx()).push_back(MathAtom(new MathMacroArgument(pos + 1)));
|
|
|
|
}
|
2007-11-01 11:13:07 +00:00
|
|
|
|
|
|
|
if (!greedy) {
|
|
|
|
Cursor dit = cur;
|
|
|
|
dit.leaveInset(*this);
|
|
|
|
// TODO: this was dit.forwardPosNoDescend before. Check that this is the same
|
|
|
|
dit.top().forwardPos();
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
// fix macro instances
|
|
|
|
fixMacroInstancesAddRemove(dit, name(), pos, true);
|
|
|
|
}
|
|
|
|
}
|
2007-12-23 01:25:51 +00:00
|
|
|
|
|
|
|
updateLook();
|
2007-11-01 11:13:07 +00:00
|
|
|
}
|
2007-05-28 22:27:45 +00:00
|
|
|
|
2004-04-13 06:27:29 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
void MathMacroTemplate::removeParameter(Cursor & cur, int pos, bool greedy)
|
|
|
|
{
|
|
|
|
if (pos < numargs_ && pos >= 0) {
|
|
|
|
--numargs_;
|
|
|
|
removeArguments(cur, pos, pos);
|
|
|
|
shiftArguments(pos + 1, -1);
|
|
|
|
|
|
|
|
// removed optional parameter?
|
|
|
|
if (pos < optionals_) {
|
|
|
|
--optionals_;
|
|
|
|
optionalValues_[pos] = cell(optIdx(pos));
|
|
|
|
cells_.erase(cells_.begin() + optIdx(pos));
|
|
|
|
|
|
|
|
// fix cursor
|
|
|
|
int macroSlice = cur.find(this);
|
|
|
|
if (macroSlice != -1) {
|
|
|
|
if (cur[macroSlice].idx() == optIdx(pos)) {
|
|
|
|
cur.cutOff(macroSlice);
|
|
|
|
cur[macroSlice].idx() = 1;
|
|
|
|
cur[macroSlice].pos() = 0;
|
|
|
|
} else if (cur[macroSlice].idx() > optIdx(pos))
|
|
|
|
--cur[macroSlice].idx();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!greedy) {
|
|
|
|
// fix macro instances
|
|
|
|
//boost::function<void(MathMacro *)> fix = _1->insertArgument(n);
|
|
|
|
//fixMacroInstancesFunctional(dit, name(), fix);
|
|
|
|
Cursor dit = cur;
|
|
|
|
dit.leaveInset(*this);
|
|
|
|
// TODO: this was dit.forwardPosNoDescend before. Check that this is the same
|
|
|
|
dit.top().forwardPos();
|
|
|
|
fixMacroInstancesAddRemove(dit, name(), pos, false);
|
|
|
|
}
|
|
|
|
}
|
2007-12-23 01:25:51 +00:00
|
|
|
|
|
|
|
updateLook();
|
2007-11-01 11:13:07 +00:00
|
|
|
}
|
2007-09-23 22:39:49 +00:00
|
|
|
|
2004-04-13 06:27:29 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
void MathMacroTemplate::makeOptional(Cursor & cur) {
|
|
|
|
if (numargs_ > 0 && optionals_ < numargs_) {
|
|
|
|
++optionals_;
|
|
|
|
cells_.insert(cells_.begin() + optIdx(optionals_ - 1), optionalValues_[optionals_ - 1]);
|
|
|
|
// fix cursor
|
|
|
|
int macroSlice = cur.find(this);
|
|
|
|
if (macroSlice != -1 && cur[macroSlice].idx() >= optIdx(optionals_ - 1))
|
|
|
|
++cur[macroSlice].idx();
|
|
|
|
|
|
|
|
// fix macro instances
|
|
|
|
Cursor dit = cur;
|
|
|
|
dit.leaveInset(*this);
|
|
|
|
// TODO: this was dit.forwardPosNoDescend before. Check that this is the same
|
|
|
|
dit.top().forwardPos();
|
|
|
|
fixMacroInstancesOptional(dit, name(), optionals_);
|
|
|
|
}
|
2007-12-23 01:25:51 +00:00
|
|
|
|
|
|
|
updateLook();
|
2007-11-01 11:13:07 +00:00
|
|
|
}
|
2004-04-13 06:27:29 +00:00
|
|
|
|
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
void MathMacroTemplate::makeNonOptional(Cursor & cur) {
|
|
|
|
if (numargs_ > 0 && optionals_ > 0) {
|
|
|
|
--optionals_;
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2008-02-29 10:02:25 +00:00
|
|
|
// store default value for later if the user changes his mind
|
2007-11-01 22:15:00 +00:00
|
|
|
optionalValues_[optionals_] = cell(optIdx(optionals_));
|
2007-11-01 11:13:07 +00:00
|
|
|
cells_.erase(cells_.begin() + optIdx(optionals_));
|
|
|
|
|
|
|
|
// fix cursor
|
|
|
|
int macroSlice = cur.find(this);
|
|
|
|
if (macroSlice != -1) {
|
|
|
|
if (cur[macroSlice].idx() > optIdx(optionals_))
|
|
|
|
--cur[macroSlice].idx();
|
|
|
|
else if (cur[macroSlice].idx() == optIdx(optionals_)) {
|
|
|
|
cur.cutOff(macroSlice);
|
|
|
|
cur[macroSlice].idx() = optIdx(optionals_);
|
|
|
|
cur[macroSlice].pos() = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// fix macro instances
|
|
|
|
Cursor dit = cur;
|
|
|
|
dit.leaveInset(*this);
|
|
|
|
// TODO: this was dit.forwardPosNoDescend before. Check that this is the same
|
|
|
|
dit.top().forwardPos();
|
|
|
|
fixMacroInstancesOptional(dit, name(), optionals_);
|
|
|
|
}
|
2007-12-23 01:25:51 +00:00
|
|
|
|
|
|
|
updateLook();
|
2007-11-01 11:13:07 +00:00
|
|
|
}
|
2004-04-13 06:27:29 +00:00
|
|
|
|
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
void MathMacroTemplate::doDispatch(Cursor & cur, FuncRequest & cmd)
|
|
|
|
{
|
2007-12-12 19:28:07 +00:00
|
|
|
string const arg = to_utf8(cmd.argument());
|
2007-11-01 11:13:07 +00:00
|
|
|
switch (cmd.action) {
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
case LFUN_MATH_MACRO_ADD_PARAM:
|
2007-11-01 11:13:07 +00:00
|
|
|
if (numargs_ < 9) {
|
2008-02-29 10:02:25 +00:00
|
|
|
commitEditChanges(cur);
|
2007-11-01 11:13:07 +00:00
|
|
|
cur.recordUndoFullDocument();
|
|
|
|
size_t pos = numargs_;
|
|
|
|
if (arg.size() != 0)
|
|
|
|
pos = (size_t)convert<int>(arg) - 1; // it is checked for >=0 in getStatus
|
|
|
|
insertParameter(cur, pos);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
case LFUN_MATH_MACRO_REMOVE_PARAM:
|
2007-11-01 11:13:07 +00:00
|
|
|
if (numargs_ > 0) {
|
2008-02-29 10:02:25 +00:00
|
|
|
commitEditChanges(cur);
|
2007-11-01 11:13:07 +00:00
|
|
|
cur.recordUndoFullDocument();
|
|
|
|
size_t pos = numargs_ - 1;
|
|
|
|
if (arg.size() != 0)
|
|
|
|
pos = (size_t)convert<int>(arg) - 1; // it is checked for >=0 in getStatus
|
|
|
|
removeParameter(cur, pos);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_MACRO_APPEND_GREEDY_PARAM:
|
|
|
|
if (numargs_ < 9) {
|
2008-02-29 10:02:25 +00:00
|
|
|
commitEditChanges(cur);
|
2007-11-01 11:13:07 +00:00
|
|
|
cur.recordUndoFullDocument();
|
|
|
|
insertParameter(cur, numargs_, true);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_MACRO_REMOVE_GREEDY_PARAM:
|
|
|
|
if (numargs_ > 0) {
|
2008-02-29 10:02:25 +00:00
|
|
|
commitEditChanges(cur);
|
2007-11-01 11:13:07 +00:00
|
|
|
cur.recordUndoFullDocument();
|
|
|
|
removeParameter(cur, numargs_ - 1, true);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_MACRO_MAKE_OPTIONAL:
|
2008-02-29 10:02:25 +00:00
|
|
|
commitEditChanges(cur);
|
2007-11-01 11:13:07 +00:00
|
|
|
cur.recordUndoFullDocument();
|
|
|
|
makeOptional(cur);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_MACRO_MAKE_NONOPTIONAL:
|
2008-02-29 10:02:25 +00:00
|
|
|
commitEditChanges(cur);
|
2007-11-01 11:13:07 +00:00
|
|
|
cur.recordUndoFullDocument();
|
|
|
|
makeNonOptional(cur);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_MACRO_ADD_OPTIONAL_PARAM:
|
|
|
|
if (numargs_ < 9) {
|
2008-02-29 10:02:25 +00:00
|
|
|
commitEditChanges(cur);
|
2007-11-01 11:13:07 +00:00
|
|
|
cur.recordUndoFullDocument();
|
|
|
|
insertParameter(cur, optionals_);
|
|
|
|
makeOptional(cur);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_MACRO_REMOVE_OPTIONAL_PARAM:
|
2007-11-14 17:59:58 +00:00
|
|
|
if (optionals_ > 0) {
|
2008-02-29 10:02:25 +00:00
|
|
|
commitEditChanges(cur);
|
2007-11-14 17:59:58 +00:00
|
|
|
cur.recordUndoFullDocument();
|
2007-11-01 11:13:07 +00:00
|
|
|
removeParameter(cur, optionals_ - 1);
|
2007-11-14 17:59:58 +00:00
|
|
|
} break;
|
2007-11-01 11:13:07 +00:00
|
|
|
|
|
|
|
case LFUN_MATH_MACRO_ADD_GREEDY_OPTIONAL_PARAM:
|
|
|
|
if (numargs_ == optionals_) {
|
2008-02-29 10:02:25 +00:00
|
|
|
commitEditChanges(cur);
|
2007-11-01 11:13:07 +00:00
|
|
|
cur.recordUndoFullDocument();
|
|
|
|
insertParameter(cur, 0, true);
|
|
|
|
makeOptional(cur);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
InsetMathNest::doDispatch(cur, cmd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-28 22:27:45 +00:00
|
|
|
|
2007-11-05 23:46:17 +00:00
|
|
|
bool MathMacroTemplate::getStatus(Cursor & /*cur*/, FuncRequest const & cmd,
|
2007-11-01 11:13:07 +00:00
|
|
|
FuncStatus & flag) const
|
|
|
|
{
|
|
|
|
bool ret = true;
|
2007-12-12 19:28:07 +00:00
|
|
|
string const arg = to_utf8(cmd.argument());
|
2007-11-01 11:13:07 +00:00
|
|
|
switch (cmd.action) {
|
|
|
|
case LFUN_MATH_MACRO_ADD_PARAM: {
|
|
|
|
int num = numargs_ + 1;
|
|
|
|
if (arg.size() != 0)
|
|
|
|
num = convert<int>(arg);
|
2007-12-23 01:28:51 +00:00
|
|
|
bool on = (num >= optionals_
|
2007-12-21 20:42:46 +00:00
|
|
|
&& numargs_ < 9 && num <= numargs_ + 1);
|
2008-05-29 15:14:00 +00:00
|
|
|
flag.setEnabled(on);
|
2007-11-01 11:13:07 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_MATH_MACRO_APPEND_GREEDY_PARAM:
|
2008-05-29 15:14:00 +00:00
|
|
|
flag.setEnabled(numargs_ < 9);
|
2007-11-01 11:13:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_MACRO_REMOVE_PARAM: {
|
|
|
|
int num = numargs_;
|
|
|
|
if (arg.size() != 0)
|
|
|
|
num = convert<int>(arg);
|
2008-05-29 15:14:00 +00:00
|
|
|
flag.setEnabled(num >= 1 && num <= numargs_);
|
2007-11-01 11:13:07 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_MATH_MACRO_MAKE_OPTIONAL:
|
2008-05-29 15:14:00 +00:00
|
|
|
flag.setEnabled(numargs_ > 0
|
2007-12-23 01:28:51 +00:00
|
|
|
&& optionals_ < numargs_
|
2007-12-21 20:42:46 +00:00
|
|
|
&& type_ != MacroTypeDef);
|
2007-11-01 11:13:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_MACRO_MAKE_NONOPTIONAL:
|
2008-05-29 15:14:00 +00:00
|
|
|
flag.setEnabled(optionals_ > 0
|
2007-12-21 20:42:46 +00:00
|
|
|
&& type_ != MacroTypeDef);
|
2007-11-01 11:13:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_MACRO_ADD_OPTIONAL_PARAM:
|
2008-05-29 15:14:00 +00:00
|
|
|
flag.setEnabled(numargs_ < 9);
|
2007-11-01 11:13:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_MACRO_REMOVE_OPTIONAL_PARAM:
|
2008-05-29 15:14:00 +00:00
|
|
|
flag.setEnabled(optionals_ > 0);
|
2007-11-01 11:13:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_MACRO_ADD_GREEDY_OPTIONAL_PARAM:
|
2008-05-29 15:14:00 +00:00
|
|
|
flag.setEnabled(numargs_ == 0
|
2007-12-21 20:42:46 +00:00
|
|
|
&& type_ != MacroTypeDef);
|
2007-11-01 11:13:07 +00:00
|
|
|
break;
|
2007-12-23 00:49:18 +00:00
|
|
|
|
2007-12-23 00:47:37 +00:00
|
|
|
case LFUN_IN_MATHMACROTEMPLATE:
|
2008-05-29 15:14:00 +00:00
|
|
|
flag.setEnabled(true);
|
2007-12-23 00:47:37 +00:00
|
|
|
break;
|
2007-11-01 11:13:07 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
2004-04-13 06:27:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
void MathMacroTemplate::read(Lexer & lex)
|
2004-04-13 06:27:29 +00:00
|
|
|
{
|
2009-11-08 11:45:46 +00:00
|
|
|
MathData ar(buffer_);
|
2009-11-08 18:47:33 +00:00
|
|
|
mathed_parse_cell(ar, lex.getStream(), Parse::TRACKMACRO);
|
2004-04-13 06:27:29 +00:00
|
|
|
if (ar.size() != 1 || !ar[0]->asMacroTemplate()) {
|
2006-10-22 14:37:32 +00:00
|
|
|
lyxerr << "Cannot read macro from '" << ar << "'" << endl;
|
|
|
|
lyxerr << "Read: " << to_utf8(asString(ar)) << endl;
|
2004-04-13 06:27:29 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
operator=( *(ar[0]->asMacroTemplate()) );
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:25:51 +00:00
|
|
|
updateLook();
|
2004-04-13 06:27:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
void MathMacroTemplate::write(ostream & os) const
|
2004-04-13 06:27:29 +00:00
|
|
|
{
|
2006-10-21 00:16:43 +00:00
|
|
|
odocstringstream oss;
|
2009-08-07 05:25:22 +00:00
|
|
|
WriteStream wi(oss, false, false, WriteStream::wsDefault);
|
2006-10-19 16:51:30 +00:00
|
|
|
oss << "FormulaMacro\n";
|
2004-04-13 06:27:29 +00:00
|
|
|
write(wi);
|
2006-10-21 00:16:43 +00:00
|
|
|
os << to_utf8(oss.str());
|
2001-02-13 17:08:51 +00:00
|
|
|
}
|
2001-11-08 12:06:56 +00:00
|
|
|
|
|
|
|
|
2001-11-09 08:35:57 +00:00
|
|
|
void MathMacroTemplate::write(WriteStream & os) const
|
2001-11-08 12:06:56 +00:00
|
|
|
{
|
2007-12-21 20:42:46 +00:00
|
|
|
write(os, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-14 21:52:57 +00:00
|
|
|
void MathMacroTemplate::write(WriteStream & os, bool overwriteRedefinition) const
|
2007-12-21 20:42:46 +00:00
|
|
|
{
|
2008-03-10 12:49:02 +00:00
|
|
|
if (os.latex()) {
|
|
|
|
if (optionals_ > 0) {
|
|
|
|
// macros with optionals use the xargs package, e.g.:
|
|
|
|
// \newcommandx{\foo}[2][usedefault, addprefix=\global,1=default]{#1,#2}
|
2008-10-21 13:04:22 +00:00
|
|
|
// \long is implicit by xargs
|
2008-03-10 12:49:02 +00:00
|
|
|
if (redefinition_ && !overwriteRedefinition)
|
|
|
|
os << "\\renewcommandx";
|
|
|
|
else
|
|
|
|
os << "\\newcommandx";
|
|
|
|
|
2008-06-19 09:17:57 +00:00
|
|
|
os << "\\" << name()
|
2008-03-10 12:49:02 +00:00
|
|
|
<< "[" << numargs_ << "]"
|
|
|
|
<< "[usedefault, addprefix=\\global";
|
|
|
|
for (int i = 0; i < optionals_; ++i) {
|
|
|
|
docstring optValue = asString(cell(optIdx(i)));
|
|
|
|
if (optValue.find(']') != docstring::npos
|
2008-03-10 12:49:50 +00:00
|
|
|
|| optValue.find(',') != docstring::npos)
|
2008-03-10 12:49:02 +00:00
|
|
|
os << ", " << i + 1 << "="
|
|
|
|
<< "{" << cell(optIdx(i)) << "}";
|
|
|
|
else
|
|
|
|
os << ", " << i + 1 << "="
|
|
|
|
<< cell(optIdx(i));
|
|
|
|
}
|
|
|
|
os << "]";
|
|
|
|
} else {
|
2008-10-21 15:44:15 +00:00
|
|
|
// Macros without optionals use standard _global_ \def macros:
|
|
|
|
// \global\def\long\foo#1#2{#1,#2}
|
|
|
|
// We use the \long prefix as this is the equivalent to \newcommand.
|
|
|
|
// We cannot use \newcommand directly because \global does not work with it.
|
2008-10-21 13:04:22 +00:00
|
|
|
os << "\\global\\long\\def\\" << name();
|
2008-03-10 12:49:02 +00:00
|
|
|
docstring param = from_ascii("#0");
|
|
|
|
for (int i = 1; i <= numargs_; ++i) {
|
|
|
|
param[1] = '0' + i;
|
|
|
|
os << param;
|
|
|
|
}
|
|
|
|
}
|
2008-03-10 12:48:46 +00:00
|
|
|
} else {
|
2008-03-10 12:49:02 +00:00
|
|
|
// in LyX output we use some pseudo syntax which is implementation
|
|
|
|
// independent, e.g.
|
2008-09-06 15:10:10 +00:00
|
|
|
// \newcommand{\foo}[2][default]{#1,#2}
|
2008-01-14 21:52:57 +00:00
|
|
|
if (redefinition_ && !overwriteRedefinition)
|
2007-12-21 20:42:46 +00:00
|
|
|
os << "\\renewcommand";
|
|
|
|
else
|
|
|
|
os << "\\newcommand";
|
2008-06-19 09:17:57 +00:00
|
|
|
os << "{\\" << name() << '}';
|
2008-03-10 12:49:02 +00:00
|
|
|
if (numargs_ > 0)
|
|
|
|
os << '[' << numargs_ << ']';
|
2007-12-23 16:31:37 +00:00
|
|
|
|
2008-03-10 12:48:46 +00:00
|
|
|
for (int i = 0; i < optionals_; ++i) {
|
|
|
|
docstring optValue = asString(cell(optIdx(i)));
|
|
|
|
if (optValue.find(']') != docstring::npos)
|
|
|
|
os << "[{" << cell(optIdx(i)) << "}]";
|
|
|
|
else
|
|
|
|
os << "[" << cell(optIdx(i)) << "]";
|
|
|
|
}
|
2003-07-04 15:55:18 +00:00
|
|
|
}
|
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
os << "{" << cell(defIdx()) << "}";
|
2003-07-04 15:55:18 +00:00
|
|
|
|
|
|
|
if (os.latex()) {
|
|
|
|
// writing .tex. done.
|
|
|
|
os << "\n";
|
|
|
|
} else {
|
|
|
|
// writing .lyx, write special .tex export only if necessary
|
2007-11-01 11:13:07 +00:00
|
|
|
if (!cell(displayIdx()).empty())
|
|
|
|
os << "\n{" << cell(displayIdx()) << '}';
|
2002-03-25 12:11:25 +00:00
|
|
|
}
|
2007-12-23 16:33:15 +00:00
|
|
|
}
|
2004-04-13 06:27:29 +00:00
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int MathMacroTemplate::plaintext(odocstream & os,
|
2007-05-28 22:27:45 +00:00
|
|
|
OutputParams const &) const
|
2007-02-25 09:27:11 +00:00
|
|
|
{
|
2008-02-27 20:43:16 +00:00
|
|
|
static docstring const str = '[' + buffer().B_("math macro") + ']';
|
2007-02-25 09:27:11 +00:00
|
|
|
|
|
|
|
os << str;
|
|
|
|
return str.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
bool MathMacroTemplate::validName() const
|
|
|
|
{
|
|
|
|
docstring n = name();
|
|
|
|
|
|
|
|
// empty name?
|
|
|
|
if (n.size() == 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// converting back and force doesn't swallow anything?
|
|
|
|
/*MathData ma;
|
|
|
|
asArray(n, ma);
|
|
|
|
if (asString(ma) != n)
|
|
|
|
return false;*/
|
|
|
|
|
|
|
|
// valid characters?
|
|
|
|
for (size_t i = 0; i < n.size(); ++i) {
|
2008-02-27 10:43:29 +00:00
|
|
|
if (!(n[i] >= 'a' && n[i] <= 'z')
|
|
|
|
&& !(n[i] >= 'A' && n[i] <= 'Z')
|
|
|
|
&& n[i] != '*')
|
2007-11-01 11:13:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool MathMacroTemplate::validMacro() const
|
|
|
|
{
|
|
|
|
return validName();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-21 20:42:46 +00:00
|
|
|
bool MathMacroTemplate::fixNameAndCheckIfValid()
|
|
|
|
{
|
|
|
|
// check all the characters/insets in the name cell
|
|
|
|
size_t i = 0;
|
|
|
|
MathData & data = cell(0);
|
|
|
|
while (i < data.size()) {
|
|
|
|
InsetMathChar const * cinset = data[i]->asCharInset();
|
|
|
|
if (cinset) {
|
|
|
|
// valid character in [a-zA-Z]?
|
|
|
|
char_type c = cinset->getChar();
|
|
|
|
if ((c >= 'a' && c <= 'z')
|
|
|
|
|| (c >= 'A' && c <= 'Z')) {
|
|
|
|
++i;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-21 20:42:46 +00:00
|
|
|
// throw cell away
|
|
|
|
data.erase(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
// now it should be valid if anything in the name survived
|
|
|
|
return data.size() > 0;
|
|
|
|
}
|
|
|
|
|
2007-12-23 16:32:00 +00:00
|
|
|
|
|
|
|
void MathMacroTemplate::validate(LaTeXFeatures & features) const
|
|
|
|
{
|
2008-03-10 12:54:00 +00:00
|
|
|
// we need global optional macro arguments. They are not available
|
|
|
|
// with \def, and \newcommand does not support global macros. So we
|
|
|
|
// are bound to xargs also for the single-optional-parameter case.
|
|
|
|
if (optionals_ > 0)
|
2008-03-10 12:48:46 +00:00
|
|
|
features.require("xargs");
|
2007-12-23 16:32:00 +00:00
|
|
|
}
|
2007-12-21 20:42:46 +00:00
|
|
|
|
|
|
|
void MathMacroTemplate::getDefaults(vector<docstring> & defaults) const
|
2004-04-13 06:27:29 +00:00
|
|
|
{
|
2007-12-21 20:42:46 +00:00
|
|
|
defaults.resize(numargs_);
|
2007-11-01 11:13:07 +00:00
|
|
|
for (int i = 0; i < optionals_; ++i)
|
2007-12-23 01:28:51 +00:00
|
|
|
defaults[i] = asString(cell(optIdx(i)));
|
2007-12-21 20:42:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
docstring MathMacroTemplate::definition() const
|
|
|
|
{
|
|
|
|
return asString(cell(defIdx()));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
docstring MathMacroTemplate::displayDefinition() const
|
|
|
|
{
|
|
|
|
return asString(cell(displayIdx()));
|
2004-04-13 06:27:29 +00:00
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
2007-12-21 20:42:46 +00:00
|
|
|
size_t MathMacroTemplate::numArgs() const
|
|
|
|
{
|
|
|
|
return numargs_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
size_t MathMacroTemplate::numOptionals() const
|
|
|
|
{
|
|
|
|
return optionals_;
|
|
|
|
}
|
|
|
|
|
2007-12-23 01:28:51 +00:00
|
|
|
|
2007-12-23 01:24:34 +00:00
|
|
|
void MathMacroTemplate::infoize(odocstream & os) const
|
|
|
|
{
|
|
|
|
os << "Math Macro: \\" << name();
|
|
|
|
}
|
|
|
|
|
2008-03-10 12:51:14 +00:00
|
|
|
|
|
|
|
docstring MathMacroTemplate::contextMenu(BufferView const &, int, int) const
|
|
|
|
{
|
|
|
|
return from_ascii("context-math-macro-definition");
|
|
|
|
}
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
} // namespace lyx
|