1999-09-27 18:44:28 +00:00
|
|
|
/*
|
|
|
|
* File: math_inset.C
|
|
|
|
* Purpose: Implementation of insets for mathed
|
2002-03-21 17:42:56 +00:00
|
|
|
* Author: Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
|
1999-09-27 18:44:28 +00:00
|
|
|
* Created: January 1996
|
2002-03-21 17:42:56 +00:00
|
|
|
* Description:
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
|
|
|
* Dependencies: Xlib, XForms
|
|
|
|
*
|
2000-03-09 03:36:48 +00:00
|
|
|
* Copyright: 1996, 1997 Alejandro Aguilar Sierra
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
|
|
|
* Version: 0.8beta.
|
|
|
|
*
|
|
|
|
* You are free to use and modify this code under the terms of
|
|
|
|
* the GNU General Public Licence version 2 or later.
|
|
|
|
*/
|
|
|
|
|
2002-09-11 09:14:57 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "math_inset.h"
|
2001-09-11 10:58:17 +00:00
|
|
|
#include "math_scriptinset.h"
|
2001-11-08 12:06:56 +00:00
|
|
|
#include "math_mathmlstream.h"
|
2002-07-08 06:39:40 +00:00
|
|
|
#include "math_cursor.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "debug.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2002-07-08 06:39:40 +00:00
|
|
|
#include "frontends/LyXView.h"
|
|
|
|
#include "frontends/Dialogs.h"
|
|
|
|
#include "BufferView.h"
|
|
|
|
#include "formulabase.h"
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
using std::ostream;
|
2003-08-02 11:30:30 +00:00
|
|
|
using std::endl;
|
2002-02-16 15:59:55 +00:00
|
|
|
|
|
|
|
|
2003-03-11 09:25:47 +00:00
|
|
|
BufferView * MathInset::view() const
|
|
|
|
{
|
2003-06-02 10:03:27 +00:00
|
|
|
return mathcursor ? mathcursor->formula()->view() : 0;
|
2003-03-11 09:25:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
MathInset::size_type MathInset::nargs() const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2001-08-03 17:10:22 +00:00
|
|
|
return 0;
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-02 14:29:42 +00:00
|
|
|
MathArray dummyCell;
|
2001-08-03 09:54:48 +00:00
|
|
|
|
2002-08-02 14:29:42 +00:00
|
|
|
MathArray & MathInset::cell(idx_type)
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2003-08-02 11:30:30 +00:00
|
|
|
lyxerr << "I don't have a cell 1" << endl;
|
2001-08-03 17:10:22 +00:00
|
|
|
return dummyCell;
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-02 14:29:42 +00:00
|
|
|
MathArray const & MathInset::cell(idx_type) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2003-08-02 11:30:30 +00:00
|
|
|
lyxerr << "I don't have a cell 2" << endl;
|
2001-08-03 17:10:22 +00:00
|
|
|
return dummyCell;
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
2001-08-03 09:54:48 +00:00
|
|
|
|
2001-12-15 16:13:11 +00:00
|
|
|
MathInset::idx_type MathInset::index(row_type row, col_type col) const
|
|
|
|
{
|
|
|
|
if (row != 0)
|
2003-08-02 11:30:30 +00:00
|
|
|
lyxerr << "illegal row: " << row << endl;
|
2001-12-15 16:13:11 +00:00
|
|
|
if (col != 0)
|
2003-08-02 11:30:30 +00:00
|
|
|
lyxerr << "illegal col: " << col << endl;
|
2001-12-15 16:13:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-09-11 15:46:51 +00:00
|
|
|
void MathInset::substitute(MathMacro const &)
|
|
|
|
{}
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-08-03 09:54:48 +00:00
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathInset::idxNext(idx_type &, pos_type &) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2001-08-03 17:10:22 +00:00
|
|
|
return false;
|
2001-02-15 12:22:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathInset::idxRight(idx_type &, pos_type &) const
|
2001-07-06 12:09:32 +00:00
|
|
|
{
|
2001-08-03 17:10:22 +00:00
|
|
|
return false;
|
2001-07-06 12:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathInset::idxPrev(idx_type &, pos_type &) const
|
2001-02-15 12:22:01 +00:00
|
|
|
{
|
2001-08-03 17:10:22 +00:00
|
|
|
return false;
|
2001-02-15 12:22:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathInset::idxLeft(idx_type &, pos_type &) const
|
2001-07-06 12:09:32 +00:00
|
|
|
{
|
2001-08-03 17:10:22 +00:00
|
|
|
return false;
|
2001-07-06 12:09:32 +00:00
|
|
|
}
|
|
|
|
|
2001-08-03 09:54:48 +00:00
|
|
|
|
2002-07-30 13:56:02 +00:00
|
|
|
bool MathInset::idxUpDown(idx_type &, pos_type &, bool, int) const
|
2001-02-15 12:22:01 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
return false;
|
2001-02-15 12:22:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-14 06:17:19 +00:00
|
|
|
bool MathInset::idxUpDown2(idx_type &, pos_type &, bool, int) const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathInset::idxFirst(idx_type &, pos_type &) const
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2001-08-03 17:10:22 +00:00
|
|
|
return false;
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
2001-08-03 09:54:48 +00:00
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathInset::idxLast(idx_type &, pos_type &) const
|
2001-02-15 12:22:01 +00:00
|
|
|
{
|
2001-08-03 17:10:22 +00:00
|
|
|
return false;
|
2001-02-15 12:22:01 +00:00
|
|
|
}
|
|
|
|
|
2001-03-01 19:57:01 +00:00
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathInset::idxHome(idx_type &, pos_type &) const
|
2001-03-01 19:57:01 +00:00
|
|
|
{
|
2001-08-03 17:10:22 +00:00
|
|
|
return false;
|
2001-03-01 19:57:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-26 16:52:34 +00:00
|
|
|
bool MathInset::idxEnd(idx_type &, pos_type &) const
|
2001-03-01 19:57:01 +00:00
|
|
|
{
|
2001-08-03 17:10:22 +00:00
|
|
|
return false;
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-16 18:22:45 +00:00
|
|
|
void MathInset::getPos(idx_type, pos_type, int & x, int & y) const
|
|
|
|
{
|
2003-08-02 11:30:30 +00:00
|
|
|
lyxerr << "MathInset::getPos() called directly!" << endl;
|
2002-07-16 18:22:45 +00:00
|
|
|
x = y = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
void MathInset::dump() const
|
|
|
|
{
|
2003-08-02 11:30:30 +00:00
|
|
|
lyxerr << "---------------------------------------------" << endl;
|
2002-03-25 12:11:25 +00:00
|
|
|
WriteStream wi(lyxerr, false, true);
|
2001-10-19 11:25:48 +00:00
|
|
|
write(wi);
|
2003-08-02 11:30:30 +00:00
|
|
|
lyxerr << "\n---------------------------------------------" << endl;
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-02 13:35:05 +00:00
|
|
|
bool MathInset::idxBetween(idx_type idx, idx_type from, idx_type to) const
|
2001-07-16 15:53:25 +00:00
|
|
|
{
|
2002-08-02 13:35:05 +00:00
|
|
|
return from <= idx && idx <= to;
|
2001-07-16 15:53:25 +00:00
|
|
|
}
|
2001-08-03 09:54:48 +00:00
|
|
|
|
|
|
|
|
2003-03-21 14:20:48 +00:00
|
|
|
void MathInset::drawSelection(PainterInfo &,
|
2002-07-26 17:23:44 +00:00
|
|
|
idx_type, pos_type, idx_type, pos_type) const
|
|
|
|
{
|
2003-08-02 11:30:30 +00:00
|
|
|
lyxerr << "MathInset::drawSelection() called directly!" << endl;
|
2002-07-26 17:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-05-28 13:22:36 +00:00
|
|
|
void MathInset::metricsT(TextMetricsInfo const &, Dimension &) const
|
2002-03-18 11:45:53 +00:00
|
|
|
{
|
2002-04-08 08:12:09 +00:00
|
|
|
#ifdef WITH_WARNINGS
|
2003-08-02 11:30:30 +00:00
|
|
|
lyxerr << "MathInset::metricsT(Text) called directly!" << endl;
|
2002-04-08 08:12:09 +00:00
|
|
|
#endif
|
2002-03-18 11:45:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-21 06:57:13 +00:00
|
|
|
void MathInset::drawT(TextPainter &, int, int) const
|
2002-03-18 11:45:53 +00:00
|
|
|
{
|
2002-04-08 08:12:09 +00:00
|
|
|
#ifdef WITH_WARNINGS
|
2003-08-02 11:30:30 +00:00
|
|
|
lyxerr << "MathInset::drawT(Text) called directly!" << endl;
|
2002-04-08 08:12:09 +00:00
|
|
|
#endif
|
2002-03-18 11:45:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-08-05 07:09:11 +00:00
|
|
|
void MathInset::write(WriteStream & os) const
|
|
|
|
{
|
2002-08-22 10:04:11 +00:00
|
|
|
os << '\\' << name().c_str();
|
|
|
|
os.pendingSpace(true);
|
2002-08-05 07:09:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathInset::normalize(NormalStream & os) const
|
2001-08-06 17:20:26 +00:00
|
|
|
{
|
2002-08-05 07:09:11 +00:00
|
|
|
os << '[' << name().c_str() << "] ";
|
2001-08-06 17:20:26 +00:00
|
|
|
}
|
2001-11-07 08:51:35 +00:00
|
|
|
|
|
|
|
|
2003-02-14 14:30:09 +00:00
|
|
|
void MathInset::octave(OctaveStream & os) const
|
2001-11-07 08:51:35 +00:00
|
|
|
{
|
2001-12-03 16:24:50 +00:00
|
|
|
NormalStream ns(os.os());
|
2001-11-09 08:35:57 +00:00
|
|
|
normalize(ns);
|
2001-11-07 08:51:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-14 14:30:09 +00:00
|
|
|
void MathInset::maple(MapleStream & os) const
|
2001-11-07 08:51:35 +00:00
|
|
|
{
|
2001-12-03 16:24:50 +00:00
|
|
|
NormalStream ns(os.os());
|
2001-11-09 08:35:57 +00:00
|
|
|
normalize(ns);
|
2001-11-07 08:51:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-14 14:30:09 +00:00
|
|
|
void MathInset::maxima(MaximaStream & os) const
|
2002-10-28 17:15:19 +00:00
|
|
|
{
|
|
|
|
MapleStream ns(os.os());
|
2003-02-14 14:30:09 +00:00
|
|
|
maple(ns);
|
2002-10-28 17:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-14 14:30:09 +00:00
|
|
|
void MathInset::mathematica(MathematicaStream & os) const
|
2002-07-01 11:17:14 +00:00
|
|
|
{
|
|
|
|
NormalStream ns(os.os());
|
|
|
|
normalize(ns);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-07 17:30:26 +00:00
|
|
|
void MathInset::mathmlize(MathMLStream & os) const
|
2001-11-07 08:51:35 +00:00
|
|
|
{
|
2001-12-03 16:24:50 +00:00
|
|
|
NormalStream ns(os.os());
|
2001-11-09 08:35:57 +00:00
|
|
|
normalize(ns);
|
2001-11-07 08:51:35 +00:00
|
|
|
}
|
2002-06-24 15:37:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
int MathInset::ascii(std::ostream &, int) const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int MathInset::linuxdoc(std::ostream &) const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int MathInset::docbook(std::ostream &, bool) const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-08 06:39:40 +00:00
|
|
|
string const & MathInset::getType() const
|
|
|
|
{
|
2003-04-28 08:44:56 +00:00
|
|
|
static string const t("none");
|
2002-07-08 06:39:40 +00:00
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-01 15:53:46 +00:00
|
|
|
string MathInset::name() const
|
|
|
|
{
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-09-11 09:14:57 +00:00
|
|
|
ostream & operator<<(ostream & os, MathAtom const & at)
|
|
|
|
{
|
|
|
|
WriteStream wi(os, false, false);
|
|
|
|
at->write(wi);
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
2003-04-28 08:44:56 +00:00
|
|
|
|
|
|
|
string MathInset::fileInsetLabel() const
|
|
|
|
{
|
|
|
|
return "Formula";
|
|
|
|
}
|