1999-09-27 18:44:28 +00:00
|
|
|
/*
|
2001-02-14 17:58:40 +00:00
|
|
|
* File: math_cursor.C
|
|
|
|
* Purpose: Interaction for mathed
|
|
|
|
* Author: Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
|
|
|
|
* Created: January 1996
|
|
|
|
* Description: Math interaction for a WYSIWYG math editor.
|
|
|
|
*
|
|
|
|
* Dependencies: Xlib, XForms
|
|
|
|
*
|
|
|
|
* Copyright: 1996, Alejandro Aguilar Sierra
|
|
|
|
*
|
|
|
|
* Version: 0.8beta, Mathed & Lyx project.
|
|
|
|
*
|
|
|
|
* You are free to use and modify this code under the terms of
|
|
|
|
* the GNU General Public Licence version 2 or later.
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
2001-02-14 17:58:40 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
#include <config.h>
|
|
|
|
#include FORMS_H_LOCATION
|
|
|
|
#include "math_inset.h"
|
|
|
|
#include "math_parser.h"
|
|
|
|
#include "math_cursor.h"
|
|
|
|
#include "math_macro.h"
|
2001-02-13 17:08:51 +00:00
|
|
|
#include "math_macrotable.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "math_root.h"
|
1999-10-02 16:21:10 +00:00
|
|
|
#include "support/lstrings.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
#include "debug.h"
|
2000-02-10 17:53:36 +00:00
|
|
|
#include "LColor.h"
|
|
|
|
#include "Painter.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
#include "math_matrixinset.h"
|
|
|
|
#include "math_rowst.h"
|
|
|
|
#include "math_spaceinset.h"
|
|
|
|
#include "math_funcinset.h"
|
|
|
|
#include "math_bigopinset.h"
|
|
|
|
#include "math_fracinset.h"
|
|
|
|
#include "math_decorationinset.h"
|
|
|
|
#include "math_dotsinset.h"
|
|
|
|
#include "math_accentinset.h"
|
2001-03-01 14:07:43 +00:00
|
|
|
#include "math_macrotemplate.h"
|
2001-02-13 19:10:18 +00:00
|
|
|
#include "mathed/support.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-02-20 14:00:34 +00:00
|
|
|
static MathedArray selarray;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::endl;
|
|
|
|
|
2001-02-14 17:58:40 +00:00
|
|
|
// This was very smaller, I'll change it later
|
2000-09-14 17:53:12 +00:00
|
|
|
static inline
|
2000-03-07 01:14:37 +00:00
|
|
|
bool IsMacro(short tok, int id)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
return tok != LM_TK_STACK &&
|
|
|
|
tok != LM_TK_FRAC &&
|
|
|
|
tok != LM_TK_SQRT &&
|
|
|
|
tok != LM_TK_WIDE &&
|
|
|
|
tok != LM_TK_SPACE &&
|
|
|
|
tok != LM_TK_DOTS &&
|
|
|
|
tok != LM_TK_FUNCLIM &&
|
|
|
|
tok != LM_TK_BIGSYM &&
|
|
|
|
tok != LM_TK_ACCENT &&
|
|
|
|
!(tok == LM_TK_SYM && id < 255);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
static int const MAX_STACK_ITEMS = 32;
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
struct MathStackXIter {
|
2001-03-09 08:45:10 +00:00
|
|
|
std::vector<MathedXIter> item;
|
|
|
|
int i;
|
2001-02-14 17:58:40 +00:00
|
|
|
|
2001-03-09 08:45:10 +00:00
|
|
|
MathStackXIter(int n = MAX_STACK_ITEMS)
|
|
|
|
: item(n), i(0) {
|
2001-02-14 17:58:40 +00:00
|
|
|
}
|
|
|
|
|
2001-03-06 11:13:14 +00:00
|
|
|
MathedXIter * push() {
|
|
|
|
return &item[i++];
|
2001-02-14 17:58:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MathedXIter * pop() {
|
2001-03-15 18:22:33 +00:00
|
|
|
--i;
|
|
|
|
return &item[i - 1];
|
2001-02-14 17:58:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MathedXIter * Item(int idx) {
|
2001-03-15 10:10:01 +00:00
|
|
|
if (idx + 1 > i)
|
2001-03-16 08:29:10 +00:00
|
|
|
lyxerr << "Wrong index: " << idx << " i: " << i << endl;
|
2001-03-15 10:10:01 +00:00
|
|
|
return &item[i - idx - 1];
|
2001-02-14 17:58:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Reset() {
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Full() {
|
|
|
|
return i >= MAX_STACK_ITEMS;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Empty() {
|
|
|
|
return i <= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Level() { return i; }
|
|
|
|
|
2001-03-09 08:45:10 +00:00
|
|
|
} mathstk, selstk;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***---------------- Mathed Cursor ---------------------------***/
|
2001-02-14 17:58:40 +00:00
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
MathedCursor::MathedCursor(MathParInset * p) // : par(p)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
accent = 0;
|
|
|
|
anchor = 0;
|
|
|
|
lastcode = LM_TC_MIN;
|
|
|
|
SetPar(p);
|
|
|
|
if (!MathMacroTable::built)
|
|
|
|
MathMacroTable::mathMTable.builtinMacros();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
void MathedCursor::SetPar(MathParInset * p)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
macro_mode = false;
|
|
|
|
selection = false; // not SelClear() ?
|
|
|
|
mathstk.Reset();
|
2001-03-06 11:13:14 +00:00
|
|
|
cursor = mathstk.push();
|
2001-02-14 17:58:40 +00:00
|
|
|
par = p;
|
|
|
|
cursor->SetData(par);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
void MathedCursor::draw(Painter & pain, int x, int y)
|
|
|
|
{
|
|
|
|
// lyxerr << "Cursor[" << x << " " << y << "] ";
|
|
|
|
//win = pm; // win = (mathedCanvas) ? mathedCanvas: pm;
|
2001-02-14 17:58:40 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
par->Metrics();
|
|
|
|
int w = par->Width() + 2;
|
|
|
|
int a = par->Ascent() + 1;
|
|
|
|
int h = par->Height() + 1;
|
2001-02-14 17:58:40 +00:00
|
|
|
|
|
|
|
if (par->GetType() > LM_OT_PAR) {
|
|
|
|
a += 4;
|
|
|
|
h += 8;
|
|
|
|
}
|
|
|
|
|
2000-02-11 16:56:34 +00:00
|
|
|
pain.rectangle(x - 1, y - a, w, h, LColor::mathframe);
|
2001-02-14 17:58:40 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
par->draw(pain, x, y);
|
|
|
|
cursor->Adjust();
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
void MathedCursor::Redraw(Painter & pain)
|
2001-02-14 17:58:40 +00:00
|
|
|
{
|
2000-02-10 17:53:36 +00:00
|
|
|
lyxerr[Debug::MATHED] << "Mathed: Redrawing!" << endl;
|
|
|
|
par->Metrics();
|
2001-02-14 17:58:40 +00:00
|
|
|
int w = par->Width();
|
|
|
|
int h = par->Height();
|
2000-09-29 18:44:07 +00:00
|
|
|
int x;
|
|
|
|
int y;
|
2000-02-10 17:53:36 +00:00
|
|
|
par->GetXY(x, y);
|
|
|
|
//mathed_set_font(LM_TC_VAR, 1);
|
|
|
|
pain.fillRectangle(x, y - par->Ascent(),
|
2001-02-14 17:58:40 +00:00
|
|
|
x + w, y - par->Ascent() + h,
|
|
|
|
LColor::mathbg);
|
2000-02-10 17:53:36 +00:00
|
|
|
par->draw(pain, x, y);
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
bool MathedCursor::Left(bool sel)
|
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
if (macro_mode) {
|
2001-02-14 19:35:25 +00:00
|
|
|
// was MacroModeBack()
|
|
|
|
if (!imacro->GetName().empty()) {
|
|
|
|
imacro->SetName(imacro->GetName()
|
|
|
|
.substr(0, imacro->GetName()
|
|
|
|
.length() - 1));
|
|
|
|
imacro->Metrics();
|
|
|
|
} else
|
|
|
|
MacroModeClose();
|
2001-02-14 17:58:40 +00:00
|
|
|
return true;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2001-02-14 17:58:40 +00:00
|
|
|
|
|
|
|
clearLastCode();
|
|
|
|
|
|
|
|
if (sel && !selection)
|
|
|
|
SelStart();
|
|
|
|
|
|
|
|
if (!sel && selection)
|
|
|
|
SelClear();
|
|
|
|
|
|
|
|
bool result = cursor->Prev();
|
|
|
|
|
|
|
|
if (!result && !mathstk.Empty()) {
|
|
|
|
cursor = mathstk.pop();
|
|
|
|
cursor->Adjust();
|
|
|
|
result = true;
|
|
|
|
if (selection)
|
|
|
|
SelClear();
|
2001-02-14 19:35:25 +00:00
|
|
|
} else if (result && cursor->IsActive()) {
|
2001-02-14 17:58:40 +00:00
|
|
|
if (cursor->IsScript()) {
|
|
|
|
cursor->Prev();
|
|
|
|
if (!cursor->IsScript())
|
|
|
|
cursor->Next();
|
|
|
|
cursor->Adjust();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!selection) {
|
|
|
|
MathParInset * p = cursor->GetActiveInset();
|
|
|
|
if (!p)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
p->setArgumentIdx(p->getMaxArgumentIdx());
|
2001-03-06 11:13:14 +00:00
|
|
|
cursor = mathstk.push();
|
2001-02-14 17:58:40 +00:00
|
|
|
cursor->SetData(p);
|
|
|
|
cursor->GoLast();
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2001-02-14 17:58:40 +00:00
|
|
|
return result;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// Leave the inset
|
|
|
|
bool MathedCursor::Pop()
|
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
if (!mathstk.Empty()) {
|
|
|
|
cursor = mathstk.pop();
|
|
|
|
cursor->Next();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
2001-02-14 17:58:40 +00:00
|
|
|
// Go to the inset
|
1999-09-27 18:44:28 +00:00
|
|
|
bool MathedCursor::Push()
|
2001-02-14 17:58:40 +00:00
|
|
|
{
|
|
|
|
if (cursor->IsActive()) {
|
|
|
|
MathParInset * p = cursor->GetActiveInset();
|
|
|
|
if (!p)
|
|
|
|
return false;
|
2001-03-06 11:13:14 +00:00
|
|
|
cursor = mathstk.push();
|
2001-02-14 17:58:40 +00:00
|
|
|
cursor->SetData(p);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
bool MathedCursor::Right(bool sel)
|
2001-02-14 17:58:40 +00:00
|
|
|
{
|
|
|
|
if (macro_mode) {
|
|
|
|
MacroModeClose();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
clearLastCode();
|
|
|
|
|
|
|
|
if (sel && !selection)
|
|
|
|
SelStart();
|
|
|
|
|
|
|
|
if (!sel && selection)
|
|
|
|
SelClear();
|
|
|
|
|
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
if (cursor->IsActive()) {
|
|
|
|
if (cursor->IsScript()) {
|
|
|
|
cursor->Next();
|
|
|
|
// A script may be followed by another script
|
|
|
|
if (cursor->IsScript())
|
|
|
|
cursor->Next();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!selection) {
|
|
|
|
MathParInset *p = cursor->GetActiveInset();
|
|
|
|
if (!p) {
|
|
|
|
lyxerr << "Math error: Inset expected." << endl;
|
|
|
|
return cursor->Next();
|
|
|
|
}
|
|
|
|
p->setArgumentIdx(0);
|
2001-03-06 11:13:14 +00:00
|
|
|
cursor = mathstk.push();
|
2001-02-14 17:58:40 +00:00
|
|
|
cursor->SetData(p);
|
|
|
|
result = true;
|
|
|
|
} else
|
|
|
|
result = cursor->Next();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (cursor->GetChar()!= LM_TC_CR)
|
|
|
|
result = cursor->Next();
|
|
|
|
if (!result && !mathstk.Empty()) {
|
|
|
|
cursor = mathstk.pop();
|
|
|
|
cursor->Next();
|
|
|
|
cursor->Adjust();
|
|
|
|
result = true;
|
|
|
|
if (selection)
|
|
|
|
SelClear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathedCursor::SetPos(int x, int y)
|
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
int xp = 0;
|
|
|
|
|
|
|
|
if (macro_mode)
|
|
|
|
MacroModeClose();
|
|
|
|
|
|
|
|
lastcode = LM_TC_MIN;
|
|
|
|
mathstk.Reset();
|
2001-03-06 11:13:14 +00:00
|
|
|
cursor = mathstk.push();
|
2001-02-14 17:58:40 +00:00
|
|
|
cursor->SetData(par);
|
|
|
|
cursor->fitCoord(x, y);
|
|
|
|
|
|
|
|
while (cursor->GetX()<x && cursor->OK()) {
|
|
|
|
if (cursor->IsActive()) {
|
|
|
|
MathParInset * p = cursor->GetActiveInset();
|
|
|
|
if (p->Inside(x, y)) {
|
|
|
|
p->SetFocus(x, y);
|
2001-03-06 11:13:14 +00:00
|
|
|
cursor = mathstk.push();
|
2001-02-14 17:58:40 +00:00
|
|
|
cursor->SetData(p);
|
|
|
|
cursor->fitCoord(x, y);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xp = cursor->GetX();
|
|
|
|
cursor->ipush();
|
|
|
|
if (!cursor->Next() && !Pop())
|
|
|
|
break;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2001-03-09 08:45:10 +00:00
|
|
|
if (x - xp < cursor->GetX() - x)
|
|
|
|
cursor->ipop();
|
2001-02-14 17:58:40 +00:00
|
|
|
cursor->Adjust();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2001-02-14 17:58:40 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
void MathedCursor::Home()
|
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
if (macro_mode)
|
|
|
|
MacroModeClose();
|
|
|
|
clearLastCode();
|
|
|
|
mathstk.Reset();
|
2001-03-06 11:13:14 +00:00
|
|
|
cursor = mathstk.push();
|
2001-02-14 17:58:40 +00:00
|
|
|
cursor->GoBegin();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void MathedCursor::End()
|
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
if (macro_mode)
|
|
|
|
MacroModeClose();
|
|
|
|
clearLastCode();
|
|
|
|
mathstk.Reset();
|
2001-03-06 11:13:14 +00:00
|
|
|
cursor = mathstk.push();
|
2001-02-14 17:58:40 +00:00
|
|
|
cursor->GoLast();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
2001-02-03 21:02:22 +00:00
|
|
|
MathMatrixInset * create_multiline(short int type, int cols)
|
|
|
|
{
|
|
|
|
int columns;
|
|
|
|
string align;
|
|
|
|
if (cols < 1)
|
|
|
|
cols = 1;
|
|
|
|
|
|
|
|
switch (type) {
|
2001-02-14 17:58:40 +00:00
|
|
|
case LM_OT_ALIGN:
|
|
|
|
case LM_OT_ALIGNN:
|
|
|
|
columns = 2*cols;
|
|
|
|
for (int i = 0; i < cols; ++i)
|
2001-02-11 09:58:20 +00:00
|
|
|
align += "Rl";
|
2001-02-14 17:58:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_OT_ALIGNAT:
|
|
|
|
case LM_OT_ALIGNATN:
|
|
|
|
columns = 2*cols;
|
|
|
|
for (int i = 0; i < cols; ++i)
|
2001-02-03 21:02:22 +00:00
|
|
|
align += "rl";
|
2001-02-14 17:58:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_OT_MULTLINE:
|
|
|
|
case LM_OT_MULTLINEN:
|
|
|
|
columns = 1;
|
|
|
|
align = "C";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_OT_MPAR:
|
|
|
|
case LM_OT_MPARN:
|
|
|
|
default:
|
|
|
|
columns = 3;
|
|
|
|
align = "rcl";
|
|
|
|
break;
|
2001-02-03 21:02:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MathMatrixInset * mt = new MathMatrixInset(columns, -1);
|
|
|
|
mt->SetAlign(' ', align);
|
|
|
|
return mt;
|
|
|
|
}
|
|
|
|
|
2001-02-13 19:10:18 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void MathedCursor::Insert(byte c, MathedTextCodes t)
|
2001-02-14 17:58:40 +00:00
|
|
|
{
|
|
|
|
if (selection)
|
|
|
|
SelDel();
|
|
|
|
|
|
|
|
if (t == LM_TC_MIN)
|
|
|
|
t = lastcode;
|
|
|
|
|
|
|
|
if (macro_mode && !(MathIsAlphaFont(t) || t == LM_TC_MIN))
|
|
|
|
MacroModeClose();
|
|
|
|
|
|
|
|
if (t == LM_TC_CR) {
|
2001-02-17 18:52:53 +00:00
|
|
|
MathParInset * p = cursor->getPar();
|
2001-02-14 17:58:40 +00:00
|
|
|
if (p == par && p->GetType()<LM_OT_MPAR && p->GetType()>LM_OT_MIN) {
|
|
|
|
short int type = LM_OT_MPAR;
|
|
|
|
int cols = 1;
|
|
|
|
if (c >= '1' && c <= '9') {
|
|
|
|
type = LM_OT_ALIGN;
|
|
|
|
cols = c - '1' + 1;
|
|
|
|
} else if (c >= 'A' && c <= 'I') {
|
|
|
|
type = LM_OT_ALIGNAT;
|
|
|
|
cols = c - 'A' + 1;
|
|
|
|
} else if (c == 'm')
|
|
|
|
type = LM_OT_MULTLINE;
|
|
|
|
else if (c == 'e')
|
|
|
|
type = LM_OT_MPAR;
|
|
|
|
|
|
|
|
if (p->GetType() == LM_OT_PARN)
|
|
|
|
++type;
|
|
|
|
MathMatrixInset * mt = create_multiline(type, cols);
|
|
|
|
mt->SetStyle(LM_ST_DISPLAY);
|
|
|
|
mt->SetType(type);
|
2001-02-16 09:25:43 +00:00
|
|
|
mt->setData(p->GetData());
|
2001-02-14 17:58:40 +00:00
|
|
|
delete p;
|
|
|
|
par = mt;
|
|
|
|
p = mt;
|
|
|
|
p->Metrics();
|
|
|
|
int pos = cursor->getPos();
|
|
|
|
cursor->SetData(par);
|
|
|
|
cursor->goPosAbs(pos);
|
|
|
|
}
|
|
|
|
if (p && p->Permit(LMPF_ALLOW_CR)) {
|
|
|
|
cursor->addRow();
|
|
|
|
}
|
|
|
|
} else if (t == LM_TC_TAB) {
|
2001-02-17 18:52:53 +00:00
|
|
|
MathParInset * p = cursor->getPar();
|
2001-02-14 17:58:40 +00:00
|
|
|
if (p && p->Permit(LMPF_ALLOW_TAB)) {
|
|
|
|
if (c) {
|
2001-02-17 18:52:53 +00:00
|
|
|
cursor->insert(c, t);
|
2001-02-14 17:58:40 +00:00
|
|
|
cursor->checkTabs();
|
|
|
|
} else
|
|
|
|
cursor->goNextColumn();
|
|
|
|
} else // Navigate between arguments
|
|
|
|
if (p && p->GetType() == LM_OT_MACRO) {
|
|
|
|
if (p->getArgumentIdx() < p->getMaxArgumentIdx()) {
|
|
|
|
p->setArgumentIdx(p->getArgumentIdx() + 1);
|
|
|
|
cursor->SetData(p);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (macro_mode) {
|
|
|
|
if (MathIsAlphaFont(t) || t == LM_TC_MIN) {
|
2001-02-14 19:35:25 +00:00
|
|
|
// was MacroModeInsert(c);
|
|
|
|
imacro->SetName(imacro->GetName() + static_cast<char>(c));
|
2001-02-14 17:58:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (accent) {
|
|
|
|
doAccent(c, t);
|
|
|
|
} else
|
2001-02-17 18:52:53 +00:00
|
|
|
cursor->insert(c, t);
|
2001-02-14 17:58:40 +00:00
|
|
|
|
|
|
|
lastcode = t;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
clearLastCode();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
2001-02-17 18:52:53 +00:00
|
|
|
void MathedCursor::insertInset(MathedInset * p, int t)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
if (macro_mode)
|
|
|
|
MacroModeClose();
|
|
|
|
|
|
|
|
if (selection) {
|
|
|
|
if (MathIsActive(t)) {
|
|
|
|
SelCut();
|
2001-02-20 16:00:22 +00:00
|
|
|
static_cast<MathParInset*>(p)->setData(selarray);
|
2001-02-14 17:58:40 +00:00
|
|
|
} else
|
|
|
|
SelDel();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mathstk.i < MAX_STACK_ITEMS - 1) {
|
|
|
|
if (accent && !MathIsActive(t)) {
|
|
|
|
doAccent(p);
|
|
|
|
} else {
|
2001-02-17 18:52:53 +00:00
|
|
|
cursor->insertInset(p, t);
|
2001-02-14 17:58:40 +00:00
|
|
|
if (MathIsActive(t)) {
|
|
|
|
cursor->Prev();
|
|
|
|
Push();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
lyxerr << "Math error: Full stack." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
2001-02-14 17:58:40 +00:00
|
|
|
void MathedCursor::Delete()
|
|
|
|
{
|
|
|
|
if (macro_mode)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (selection) {
|
|
|
|
SelDel();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cursor->Empty() && !mathstk.Empty())
|
|
|
|
cursor = mathstk.pop();
|
|
|
|
|
|
|
|
// if (cursor->GetChar()!= LM_TC_TAB)
|
|
|
|
cursor->Delete();
|
|
|
|
cursor->checkTabs();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void MathedCursor::DelLine()
|
2001-02-14 17:58:40 +00:00
|
|
|
{
|
|
|
|
if (macro_mode)
|
|
|
|
MacroModeClose();
|
|
|
|
|
|
|
|
if (selection) {
|
|
|
|
SelDel();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-02-17 18:52:53 +00:00
|
|
|
MathParInset * p = cursor->getPar();
|
2001-02-14 17:58:40 +00:00
|
|
|
|
|
|
|
if (p && p->GetType() <= LM_OT_MATRIX && p->GetType() >= LM_OT_MPAR) {
|
|
|
|
cursor->delRow();
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool MathedCursor::Up(bool sel)
|
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
if (macro_mode)
|
|
|
|
MacroModeClose();
|
|
|
|
|
|
|
|
if (sel && !selection)
|
|
|
|
SelStart();
|
|
|
|
|
|
|
|
if (!sel && selection)
|
|
|
|
SelClear();
|
|
|
|
|
|
|
|
if (cursor->IsScript()) {
|
|
|
|
char cd = cursor->GetChar();
|
|
|
|
if (MathIsUp(cd)) {
|
|
|
|
Push();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
// A subscript may be followed by a superscript
|
|
|
|
cursor->ipush();
|
|
|
|
cursor->Next();
|
|
|
|
if (MathIsUp(cursor->GetChar())) {
|
|
|
|
Push();
|
|
|
|
return true;
|
|
|
|
} else // return to the previous state
|
|
|
|
cursor->ipop();
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2001-02-14 17:58:40 +00:00
|
|
|
|
|
|
|
result = cursor->Up();
|
2001-02-17 18:52:53 +00:00
|
|
|
if (!result && cursor->getPar()) {
|
|
|
|
MathParInset * p = cursor->getPar();
|
2001-02-14 17:58:40 +00:00
|
|
|
|
|
|
|
if (p->GetType() == LM_OT_SCRIPT) {
|
|
|
|
MathedXIter * cx = mathstk.Item(1);
|
|
|
|
bool is_down = (cx->GetChar() == LM_TC_DOWN);
|
|
|
|
cursor = mathstk.pop();
|
|
|
|
cursor->Next();
|
|
|
|
result = (is_down) ? true: Up();
|
|
|
|
} else {
|
|
|
|
result = (p->getArgumentIdx() > 0);
|
|
|
|
if (result) {
|
|
|
|
p->setArgumentIdx(p->getArgumentIdx() - 1);
|
|
|
|
cursor->SetData(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!result && !mathstk.Empty()) {
|
|
|
|
cursor = mathstk.pop();
|
|
|
|
return Up();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool MathedCursor::Down(bool sel)
|
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
if (macro_mode)
|
|
|
|
MacroModeClose();
|
|
|
|
|
|
|
|
if (sel && !selection)
|
|
|
|
SelStart();
|
|
|
|
|
|
|
|
if (!sel && selection)
|
|
|
|
SelClear();
|
|
|
|
|
|
|
|
if (cursor->IsScript()) {
|
|
|
|
char cd = cursor->GetChar();
|
|
|
|
if (MathIsDown(cd)) {
|
|
|
|
Push();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
// A superscript may be followed by a subscript
|
|
|
|
cursor->ipush();
|
|
|
|
cursor->Next();
|
|
|
|
if (MathIsDown(cursor->GetChar())) {
|
|
|
|
Push();
|
|
|
|
return true;
|
|
|
|
} else
|
|
|
|
cursor->ipop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result = cursor->Down();
|
2001-02-17 18:52:53 +00:00
|
|
|
if (!result && cursor->getPar()) {
|
2001-03-06 11:13:14 +00:00
|
|
|
MathParInset * p= cursor->getPar();
|
|
|
|
if (p->GetType() == LM_OT_SCRIPT) {
|
|
|
|
MathedXIter * cx = mathstk.Item(1);
|
|
|
|
bool is_up = (cx->GetChar() == LM_TC_UP);
|
|
|
|
cursor = mathstk.pop();
|
|
|
|
cursor->Next();
|
|
|
|
result = (is_up) ? true : Down();
|
|
|
|
} else {
|
|
|
|
result = (p->getArgumentIdx() < p->getMaxArgumentIdx());
|
|
|
|
if (result) {
|
|
|
|
p->setArgumentIdx(p->getArgumentIdx() + 1);
|
|
|
|
cursor->SetData(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!result && !mathstk.Empty()) {
|
|
|
|
cursor = mathstk.pop();
|
|
|
|
return Down(sel);
|
|
|
|
}
|
2001-02-14 17:58:40 +00:00
|
|
|
}
|
|
|
|
return result;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
bool MathedCursor::Limits()
|
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
if (cursor->IsInset()) {
|
|
|
|
MathedInset * p = cursor->GetInset();
|
|
|
|
bool ol = p->GetLimits();
|
|
|
|
p->SetLimits(!ol);
|
|
|
|
return (ol!= p->GetLimits());
|
|
|
|
}
|
|
|
|
return false;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void MathedCursor::SetSize(short size)
|
|
|
|
{
|
2001-02-17 18:52:53 +00:00
|
|
|
MathParInset * p = cursor->getPar();
|
2001-02-14 17:58:40 +00:00
|
|
|
p->UserSetSize(size);
|
|
|
|
cursor->SetData(p);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
void MathedCursor::setLabel(string const & label)
|
2001-02-14 17:58:40 +00:00
|
|
|
{
|
|
|
|
// ugly hack and possible bug
|
|
|
|
if (!cursor->setLabel(label))
|
|
|
|
lyxerr << "MathErr: Bad place to set labels." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathedCursor::setNumbered()
|
2001-02-17 18:52:53 +00:00
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
// another ugly hack
|
2001-03-06 19:08:30 +00:00
|
|
|
MathedRowContainer::iterator crow = cursor->currentRow();
|
2001-02-17 18:52:53 +00:00
|
|
|
if (crow)
|
|
|
|
crow->setNumbered(!crow->isNumbered());
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
void MathedCursor::Interpret(string const & s)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
MathedInset * p = 0;
|
2001-02-16 09:25:43 +00:00
|
|
|
latexkeys const * l = 0;
|
2001-02-14 17:58:40 +00:00
|
|
|
MathedTextCodes tcode = LM_TC_INSET;
|
|
|
|
|
|
|
|
if (s[0] == '^' || s[0] == '_') {
|
|
|
|
char c = cursor->GetChar();
|
|
|
|
if (MathIsUp(c) && s[0] == '^' || MathIsDown(c) && s[0] == '_') {
|
|
|
|
Push();
|
|
|
|
return;
|
|
|
|
} else
|
|
|
|
|
|
|
|
// A script may be followed by a script
|
|
|
|
if (MathIsUp(c) || MathIsDown(c)) {
|
|
|
|
cursor->ipush();
|
|
|
|
cursor->Next();
|
|
|
|
c = cursor->GetChar();
|
|
|
|
if (MathIsUp(c) && s[0] == '^' || MathIsDown(c) && s[0] == '_') {
|
|
|
|
Push();
|
|
|
|
return;
|
|
|
|
} else
|
|
|
|
cursor->ipop();
|
|
|
|
}
|
|
|
|
p = new MathParInset(LM_ST_SCRIPT, "", LM_OT_SCRIPT);
|
2001-02-17 18:52:53 +00:00
|
|
|
insertInset(p, (s[0] == '_') ? LM_TC_DOWN: LM_TC_UP);
|
1999-09-27 18:44:28 +00:00
|
|
|
return;
|
2001-02-14 17:58:40 +00:00
|
|
|
} else
|
|
|
|
if (s[0] == '!' || s[0] == ',' || s[0] == ':' || s[0] == ';') {
|
|
|
|
int sp = ((s[0] == ',') ? 1:((s[0] == ':') ? 2:((s[0] == ';') ? 3: 0)));
|
|
|
|
p = new MathSpaceInset(sp);
|
2001-02-17 18:52:53 +00:00
|
|
|
insertInset(p, LM_TC_INSET);
|
2001-02-14 17:58:40 +00:00
|
|
|
return;
|
|
|
|
} else
|
|
|
|
l = in_word_set(s);
|
|
|
|
|
|
|
|
if (!l) {
|
2001-03-01 14:07:43 +00:00
|
|
|
p = MathMacroTable::mathMTable.createMacro(s);
|
2001-02-14 17:58:40 +00:00
|
|
|
if (!p) {
|
|
|
|
lyxerr[Debug::MATHED] << "Macro2 " << s << ' ' << tcode << endl;
|
|
|
|
if (s == "root") {
|
2001-02-16 09:25:43 +00:00
|
|
|
p = new MathRootInset;
|
2001-02-14 17:58:40 +00:00
|
|
|
tcode = LM_TC_ACTIVE_INSET;
|
|
|
|
} else
|
|
|
|
p = new MathFuncInset(s, LM_OT_UNDEF);
|
|
|
|
} else {
|
|
|
|
tcode = static_cast<MathMacro*>(p)->getTCode();
|
|
|
|
lyxerr[Debug::MATHED] << "Macro2 " << s << ' ' << tcode << endl;
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
2001-02-14 17:58:40 +00:00
|
|
|
MathedInsetTypes fractype = LM_OT_FRAC;
|
|
|
|
switch (l->token) {
|
|
|
|
case LM_TK_BIGSYM:
|
|
|
|
p = new MathBigopInset(l->name, l->id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_SYM:
|
|
|
|
if (l->id<255) {
|
|
|
|
Insert(static_cast<byte>(l->id), MathIsBOPS(l->id) ?
|
|
|
|
LM_TC_BOPS: LM_TC_SYMB);
|
|
|
|
} else {
|
|
|
|
p = new MathFuncInset(l->name);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_STACK:
|
|
|
|
fractype = LM_OT_STACKREL;
|
|
|
|
lyxerr[Debug::MATHED] << " i:stackrel " << endl;
|
|
|
|
|
|
|
|
case LM_TK_FRAC:
|
|
|
|
p = new MathFracInset(fractype);
|
|
|
|
tcode = LM_TC_ACTIVE_INSET;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_SQRT:
|
|
|
|
p = new MathSqrtInset;
|
|
|
|
tcode = LM_TC_ACTIVE_INSET;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_WIDE:
|
|
|
|
p = new MathDecorationInset(l->id);
|
|
|
|
tcode = LM_TC_ACTIVE_INSET;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_FUNCLIM:
|
|
|
|
p = new MathFuncInset(l->name, LM_OT_FUNCLIM);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_SPACE:
|
|
|
|
p = new MathSpaceInset(l->id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_DOTS:
|
|
|
|
p = new MathDotsInset(l->name, l->id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_ACCENT:
|
|
|
|
setAccent(l->id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LM_TK_MACRO:
|
2001-03-01 14:07:43 +00:00
|
|
|
p = MathMacroTable::mathMTable.createMacro(s);
|
2001-02-14 17:58:40 +00:00
|
|
|
tcode = static_cast<MathMacro*>(p)->getTCode();
|
|
|
|
lyxerr[Debug::MATHED] << "Macro " << s << ' ' << tcode << endl;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
p = new MathFuncInset(l->name);
|
|
|
|
break;
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2001-02-14 17:58:40 +00:00
|
|
|
|
|
|
|
if (p) {
|
2001-02-17 18:52:53 +00:00
|
|
|
insertInset(p, tcode);
|
2001-02-14 17:58:40 +00:00
|
|
|
par->Metrics();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool MathedCursor::pullArg()
|
2001-02-14 17:58:40 +00:00
|
|
|
{
|
|
|
|
if (cursor->IsActive()) {
|
|
|
|
MathParInset * p = cursor->GetActiveInset();
|
|
|
|
if (!p)
|
|
|
|
return false;
|
|
|
|
|
2001-02-20 16:00:22 +00:00
|
|
|
MathedArray a = p->GetData();
|
2001-02-20 13:16:07 +00:00
|
|
|
p->clear();
|
2001-02-14 17:58:40 +00:00
|
|
|
Delete();
|
2001-02-20 16:00:22 +00:00
|
|
|
if (!a.empty()) {
|
2001-02-20 18:32:18 +00:00
|
|
|
cursor->Merge(a);
|
2001-02-20 14:00:34 +00:00
|
|
|
cursor->Adjust();
|
|
|
|
}
|
2001-02-14 17:58:40 +00:00
|
|
|
|
|
|
|
return true;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2001-02-14 17:58:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
void MathedCursor::MacroModeOpen()
|
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
if (!macro_mode) {
|
|
|
|
imacro = new MathFuncInset("");
|
2001-02-17 18:52:53 +00:00
|
|
|
insertInset(imacro, LM_TC_INSET);
|
2001-02-14 17:58:40 +00:00
|
|
|
macro_mode = true;
|
|
|
|
} else
|
|
|
|
lyxerr << "Mathed Warning: Already in macro mode" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void MathedCursor::MacroModeClose()
|
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
if (macro_mode) {
|
|
|
|
macro_mode = false;
|
2001-02-16 09:25:43 +00:00
|
|
|
latexkeys const * l = in_word_set(imacro->GetName());
|
2001-02-14 17:58:40 +00:00
|
|
|
if (!imacro->GetName().empty()
|
|
|
|
&& (!l || (l && IsMacro(l->token, l->id))) &&
|
2001-03-01 14:07:43 +00:00
|
|
|
!MathMacroTable::mathMTable.createMacro(imacro->GetName())) {
|
2001-02-14 17:58:40 +00:00
|
|
|
if (!l) {
|
|
|
|
//imacro->SetName(macrobf);
|
|
|
|
// This guarantees that the string will be removed by destructor
|
|
|
|
imacro->SetType(LM_OT_UNDEF);
|
|
|
|
} else
|
|
|
|
imacro->SetName(l->name);
|
|
|
|
} else {
|
|
|
|
Left();
|
|
|
|
if (cursor->GetInset()->GetType() == LM_OT_ACCENT) {
|
|
|
|
setAccent(
|
|
|
|
static_cast<MathAccentInset*>(cursor->GetInset())->getAccentCode());
|
|
|
|
}
|
|
|
|
cursor->Delete();
|
2001-03-01 14:07:43 +00:00
|
|
|
if (l || MathMacroTable::mathMTable.createMacro(imacro->GetName())) {
|
2001-02-14 17:58:40 +00:00
|
|
|
Interpret(imacro->GetName());
|
|
|
|
}
|
|
|
|
imacro->SetName("");
|
|
|
|
}
|
|
|
|
imacro = 0;
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void MathedCursor::SelCopy()
|
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
if (selection) {
|
2001-02-28 17:21:16 +00:00
|
|
|
int const p1 = (cursor->getPos() < selpos) ?
|
|
|
|
cursor->getPos() : selpos;
|
|
|
|
int const p2 = (cursor->getPos() > selpos) ?
|
2001-02-17 18:52:53 +00:00
|
|
|
cursor->getPos() : selpos;
|
2001-02-20 14:00:34 +00:00
|
|
|
selarray = *(cursor->GetData());
|
|
|
|
selarray.shrink(p1, p2);
|
2001-02-14 17:58:40 +00:00
|
|
|
cursor->Adjust();
|
|
|
|
SelClear();
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void MathedCursor::SelCut()
|
2001-02-14 17:58:40 +00:00
|
|
|
{
|
|
|
|
if (selection) {
|
2001-02-17 18:52:53 +00:00
|
|
|
if (cursor->getPos() == selpos)
|
2001-02-14 17:58:40 +00:00
|
|
|
return;
|
|
|
|
|
2001-02-28 17:21:16 +00:00
|
|
|
int const p1 = (cursor->getPos() < selpos) ?
|
|
|
|
cursor->getPos() : selpos;
|
|
|
|
int const p2 = (cursor->getPos() > selpos) ?
|
|
|
|
cursor->getPos() : selpos;
|
2001-02-20 14:00:34 +00:00
|
|
|
selarray = *(cursor->GetData());
|
|
|
|
selarray.shrink(p1, p2);
|
2001-02-14 17:58:40 +00:00
|
|
|
cursor->Clean(selpos);
|
|
|
|
cursor->Adjust();
|
|
|
|
SelClear();
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void MathedCursor::SelDel()
|
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
// lyxerr << "Deleting sel "
|
|
|
|
if (selection) {
|
2001-02-17 18:52:53 +00:00
|
|
|
if (cursor->getPos() == selpos)
|
2001-02-14 17:58:40 +00:00
|
|
|
return;
|
|
|
|
cursor->Clean(selpos);
|
|
|
|
cursor->Adjust();
|
|
|
|
SelClear();
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void MathedCursor::SelPaste()
|
|
|
|
{
|
2001-02-14 17:58:40 +00:00
|
|
|
// lyxerr << "paste " << selarray << " " << curor->pos;
|
|
|
|
if (selection)
|
|
|
|
SelDel();
|
|
|
|
|
2001-02-20 14:00:34 +00:00
|
|
|
if (!selarray.empty()) {
|
2001-02-20 18:32:18 +00:00
|
|
|
cursor->Merge(selarray);
|
2001-02-14 17:58:40 +00:00
|
|
|
cursor->Adjust();
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void MathedCursor::SelStart()
|
|
|
|
{
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr[Debug::MATHED] << "Starting sel " << endl;
|
2001-02-14 17:58:40 +00:00
|
|
|
if (!anchor) {
|
2001-02-17 18:52:53 +00:00
|
|
|
selpos = cursor->getPos();
|
2001-03-09 08:45:10 +00:00
|
|
|
selstk = mathstk;
|
|
|
|
anchor = selstk.Item(-1);
|
2001-02-17 18:52:53 +00:00
|
|
|
anchor->SetData(cursor->getPar());
|
2001-02-14 17:58:40 +00:00
|
|
|
anchor->GoBegin();
|
|
|
|
anchor->goPosAbs(selpos);
|
|
|
|
selection = true;
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void MathedCursor::SelClear()
|
2001-02-14 17:58:40 +00:00
|
|
|
{
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr[Debug::MATHED] << "Clearing sel " << endl;
|
2001-02-14 17:58:40 +00:00
|
|
|
selection = false;
|
|
|
|
anchor = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Anchor position must be at the same level that stack.
|
|
|
|
void MathedCursor::SelBalance()
|
|
|
|
{
|
2001-03-09 08:45:10 +00:00
|
|
|
int d = mathstk.Level() - selstk.Level();
|
2001-02-14 17:58:40 +00:00
|
|
|
|
|
|
|
// If unbalanced, balance them
|
|
|
|
while (d != 0) {
|
|
|
|
if (d < 0) {
|
2001-03-09 08:45:10 +00:00
|
|
|
// lyxerr << "b[" << mathstk.Level() << " " << selstk.Level
|
2001-02-14 17:58:40 +00:00
|
|
|
// << " " << anchor->GetX() << " " << cursor->GetX() << "]";
|
2001-03-09 08:45:10 +00:00
|
|
|
anchor = selstk.pop();
|
2001-02-14 17:58:40 +00:00
|
|
|
if (anchor->GetX() >= cursor->GetX())
|
|
|
|
anchor->Next();
|
|
|
|
} else {
|
2001-03-09 08:45:10 +00:00
|
|
|
// lyxerr <<"a[" << mathstk.Level() << " " << selstk.Level() <<"]";
|
2001-02-14 17:58:40 +00:00
|
|
|
Pop();
|
|
|
|
}
|
2001-03-09 08:45:10 +00:00
|
|
|
d = mathstk.Level() - selstk.Level();
|
2001-02-14 17:58:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Once balanced the levels, check that they are at the same paragraph
|
2001-02-17 18:52:53 +00:00
|
|
|
selpos = anchor->getPos();
|
2001-02-14 17:58:40 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2000-02-17 15:24:43 +00:00
|
|
|
void MathedCursor::SelGetArea(int ** xp, int ** yp, int & np)
|
2001-02-14 17:58:40 +00:00
|
|
|
{
|
|
|
|
static int xpoint[10];
|
|
|
|
static int ypoint[10];
|
|
|
|
|
|
|
|
if (!selection) {
|
|
|
|
np = 0;
|
|
|
|
xpoint[0] = 0;
|
|
|
|
ypoint[0] = 0;
|
|
|
|
*xp = &xpoint[0];
|
|
|
|
*yp = &ypoint[0];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Balance anchor and cursor
|
|
|
|
SelBalance();
|
|
|
|
|
|
|
|
int xo;
|
|
|
|
int yo;
|
2001-02-17 18:52:53 +00:00
|
|
|
cursor->getPar()->GetXY(xo, yo);
|
|
|
|
int w = cursor->getPar()->Width();
|
2001-02-14 17:58:40 +00:00
|
|
|
int x1;
|
|
|
|
int y1;
|
|
|
|
cursor->GetPos(x1, y1);
|
2001-02-17 18:52:53 +00:00
|
|
|
int a1;
|
|
|
|
int d1;
|
2001-02-14 17:58:40 +00:00
|
|
|
cursor->getAD(a1, d1);
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
anchor->GetPos(x, y);
|
2001-02-17 18:52:53 +00:00
|
|
|
int a;
|
|
|
|
int d;
|
2001-02-14 17:58:40 +00:00
|
|
|
anchor->getAD(a, d);
|
|
|
|
|
2001-02-17 18:52:53 +00:00
|
|
|
// single row selection
|
|
|
|
int i = 0;
|
2001-02-14 17:58:40 +00:00
|
|
|
xpoint[i] = x;
|
|
|
|
ypoint[i++] = y + d;
|
|
|
|
xpoint[i] = x;
|
|
|
|
ypoint[i++] = y - a;
|
|
|
|
|
|
|
|
if (y != y1) {
|
|
|
|
xpoint[i] = xo + w;
|
|
|
|
ypoint[i++] = y - a;
|
|
|
|
|
|
|
|
if (x1 < xo + w) {
|
|
|
|
xpoint[i] = xo + w;
|
|
|
|
ypoint[i++] = y1 - a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
xpoint[i] = x1;
|
|
|
|
ypoint[i++] = y1 - a;
|
|
|
|
xpoint[i] = x1;
|
|
|
|
ypoint[i++] = y1 + d;
|
|
|
|
|
|
|
|
if (y != y1) {
|
|
|
|
xpoint[i] = xo;
|
|
|
|
ypoint[i++] = y1 + d;
|
|
|
|
if (x > xo) {
|
|
|
|
xpoint[i] = xo;
|
|
|
|
ypoint[i++] = y + d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xpoint[i] = xpoint[0];
|
|
|
|
ypoint[i++] = ypoint[0];
|
|
|
|
|
2000-02-17 15:24:43 +00:00
|
|
|
*xp = &xpoint[0];
|
|
|
|
*yp = &ypoint[0];
|
2001-02-14 17:58:40 +00:00
|
|
|
np = i;
|
|
|
|
// lyxerr << "AN[" << x << " " << y << " " << x1 << " " << y1 << "] ";
|
|
|
|
// lyxerr << "MT[" << a << " " << d << " " << a1 << " " << d1 << "] ";
|
|
|
|
// for (i = 0; i < np; ++i)
|
|
|
|
// lyxerr << "XY[" << point[i].x << " " << point[i].y << "] ";
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
void MathedCursor::setAccent(int ac)
|
|
|
|
{
|
|
|
|
if (ac > 0 && accent < 8) {
|
|
|
|
nestaccent[accent++] = ac;
|
|
|
|
} else
|
2001-02-14 17:58:40 +00:00
|
|
|
accent = 0; // consumed!
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2001-02-14 17:58:40 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
int MathedCursor::getAccent() const
|
|
|
|
{
|
1999-12-13 00:05:34 +00:00
|
|
|
return (accent > 0) ? nestaccent[accent - 1]: 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathedCursor::doAccent(byte c, MathedTextCodes t)
|
|
|
|
{
|
1999-12-13 00:05:34 +00:00
|
|
|
MathedInset * ac = 0;
|
2001-02-14 17:58:40 +00:00
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
for (int i = accent - 1; i >= 0; --i) {
|
|
|
|
if (i == accent - 1)
|
2001-02-14 17:58:40 +00:00
|
|
|
ac = new MathAccentInset(c, t, nestaccent[i]);
|
|
|
|
else
|
|
|
|
ac = new MathAccentInset(ac, nestaccent[i]);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2001-02-14 17:58:40 +00:00
|
|
|
if (ac)
|
2001-02-17 18:52:53 +00:00
|
|
|
cursor->insertInset(ac, LM_TC_INSET);
|
2001-02-14 17:58:40 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
accent = 0; // consumed!
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
void MathedCursor::doAccent(MathedInset * p)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-12-13 00:05:34 +00:00
|
|
|
MathedInset * ac = 0;
|
2001-02-14 17:58:40 +00:00
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
for (int i = accent - 1; i >= 0; --i) {
|
|
|
|
if (i == accent - 1)
|
2001-02-14 17:58:40 +00:00
|
|
|
ac = new MathAccentInset(p, nestaccent[i]);
|
|
|
|
else
|
|
|
|
ac = new MathAccentInset(ac, nestaccent[i]);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2001-02-14 17:58:40 +00:00
|
|
|
|
|
|
|
if (ac)
|
2001-02-17 18:52:53 +00:00
|
|
|
cursor->insertInset(ac, LM_TC_INSET);
|
2001-02-14 17:58:40 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
accent = 0; // consumed!
|
|
|
|
}
|
|
|
|
|
2001-01-09 13:58:48 +00:00
|
|
|
|
|
|
|
void MathedCursor::toggleLastCode(MathedTextCodes t)
|
|
|
|
{
|
|
|
|
if (lastcode == t)
|
|
|
|
lastcode = LM_TC_VAR;
|
|
|
|
else
|
|
|
|
lastcode = t;
|
|
|
|
}
|
2001-02-13 19:10:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
void MathedCursor::GetPos(int & x, int & y)
|
|
|
|
{
|
|
|
|
cursor->GetPos(x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
short MathedCursor::GetFCode()
|
|
|
|
{
|
2001-02-17 16:43:31 +00:00
|
|
|
return cursor->fcode();
|
2001-02-13 19:10:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MathParInset * MathedCursor::GetPar()
|
|
|
|
{
|
|
|
|
return par;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MathParInset * MathedCursor::getCurrentPar() const
|
|
|
|
{
|
2001-02-17 18:52:53 +00:00
|
|
|
return cursor->getPar();
|
2001-02-13 19:10:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string const & MathedCursor::getLabel() const
|
|
|
|
{
|
|
|
|
return cursor->getLabel();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool MathedCursor::IsEnd() const
|
|
|
|
{
|
|
|
|
return !cursor->OK();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool MathedCursor::InMacroMode()
|
|
|
|
{
|
|
|
|
return macro_mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool MathedCursor::Selection()
|
|
|
|
{
|
|
|
|
return selection;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathedCursor::clearLastCode()
|
|
|
|
{
|
|
|
|
lastcode = LM_TC_MIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathedCursor::setLastCode(MathedTextCodes t)
|
|
|
|
{
|
|
|
|
lastcode = t;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MathedTextCodes MathedCursor::getLastCode() const
|
|
|
|
{
|
|
|
|
return lastcode;
|
|
|
|
}
|