]> git.lyx.org Git - lyx.git/blob - src/mathed/math_cursor.C
don't insert space when given \rho<space> ...
[lyx.git] / src / mathed / math_cursor.C
1 /*
2  *  File:        math_cursor.C
3  *  Purpose:     Interaction for mathed
4  *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
5  *  Created:     January 1996
6  *  Description: Math interaction for a WYSIWYG math editor.
7  *
8  *  Dependencies: Xlib, XForms
9  *
10  *  Copyright: 1996, Alejandro Aguilar Sierra
11  *
12  *   Version: 0.8beta, Math & Lyx project.
13  *
14  *   You are free to use and modify this code under the terms of
15  *   the GNU General Public Licence version 2 or later.
16  */
17
18 #include <config.h>
19
20 #ifdef __GNUG__
21 #pragma implementation
22 #endif
23
24 #include "support/lstrings.h"
25 #include "support/LAssert.h"
26 #include "debug.h"
27 #include "LColor.h"
28 #include "Painter.h"
29 #include "math_cursor.h"
30 #include "formulabase.h"
31 #include "math_arrayinset.h"
32 #include "math_braceinset.h"
33 #include "math_boxinset.h"
34 #include "math_casesinset.h"
35 #include "math_charinset.h"
36 #include "math_deliminset.h"
37 #include "math_factory.h"
38 #include "math_hullinset.h"
39 #include "math_iterator.h"
40 #include "math_macroarg.h"
41 #include "math_mathmlstream.h"
42 #include "math_parser.h"
43 #include "math_replace.h"
44 #include "math_scriptinset.h"
45 #include "math_spaceinset.h"
46 #include "math_specialcharinset.h"
47 #include "math_support.h"
48
49 #include <algorithm>
50 #include <cctype>
51
52 #define FILEDEBUG 0
53
54 using std::endl;
55 using std::min;
56 using std::max;
57 using std::swap;
58 using std::isalnum;
59 using std::vector;
60 using std::ostringstream;
61
62 namespace {
63
64 struct Selection
65 {
66         typedef MathInset::col_type col_type;
67         typedef MathInset::row_type row_type;
68         typedef MathInset::idx_type idx_type;
69
70         Selection()
71                 : data_(1, 1)
72         {}
73
74         void region(MathCursorPos const & i1, MathCursorPos const & i2,
75                 row_type & r1, row_type & r2, col_type & c1, col_type & c2)
76         {
77                 MathInset * p = i1.par_;
78                 c1 = p->col(i1.idx_);
79                 c2 = p->col(i2.idx_);
80                 if (c1 > c2)
81                         swap(c1, c2);
82                 r1 = p->row(i1.idx_);
83                 r2 = p->row(i2.idx_);
84                 if (r1 > r2)
85                         swap(r1, r2);
86         }
87
88         void grab(MathCursor const & cursor)
89         {
90                 MathCursorPos i1;
91                 MathCursorPos i2;
92                 cursor.getSelection(i1, i2);
93                 // shouldn'tt we assert on i1.par_ == i2.par_?
94                 if (i1.idx_ == i2.idx_) {
95                         data_ = MathGridInset(1, 1);
96                         data_.cell(0) = MathArray(i1.cell(), i1.pos_, i2.pos_);
97                 } else {
98                         row_type r1, r2;
99                         col_type c1, c2;
100                         region(i1, i2, r1, r2, c1, c2);
101                         data_ = MathGridInset(c2 - c1 + 1, r2 - r1 + 1);
102                         for (row_type row = 0; row < data_.nrows(); ++row)
103                                 for (col_type col = 0; col < data_.ncols(); ++col) {
104                                         idx_type i = i1.par_->index(row + r1, col + c1);
105                                         data_.cell(data_.index(row, col)) = i1.par_->cell(i);
106                                 }
107                 }
108         }
109
110         void erase(MathCursor & cursor)
111         {
112                 MathCursorPos i1;
113                 MathCursorPos i2;
114                 cursor.getSelection(i1, i2);
115                 if (i1.idx_ == i2.idx_)
116                         i1.cell().erase(i1.pos_, i2.pos_);
117                 else {
118                         MathInset * p = i1.par_;
119                         row_type r1, r2;
120                         col_type c1, c2;
121                         region(i1, i2, r1, r2, c1, c2);
122                         for (row_type row = r1; row <= r2; ++row)
123                                 for (col_type col = c1; col <= c2; ++col)
124                                         p->cell(p->index(row, col)).erase();
125                 }
126                 cursor.cursor() = i1;
127         }
128
129         void paste(MathCursor & cursor) const
130         {
131                 if (data_.nargs() == 1) {
132                         // single cell/part of cell
133                         cursor.insert(data_.cell(0));
134                 } else {
135                         // mulitple cells
136                         idx_type idx;
137                         MathGridInset * p = cursor.enclosingGrid(idx);
138                         col_type const numcols = min(data_.ncols(), p->ncols() - p->col(idx));
139                         row_type const numrows = min(data_.nrows(), p->nrows() - p->row(idx));
140                         for (row_type row = 0; row < numrows; ++row)
141                                 for (col_type col = 0; col < numcols; ++col) {
142                                         idx_type i = p->index(row + p->row(idx), col + p->col(idx));
143                                         p->cell(i).push_back(data_.cell(data_.index(row, col)));
144                                 }
145                 }
146         }
147
148         // glues selection to one cell
149         MathArray glue() const
150         {
151                 MathArray ar;
152                 for (unsigned i = 0; i < data_.nargs(); ++i)
153                         ar.push_back(data_.cell(i));
154                 return ar;
155         }
156
157         void clear()
158         {
159                 data_ = MathGridInset(1, 1);
160         }
161
162         MathGridInset data_;
163 };
164
165
166 Selection theSelection;
167
168
169
170 }
171
172
173 MathCursor::MathCursor(InsetFormulaBase * formula, bool left)
174         : formula_(formula), lastcode_(LM_TC_MIN), selection_(false)
175 {
176         left ? first() : last();
177 }
178
179
180 void MathCursor::push(MathAtom & t)
181 {
182         Cursor_.push_back(MathCursorPos(t.nucleus()));
183 }
184
185
186 void MathCursor::pushLeft(MathAtom & t)
187 {
188         //cerr << "Entering atom "; t->write(cerr, false); cerr << " left\n";
189         push(t);
190         t->idxFirst(idx(), pos());
191 }
192
193
194 void MathCursor::pushRight(MathAtom & t)
195 {
196         //cerr << "Entering atom "; t->write(cerr, false); cerr << " right\n";
197         posLeft();
198         push(t);
199         t->idxLast(idx(), pos());
200 }
201
202
203 bool MathCursor::popLeft()
204 {
205         //cerr << "Leaving atom "; par()->write(cerr, false); cerr << " left\n";
206         if (Cursor_.size() <= 1)
207                 return false;
208         if (par()->asScriptInset()) {
209                 par()->asScriptInset()->removeEmptyScripts();
210                 if (par()->asScriptInset()->empty())
211                         plainErase();
212         }
213         Cursor_.pop_back();
214         return true;
215 }
216
217
218 bool MathCursor::popRight()
219 {
220         //cerr << "Leaving atom "; par()->write(cerr, false); cerr << " right\n";
221         if (Cursor_.size() <= 1)
222                 return false;
223         if (par()->asScriptInset()) {
224                 par()->asScriptInset()->removeEmptyScripts();
225                 if (par()->asScriptInset()->empty())
226                         plainErase();
227         }
228         Cursor_.pop_back();
229         posRight();
230         return true;
231 }
232
233
234
235 #if FILEDEBUG
236         void MathCursor::dump(char const * what) const
237         {
238                 lyxerr << "MC: " << what << "\n";
239                 lyxerr << " Cursor: " << Cursor_.size() << "\n";
240                 for (unsigned i = 0; i < Cursor_.size(); ++i)
241                         lyxerr << "    i: " << i << " " << Cursor_[i] << "\n";
242                 lyxerr << " Anchor: " << Anchor_.size() << "\n";
243                 for (unsigned i = 0; i < Anchor_.size(); ++i)
244                         lyxerr << "    i: " << i << " " << Anchor_[i] << "\n";
245                 lyxerr  << " sel: " << selection_ << "\n";
246         }
247 #else
248         void MathCursor::dump(char const *) const {}
249 #endif
250
251
252 UpdatableInset * MathCursor::asHyperActiveInset() const
253 {
254         return par()->asHyperActiveInset();
255 }
256
257
258 bool MathCursor::isInside(MathInset const * p) const
259 {
260         for (unsigned i = 0; i < Cursor_.size(); ++i)
261                 if (Cursor_[i].par_ == p)
262                         return true;
263         return false;
264 }
265
266
267 bool MathCursor::openable(MathAtom const & t, bool sel) const
268 {
269         if (t->isHyperActive())
270                 return true;
271
272         if (!t->isActive())
273                 return false;
274
275         if (t->asScriptInset())
276                 return false;
277
278         if (sel) {
279                 // we can't move into anything new during selection
280                 if (Cursor_.size() == Anchor_.size())
281                         return false;
282                 if (t.nucleus() != Anchor_[Cursor_.size()].par_)
283                         return false;
284         }
285         return true;
286 }
287
288
289 bool MathCursor::posLeft()
290 {
291         if (pos() == 0)
292                 return false;
293         --pos();
294         return true;
295 }
296
297
298 bool MathCursor::posRight()
299 {
300         if (pos() == size())
301                 return false;
302         ++pos();
303         return true;
304 }
305
306
307 bool MathCursor::left(bool sel)
308 {
309         dump("Left 1");
310         if (inMacroMode()) {
311                 macroModeClose();
312                 lastcode_ = LM_TC_MIN;
313                 return true;
314         }
315         selHandle(sel);
316         lastcode_ = LM_TC_MIN;
317
318         if (hasPrevAtom() && openable(prevAtom(), sel)) {
319                 if (prevAtom()->isHyperActive()) {
320                         lyxerr << "entering hyperactive inset\n";
321                 }
322                 pushRight(prevAtom());
323                 return true;
324         }
325
326         return posLeft() || idxLeft() || popLeft() || selection_;
327 }
328
329
330 bool MathCursor::right(bool sel)
331 {
332         dump("Right 1");
333         if (inMacroMode()) {
334                 macroModeClose();
335                 lastcode_ = LM_TC_MIN;
336                 return true;
337         }
338         selHandle(sel);
339         lastcode_ = LM_TC_MIN;
340
341         if (hasNextAtom() && openable(nextAtom(), sel)) {
342                 if (nextAtom()->isHyperActive()) {
343                         lyxerr << "entering hyperactive inset\n";
344                         int x, y;
345                         getPos(x, y);
346                         nextAtom()->edit(formula()->view(), x, y, 0);
347                 }
348                 pushLeft(nextAtom());
349                 return true;
350         }
351
352         return posRight() || idxRight() || popRight() || selection_;
353 }
354
355
356 void MathCursor::first()
357 {
358         Cursor_.clear();
359         pushLeft(formula_->par());
360 }
361
362
363 void MathCursor::last()
364 {
365         first();
366         end();
367 }
368
369
370 bool positionable(MathCursor::cursor_type const & cursor,
371                   MathCursor::cursor_type const & anchor)
372 {
373         // avoid deeper nested insets when selecting
374         if (cursor.size() > anchor.size())
375                 return false;
376
377         // anchor might be deeper, should have same path then
378         for (MathCursor::cursor_type::size_type i = 0; i < cursor.size(); ++i)
379                 if (cursor[i].par_ != anchor[i].par_)
380                         return false;
381
382         // position should be ok.
383         return true;
384 }
385
386
387 void MathCursor::setPos(int x, int y)
388 {
389         dump("setPos 1");
390         bool res = bruteFind(x, y,
391                 formula()->xlow(), formula()->xhigh(),
392                 formula()->ylow(), formula()->yhigh());
393         if (!res) {
394                 // this ccan happen on creation of "math-display"
395                 dump("setPos 1.5");
396                 first();
397         }
398         dump("setPos 2");
399 }
400
401
402
403 void MathCursor::home(bool sel)
404 {
405         dump("home 1");
406         selHandle(sel);
407         macroModeClose();
408         lastcode_ = LM_TC_MIN;
409         if (!par()->idxHome(idx(), pos()))
410                 popLeft();
411         dump("home 2");
412 }
413
414
415 void MathCursor::end(bool sel)
416 {
417         dump("end 1");
418         selHandle(sel);
419         macroModeClose();
420         lastcode_ = LM_TC_MIN;
421         if (!par()->idxEnd(idx(), pos()))
422                 popRight();
423         dump("end 2");
424 }
425
426
427 void MathCursor::plainErase()
428 {
429         array().erase(pos());
430 }
431
432
433 void MathCursor::markInsert()
434 {
435         //lyxerr << "inserting mark\n";
436         array().insert(pos(), MathAtom(new MathCharInset(0, lastcode_)));
437 }
438
439
440 void MathCursor::markErase()
441 {
442         //lyxerr << "deleting mark\n";
443         array().erase(pos());
444 }
445
446
447 void MathCursor::plainInsert(MathAtom const & t)
448 {
449         array().insert(pos(), t);
450         ++pos();
451 }
452
453
454 void MathCursor::insert(char c, MathTextCodes t)
455 {
456         //lyxerr << "inserting '" << c << "'\n";
457         plainInsert(MathAtom(new MathCharInset(c, t)));
458 }
459
460
461 void MathCursor::insert(char c)
462 {
463         insert(c, lastcode_);
464 }
465
466
467 void MathCursor::insert(MathAtom const & t)
468 {
469         macroModeClose();
470
471         if (selection_) {
472                 if (t->nargs())
473                         selCut();
474                 else
475                         selDel();
476         }
477
478         plainInsert(t);
479 }
480
481
482 void MathCursor::niceInsert(MathAtom const & t)
483 {
484         selCut();
485         insert(t); // inserting invalidates the pointer!
486         MathAtom const & p = prevAtom();
487         if (p->nargs()) {
488                 posLeft();
489                 right();  // do not push for e.g. MathSymbolInset
490                 selPaste();
491         }
492 }
493
494
495 void MathCursor::insert(MathArray const & ar)
496 {
497         macroModeClose();
498         if (selection_)
499                 selCut();
500
501         array().insert(pos(), ar);
502         pos() += ar.size();
503 }
504
505
506 void MathCursor::paste(MathArray const & ar)
507 {
508         Anchor_ = Cursor_;
509         selection_ = true;
510         array().insert(pos(), ar);
511         pos() += ar.size();
512 }
513
514
515 void MathCursor::backspace()
516 {
517         if (pos() == 0) {
518                 pullArg(false);
519                 return;
520         }
521
522         if (selection_) {
523                 selDel();
524                 return;
525         }
526
527         MathScriptInset * p = prevAtom()->asScriptInset();
528         if (p) {
529                 p->removeScript(p->hasUp());
530                 // Don't delete if there is anything left
531                 if (p->hasUp() || p->hasDown())
532                         return;
533         }
534
535         --pos();
536         plainErase();
537 }
538
539
540 void MathCursor::erase()
541 {
542         if (inMacroMode())
543                 return;
544
545         if (selection_) {
546                 selDel();
547                 return;
548         }
549
550         // delete empty cells if necessary
551         if (array().empty()) {
552                 bool popit;
553                 bool removeit;
554                 par()->idxDelete(idx(), popit, removeit);
555                 if (popit && popLeft() && removeit)
556                         plainErase();
557                 return;
558         }
559
560         if (pos() == size())
561                 return;
562
563         MathScriptInset * p = nextAtom()->asScriptInset();
564         if (p) {
565                 p->removeScript(p->hasUp());
566                 // Don't delete if there is anything left
567                 if (p->hasUp() || p->hasDown())
568                         return;
569         }
570
571         plainErase();
572 }
573
574
575 void MathCursor::delLine()
576 {
577         macroModeClose();
578
579         if (selection_) {
580                 selDel();
581                 return;
582         }
583
584         if (par()->nrows() > 1) {
585                 // grid are the only things with more than one row...
586                 lyx::Assert(par()->asGridInset());
587                 par()->asGridInset()->delRow(hullRow());
588         }
589
590         if (idx() >= par()->nargs())
591                 idx() = par()->nargs() - 1;
592
593         if (pos() > size())
594                 pos() = size();
595 }
596
597
598 bool MathCursor::up(bool sel)
599 {
600         dump("up 1");
601         macroModeClose();
602         selHandle(sel);
603         cursor_type save = Cursor_;
604         if (goUpDown(true))
605                 return true;
606         Cursor_ = save;
607         return selection_;
608 }
609
610
611 bool MathCursor::down(bool sel)
612 {
613         dump("down 1");
614         macroModeClose();
615         selHandle(sel);
616         cursor_type save = Cursor_;
617         if (goUpDown(false))
618                 return true;
619         Cursor_ = save;
620         return selection_;
621 }
622
623
624 bool MathCursor::toggleLimits()
625 {
626         if (!hasNextAtom())
627                 return false;
628         MathScriptInset * t = nextAtom()->asScriptInset();
629         if (!t)
630                 return false;
631         int old = t->limits();
632         t->limits(old < 0 ? 1 : -1);
633         return old != t->limits();
634 }
635
636
637 void MathCursor::macroModeClose()
638 {
639         string s = macroName();
640         if (s.size()) {
641                 size_type old = pos();
642                 pos() -= s.size();
643                 array().erase(pos(), old);
644                 interpret(s);
645         }
646 }
647
648
649 MathInset::difference_type MathCursor::macroNamePos() const
650 {
651         for (MathInset::difference_type i = pos() - 1; i >= 0; --i) {
652                 MathAtom & p = array().at(i);
653                 if (p->code() == LM_TC_TEX && p->getChar() == '\\')
654                         return i;
655         }
656         return -1;
657 }
658
659
660 string MathCursor::macroName() const
661 {
662         string s;
663         MathInset::difference_type i = macroNamePos();
664         for (; i >= 0 && i < int(pos()); ++i)
665                 s += array().at(i)->getChar();
666         return s;
667 }
668
669
670 void MathCursor::selCopy()
671 {
672         dump("selCopy");
673         if (selection_) {
674                 theSelection.grab(*this);
675                 selClear();
676         }
677 }
678
679
680 void MathCursor::selCut()
681 {
682         dump("selCut");
683         if (selection_) {
684                 theSelection.grab(*this);
685                 theSelection.erase(*this);
686                 selClear();
687         } else {
688                 theSelection.clear();
689         }
690 }
691
692
693 void MathCursor::selDel()
694 {
695         dump("selDel");
696         if (selection_) {
697                 theSelection.erase(*this);
698                 if (pos() > size())
699                         pos() = size();
700                 selClear();
701         }
702 }
703
704
705 void MathCursor::selPaste()
706 {
707         dump("selPaste");
708         theSelection.paste(*this);
709         //theSelection.grab(*this);
710         //selClear();
711 }
712
713
714 void MathCursor::selHandle(bool sel)
715 {
716         if (sel == selection_)
717                 return;
718         //theSelection.clear();
719         Anchor_    = Cursor_;
720         selection_ = sel;
721 }
722
723
724 void MathCursor::selStart()
725 {
726         dump("selStart 1");
727         //theSelection.clear();
728         Anchor_ = Cursor_;
729         selection_ = true;
730         dump("selStart 2");
731 }
732
733
734 void MathCursor::selClear()
735 {
736         dump("selClear 1");
737         selection_ = false;
738         dump("selClear 2");
739 }
740
741
742 void MathCursor::selGet(MathArray & ar)
743 {
744         dump("selGet");
745         if (!selection_)
746                 return;
747
748         theSelection.grab(*this);
749         ar = theSelection.glue();
750 }
751
752
753
754 void MathCursor::drawSelection(Painter & pain) const
755 {
756         if (!selection_)
757                 return;
758
759         MathCursorPos i1;
760         MathCursorPos i2;
761         getSelection(i1, i2);
762
763         if (i1.idx_ == i2.idx_) {
764                 MathXArray & c = i1.xcell();
765                 int x1 = c.xo() + c.pos2x(i1.pos_);
766                 int y1 = c.yo() - c.ascent();
767                 int x2 = c.xo() + c.pos2x(i2.pos_);
768                 int y2 = c.yo() + c.descent();
769                 pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, LColor::selection);
770         } else {
771                 vector<MathInset::idx_type> indices
772                         = i1.par_->idxBetween(i1.idx_, i2.idx_);
773                 for (unsigned i = 0; i < indices.size(); ++i) {
774                         MathXArray & c = i1.xcell(indices[i]);
775                         int x1 = c.xo();
776                         int y1 = c.yo() - c.ascent();
777                         int x2 = c.xo() + c.width();
778                         int y2 = c.yo() + c.descent();
779                         pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, LColor::selection);
780                 }
781         }
782
783 #if 0
784         // draw anchor if different from selection boundary
785         MathCursorPos anc = Anchor_.back();
786         if (anc != i1 && anc != i2) {
787                 MathXArray & c = anc.xcell();
788                 int x  = c.xo() + c.pos2x(anc.pos_);
789                 int y1 = c.yo() - c.ascent();
790                 int y2 = c.yo() + c.descent();
791                 pain.line(x, y1, x, y2, LColor::math);
792         }
793 #endif
794 }
795
796
797 void MathCursor::handleFont(MathTextCodes t)
798 {
799         macroModeClose();
800         if (selection_) {
801                 MathCursorPos i1;
802                 MathCursorPos i2;
803                 getSelection(i1, i2);
804                 if (i1.idx_ == i2.idx_) {
805                         MathArray & ar = i1.cell();
806                         for (MathInset::pos_type pos = i1.pos_; pos != i2.pos_; ++pos)
807                                 ar.at(pos)->handleFont(t);
808                 }
809         } else
810                 lastcode_ = (lastcode_ == t) ? LM_TC_VAR : t;
811 }
812
813
814 void MathCursor::handleDelim(string const & l, string const & r)
815 {
816         handleNest(new MathDelimInset(l, r));
817 }
818
819
820 void MathCursor::handleNest(MathInset * p)
821 {
822         if (selection_) {
823                 selCut();
824                 p->cell(0) = theSelection.glue();
825         }
826         insert(MathAtom(p)); // this invalidates p!
827         pushRight(prevAtom());
828 }
829
830
831 void MathCursor::getPos(int & x, int & y)
832 {
833 #ifdef WITH_WARNINGS
834 #warning This should probably take cellXOffset and cellYOffset into account
835 #endif
836         x = xarray().xo() + xarray().pos2x(pos());
837         y = xarray().yo();
838 }
839
840
841 MathInset * MathCursor::par() const
842 {
843         return cursor().par_;
844 }
845
846
847 InsetFormulaBase * MathCursor::formula()
848 {
849         return formula_;
850 }
851
852
853 MathCursor::idx_type MathCursor::idx() const
854 {
855         return cursor().idx_;
856 }
857
858
859 MathCursor::idx_type & MathCursor::idx()
860 {
861         return cursor().idx_;
862 }
863
864
865 MathCursor::pos_type MathCursor::pos() const
866 {
867         return cursor().pos_;
868 }
869
870
871 MathCursor::pos_type & MathCursor::pos()
872 {
873         return cursor().pos_;
874 }
875
876
877 bool MathCursor::inMacroMode() const
878 {
879         return macroNamePos() != -1;
880 }
881
882
883 bool MathCursor::inMacroArgMode() const
884 {
885         return pos() > 0 && prevAtom()->getChar() == '#';
886 }
887
888
889 bool MathCursor::selection() const
890 {
891         return selection_;
892 }
893
894
895 MathGridInset * MathCursor::enclosingGrid(MathCursor::idx_type & idx) const
896 {
897         for (MathInset::difference_type i = Cursor_.size() - 1; i >= 0; --i) {
898                 MathGridInset * p = Cursor_[i].par_->asGridInset();
899                 if (p) {
900                         idx = Cursor_[i].idx_;
901                         return p;
902                 }
903         }
904         return 0;
905 }
906
907
908 void MathCursor::pullArg(bool goright)
909 {
910         dump("pullarg");
911         MathArray a = array();
912
913         MathScriptInset const * p = par()->asScriptInset();
914         if (p) {
915                 // special handling for scripts
916                 const bool up = p->hasUp();
917                 popLeft();
918                 MathScriptInset * q = nextAtom()->asScriptInset();
919                 if (q)
920                         q->removeScript(up);
921                 ++pos();
922                 array().insert(pos(), a);
923                 return;
924         }
925
926         if (popLeft()) {
927                 plainErase();
928                 array().insert(pos(), a);
929                 if (goright)
930                         pos() += a.size();
931         } else {
932                 formula()->mutateToText();
933         }
934 }
935
936
937 void MathCursor::normalize()
938 {
939         // rebreak
940         {
941                 MathIterator it = ibegin(formula()->par().nucleus());
942                 MathIterator et = iend(formula()->par().nucleus());
943                 for (; it != et; ++it)
944                         if (it.par()->asBoxInset())
945                                 it.par()->asBoxInset()->rebreak();
946         }
947
948         if (idx() >= par()->nargs()) {
949                 lyxerr << "this should not really happen - 1: "
950                        << idx() << " " << par()->nargs() << "\n";
951                 dump("error 2");
952         }
953         idx() = min(idx(), par()->nargs() - 1);
954
955         if (pos() > size()) {
956                 lyxerr << "this should not really happen - 2: "
957                         << pos() << " " << size() <<  " in idx: " << idx()
958                         << " in atom: '";
959                 WriteStream wi(lyxerr, false);
960                 par()->write(wi);
961                 lyxerr << "\n";
962                 dump("error 4");
963         }
964         pos() = min(pos(), size());
965 }
966
967
968 MathCursor::size_type MathCursor::size() const
969 {
970         return array().size();
971 }
972
973
974 MathCursor::col_type MathCursor::hullCol() const
975 {
976         return Cursor_[0].par_->asGridInset()->col(Cursor_[0].idx_);
977 }
978
979
980 MathCursor::row_type MathCursor::hullRow() const
981 {
982         return Cursor_[0].par_->asGridInset()->row(Cursor_[0].idx_);
983 }
984
985
986 bool MathCursor::hasPrevAtom() const
987 {
988         return pos() > 0;
989 }
990
991
992 bool MathCursor::hasNextAtom() const
993 {
994         return pos() < size();
995 }
996
997
998 MathAtom const & MathCursor::prevAtom() const
999 {
1000         lyx::Assert(pos() > 0);
1001         return array().at(pos() - 1);
1002 }
1003
1004
1005 MathAtom & MathCursor::prevAtom()
1006 {
1007         lyx::Assert(pos() > 0);
1008         return array().at(pos() - 1);
1009 }
1010
1011
1012 MathAtom const & MathCursor::nextAtom() const
1013 {
1014         lyx::Assert(pos() < size());
1015         return array().at(pos());
1016 }
1017
1018
1019 MathAtom & MathCursor::nextAtom()
1020 {
1021         lyx::Assert(pos() < size());
1022         return array().at(pos());
1023 }
1024
1025
1026 MathArray & MathCursor::array() const
1027 {
1028         static MathArray dummy;
1029
1030         if (idx() >= par()->nargs()) {
1031                 lyxerr << "############  idx_ " << idx() << " not valid\n";
1032                 return dummy;
1033         }
1034
1035         if (Cursor_.size() == 0) {
1036                 lyxerr << "############  Cursor_.size() == 0 not valid\n";
1037                 return dummy;
1038         }
1039
1040         return cursor().cell();
1041 }
1042
1043
1044 MathXArray & MathCursor::xarray() const
1045 {
1046         static MathXArray dummy;
1047
1048         if (Cursor_.size() == 0) {
1049                 lyxerr << "############  Cursor_.size() == 0 not valid\n";
1050                 return dummy;
1051         }
1052
1053         return cursor().xcell();
1054 }
1055
1056
1057 void MathCursor::idxNext()
1058 {
1059         par()->idxNext(idx(), pos());
1060 }
1061
1062
1063 void MathCursor::idxPrev()
1064 {
1065         par()->idxPrev(idx(), pos());
1066 }
1067
1068
1069 void MathCursor::splitCell()
1070 {
1071         if (idx() + 1 == par()->nargs())
1072                 return;
1073         MathArray ar = array();
1074         ar.erase(0, pos());
1075         array().erase(pos(), size());
1076         ++idx();
1077         pos() = 0;
1078         array().insert(0, ar);
1079 }
1080
1081
1082 void MathCursor::breakLine()
1083 {
1084         // leave inner cells
1085         while (popRight())
1086                 ;
1087
1088         MathHullInset * p = formula()->par()->asHullInset();
1089         if (!p)
1090                 return;
1091
1092         if (p->getType() == LM_OT_SIMPLE || p->getType() == LM_OT_EQUATION) {
1093                 p->mutate(LM_OT_EQNARRAY);
1094                 idx() = 0;
1095                 pos() = size();
1096         } else {
1097                 p->addRow(hullRow());
1098
1099                 // split line
1100                 const row_type r = hullRow();
1101                 for (col_type c = hullCol() + 1; c < p->ncols(); ++c)
1102                         p->cell(p->index(r, c)).swap(p->cell(p->index(r + 1, c)));
1103
1104                 // split cell
1105                 splitCell();
1106                 p->cell(idx()).swap(p->cell(idx() + p->ncols() - 1));
1107         }
1108 }
1109
1110
1111 //void MathCursor::readLine(MathArray & ar) const
1112 //{
1113 //      idx_type base = row() * par()->ncols();
1114 //      for (idx_type off = 0; off < par()->ncols(); ++off)
1115 //              ar.push_back(par()->cell(base + off));
1116 //}
1117
1118
1119 char MathCursor::valign() const
1120 {
1121         idx_type idx;
1122         MathGridInset * p = enclosingGrid(idx);
1123         return p ? p->valign() : '\0';
1124 }
1125
1126
1127 char MathCursor::halign() const
1128 {
1129         idx_type idx;
1130         MathGridInset * p = enclosingGrid(idx);
1131         return p ? p->halign(idx % p->ncols()) : '\0';
1132 }
1133
1134
1135 void MathCursor::getSelection(MathCursorPos & i1, MathCursorPos & i2) const
1136 {
1137         MathCursorPos anc = normalAnchor();
1138         if (anc < cursor()) {
1139                 i1 = anc;
1140                 i2 = cursor();
1141         } else {
1142                 i1 = cursor();
1143                 i2 = anc;
1144         }
1145 }
1146
1147
1148 MathCursorPos & MathCursor::cursor()
1149 {
1150         lyx::Assert(Cursor_.size());
1151         return Cursor_.back();
1152 }
1153
1154
1155 MathCursorPos const & MathCursor::cursor() const
1156 {
1157         lyx::Assert(Cursor_.size());
1158         return Cursor_.back();
1159 }
1160
1161
1162 bool MathCursor::goUpDown(bool up)
1163 {
1164         int xlow, xhigh, ylow, yhigh;
1165
1166   int xo, yo;
1167         getPos(xo, yo);
1168
1169         // try current cell first
1170         xarray().boundingBox(xlow, xhigh, ylow, yhigh);
1171         if (up)
1172                 yhigh = yo - 4;
1173         else
1174                 ylow = yo + 4;
1175         if (bruteFind(xo, yo, xlow, xhigh, ylow, yhigh))
1176                 return true;
1177
1178         // try to find an inset that knows better then we
1179         while (1) {
1180                 // we found a cell that think something "below" us.
1181                 if (up) {
1182                         if (par()->idxUp(idx()))
1183                                 break;
1184                 } else {
1185                         if (par()->idxDown(idx()))
1186                                 break;
1187                 }
1188
1189                 if (!popLeft()) {
1190                         // no such inset found, just take something "above"
1191                         return
1192                                 bruteFind(xo, yo,
1193                                         formula()->xlow(),
1194                                         formula()->xhigh(),
1195                                         up ? formula()->ylow() : yo + 4,
1196                                         up ? yo - 4 : formula()->yhigh()
1197                                 );
1198                 }
1199         }
1200         xarray().boundingBox(xlow, xhigh, ylow, yhigh);
1201         bruteFind(xo, yo, xlow, xhigh, ylow, yhigh);
1202         return true;
1203 }
1204
1205
1206 bool MathCursor::bruteFind(int x, int y, int xlow, int xhigh, int ylow, int yhigh)
1207 {
1208         cursor_type best_cursor;
1209         double best_dist = 1e10;
1210
1211         MathIterator it = ibegin(formula()->par().nucleus());
1212         MathIterator et = iend(formula()->par().nucleus());
1213         while (1) {
1214                 // avoid invalid nesting when selecting
1215                 if (!selection_ || positionable(it.cursor(), Anchor_)) {
1216                         int xo = it.position().xpos();
1217                         int yo = it.position().ypos();
1218                         if (xlow - 2 <= xo && xo <= xhigh + 2 &&
1219                                         ylow - 2 <= yo && yo <= yhigh + 2)
1220                         {
1221                                 double d = (x - xo) * (x - xo) + (y - yo) * (y - yo);
1222                                 if (d < best_dist) {
1223                                         best_dist   = d;
1224                                         best_cursor = it.cursor();
1225                                 }
1226                         }
1227                 }
1228
1229                 if (it == et)
1230                         break;
1231                 ++it;
1232         }
1233
1234         if (best_dist < 1e10)
1235                 Cursor_ = best_cursor;
1236         return best_dist < 1e10;
1237 }
1238
1239
1240 bool MathCursor::idxLeft()
1241 {
1242         return par()->idxLeft(idx(), pos());
1243 }
1244
1245
1246 bool MathCursor::idxRight()
1247 {
1248         return par()->idxRight(idx(), pos());
1249 }
1250
1251
1252 bool MathCursor::interpret(string const & s)
1253 {
1254         //lyxerr << "interpret 1: '" << s << "'\n";
1255         if (s.empty())
1256                 return true;
1257
1258         if (s.size() == 1)
1259                 return interpret(s[0]);
1260
1261         //lyxerr << "char: '" << s[0] << "'  int: " << int(s[0]) << endl;
1262         //owner_->getIntl()->getTrans().TranslateAndInsert(s[0], lt);
1263         //lyxerr << "trans: '" << s[0] << "'  int: " << int(s[0]) << endl;
1264
1265         if (s.size() >= 5 && s.substr(0, 5) == "cases") {
1266                 unsigned int n = 1;
1267                 istringstream is(s.substr(5).c_str());
1268                 is >> n;
1269                 n = max(1u, n);
1270                 niceInsert(MathAtom(new MathCasesInset(n)));
1271                 return true;
1272         }
1273
1274         if (s.size() >= 6 && s.substr(0, 6) == "matrix") {
1275                 unsigned int m = 1;
1276                 unsigned int n = 1;
1277                 string v_align;
1278                 string h_align;
1279                 istringstream is(s.substr(6).c_str());
1280                 is >> m >> n >> v_align >> h_align;
1281                 m = max(1u, m);
1282                 n = max(1u, n);
1283                 v_align += 'c';
1284                 niceInsert(MathAtom(new MathArrayInset("array", m, n, v_align[0], h_align)));
1285                 return true;
1286         }
1287
1288         if (s.size() >= 7 && s.substr(0, 7) == "replace") {
1289                 ReplaceData rep;
1290                 istringstream is(s.substr(7).c_str());
1291                 string from, to;
1292                 is >> from >> to;
1293                 mathed_parse_cell(rep.from, from);
1294                 mathed_parse_cell(rep.to, to);
1295                 lyxerr << "replacing '" << from << "' with '" << to << "'\n";
1296                 par()->replace(rep);
1297                 return true;
1298         }
1299
1300         if (s == "\\over" || s == "\\choose" || s == "\\atop") {
1301                 MathArray ar = array();
1302                 MathAtom t(createMathInset(s.substr(1)));
1303                 t->asNestInset()->cell(0).swap(array());
1304                 pos() = 0;
1305                 niceInsert(t);
1306                 popRight();
1307                 left();
1308                 return true;
1309         }
1310
1311         latexkeys const * l = in_word_set(s.substr(1));
1312         if (l && (l->token == LM_TK_FONT || l->token == LM_TK_OLDFONT)) {
1313                 lastcode_ = static_cast<MathTextCodes>(l->id);
1314                 return true;
1315         }
1316
1317         // prevent entering of recursive macros
1318         if (formula()->lyxCode() == Inset::MATHMACRO_CODE 
1319                 && formula()->getInsetName() == s.substr(1))
1320         {
1321                 lyxerr << "can't enter recursive macro\n";
1322                 return true;
1323         }
1324
1325         niceInsert(createMathInset(s.substr(1)));
1326         return true;
1327 }
1328
1329
1330 bool MathCursor::script(bool up)
1331 {
1332         macroModeClose();
1333         selCut();
1334         if (hasPrevAtom() && prevAtom()->asScriptInset()) {
1335                 prevAtom()->asScriptInset()->ensure(up);
1336                 pushRight(prevAtom());
1337                 idx() = up;
1338                 pos() = size();
1339         } else if (hasNextAtom() && nextAtom()->asScriptInset()) {
1340                 nextAtom()->asScriptInset()->ensure(up);
1341                 pushLeft(nextAtom());
1342                 idx() = up;
1343                 pos() = 0;
1344         } else {
1345                 plainInsert(MathAtom(new MathScriptInset(up)));
1346                 prevAtom()->asScriptInset()->ensure(up);
1347                 pushRight(prevAtom());
1348                 idx() = up;
1349                 pos() = 0;
1350         }
1351         selPaste();
1352         dump("1");
1353         return true;
1354 }
1355
1356
1357 bool MathCursor::interpret(char c)
1358 {
1359         if (inMacroArgMode()) {
1360                 --pos();
1361                 plainErase();
1362                 if ('1' <= c && c <= '9')
1363                         insert(MathAtom(new MathMacroArgument(c - '0')));
1364                 else {
1365                         insert(MathAtom(new MathSpecialCharInset('#')));
1366                         interpret(c); // try again
1367                 }
1368                 return true;
1369         }
1370
1371         // handle macroMode
1372         if (inMacroMode()) {
1373                 string name = macroName();
1374
1375                 if (name == "\\" && c == '\\') {
1376                         backspace();
1377                         interpret("\\backslash");
1378                         return true;
1379                 }
1380
1381                 if (isalpha(c)) {
1382                         insert(c, LM_TC_TEX);
1383                         return true;
1384                 }
1385
1386                 if (name == "\\") {
1387                         insert(c, LM_TC_TEX);
1388                         macroModeClose();
1389                         return true;
1390                 }
1391
1392                 macroModeClose();
1393
1394                 if (c == '\\')
1395                         insert(c, LM_TC_TEX);
1396                 else if (c != ' ')
1397                         insert(c, lastcode_);
1398
1399                 return true;
1400         }
1401
1402         if (selection_) {
1403                 selClear();
1404                 if (c == ' ')
1405                         return true;
1406                 // fall through in the other cases
1407         }
1408
1409         if (lastcode_ == LM_TC_TEXTRM || par()->asBoxInset()) {
1410                 // suppress direct insertion of two spaces in a row
1411                 // the still allows typing  '<space>a<space>' and deleting the 'a', but
1412                 // it is better than nothing...
1413                 if (c == ' ' && hasPrevAtom() && prevAtom()->getChar() == ' ')
1414                         return true;
1415                 insert(c, LM_TC_TEXTRM);
1416                 return true;
1417         }
1418
1419         if (c == ' ') {
1420                 if (hasPrevAtom() && prevAtom()->asSpaceInset()) {
1421                         prevAtom()->asSpaceInset()->incSpace();
1422                         return true;
1423                 }
1424                 if (popRight())
1425                         return true;
1426                 // if are at the very end, leave the formula
1427                 return pos() != size();
1428         }
1429
1430         if (c == '#') {
1431                 insert(c, LM_TC_TEX);
1432                 return true;
1433         }
1434
1435 /*
1436         if (strchr("{}", c)) {
1437                 insert(c, LM_TC_TEX);
1438                 return true;
1439         }
1440 */
1441
1442         if (c == '{') {
1443                 niceInsert(MathAtom(new MathBraceInset));
1444                 return true;
1445         }
1446
1447         if (c == '}') {
1448                 return true;
1449         }
1450
1451         if (strchr("$%", c)) {
1452                 insert(MathAtom(new MathSpecialCharInset(c)));
1453                 lastcode_ = LM_TC_VAR;
1454                 return true;
1455         }
1456
1457         if (isalpha(c) && lastcode_ == LM_TC_GREEK) {
1458                 insert(c, LM_TC_VAR);
1459                 return true;
1460         }
1461
1462         if (isalpha(c) && lastcode_ == LM_TC_GREEK1) {
1463                 insert(c, LM_TC_VAR);
1464                 lastcode_ = LM_TC_VAR;
1465                 return true;
1466         }
1467
1468         if (c == '\\') {
1469                 insert(c, LM_TC_TEX);
1470                 //bv->owner()->message(_("TeX mode"));
1471                 return true;
1472         }
1473
1474         // no special circumstances, so insert the character without any fuss
1475         insert(c, lastcode_ == LM_TC_MIN ? MathCharInset::nativeCode(c) : lastcode_);
1476         lastcode_ = LM_TC_MIN;
1477         return true;
1478 }
1479
1480
1481
1482 MathCursorPos MathCursor::normalAnchor() const
1483 {
1484         if (Anchor_.size() < Cursor_.size()) {
1485                 Anchor_ = Cursor_;
1486                 lyxerr << "unusual Anchor size\n";
1487                 dump("1");
1488         }
1489         //lyx::Assert(Anchor_.size() >= Cursor_.size());
1490         // use Anchor on the same level as Cursor
1491         MathCursorPos normal = Anchor_[Cursor_.size() - 1];
1492         if (Cursor_.size() < Anchor_.size() && !(normal < cursor())) {
1493                 // anchor is behind cursor -> move anchor behind the inset
1494                 ++normal.pos_;
1495         }
1496         return normal;
1497 }
1498
1499
1500 void MathCursor::stripFromLastEqualSign()
1501 {
1502         // find position of last '=' in the array
1503         MathArray & ar = cursor().cell();
1504         MathArray::const_iterator et = ar.end();
1505         for (MathArray::const_iterator it = ar.begin(); it != ar.end(); ++it)
1506                 if ((*it)->getChar() == '=')
1507                         et = it;
1508
1509         // delete everything behind this position
1510         ar.erase(et - ar.begin(), ar.size());
1511         pos() = ar.size();
1512 }
1513
1514
1515 void MathCursor::setSelection(cursor_type const & where, size_type n)
1516 {
1517         selection_ = true;
1518         Anchor_ = where;
1519         Cursor_ = where;
1520         cursor().pos_ += n;
1521 }
1522
1523
1524 string MathCursor::info() const
1525 {
1526         ostringstream os;
1527         if (pos() > 0)
1528                 prevAtom()->infoize(os);
1529         return os.str();
1530 }