]> git.lyx.org Git - lyx.git/blob - src/mathed/math_cursor.C
cosmetics
[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 #ifdef __GNUG__
19 #pragma implementation
20 #endif
21
22 #include <config.h>
23 #include <algorithm>
24 #include <cctype>
25
26 #include "debug.h"
27 #include "LColor.h"
28 #include "Painter.h"
29 #include "mathed/support.h"
30 #include "formulabase.h"
31 #include "math_cursor.h"
32 #include "math_arrayinset.h"
33 #include "math_bigopinset.h"
34 #include "math_symbolinset.h"
35 #include "math_decorationinset.h"
36 #include "math_deliminset.h"
37 #include "math_dotsinset.h"
38 #include "math_fracinset.h"
39 #include "math_funcinset.h"
40 #include "math_funcliminset.h"
41 #include "math_gridinset.h"
42 #include "math_macro.h"
43 #include "math_macroarg.h"
44 #include "math_macrotable.h"
45 #include "math_macrotemplate.h"
46 #include "math_matrixinset.h"
47 #include "math_rootinset.h"
48 #include "math_spaceinset.h"
49 #include "math_sqrtinset.h"
50 #include "support/lstrings.h"
51 #include "math_scriptinset.h"
52 #include "math_parser.h"
53
54 using std::endl;
55 using std::min;
56 using std::max;
57 using std::isalnum;
58
59
60 namespace {
61
62 struct Selection
63 {
64         void grab(MathCursor const & cursor)
65         {
66                 data_.clear();
67                 MathCursorPos i1;
68                 MathCursorPos i2;
69                 cursor.getSelection(i1, i2); 
70                 if (i1.idx_ == i2.idx_)
71                         data_.push_back(MathArray(i1.cell(), i1.pos_, i2.pos_));
72                 else {
73                         std::vector<int> indices = i1.par_->idxBetween(i1.idx_, i2.idx_);
74                         for (unsigned i = 0; i < indices.size(); ++i)
75                                 data_.push_back(i1.cell(indices[i]));
76                 }
77         }
78
79         void erase(MathCursor & cursor)
80         {
81                 MathCursorPos i1;
82                 MathCursorPos i2;
83                 cursor.getSelection(i1, i2); 
84                 if (i1.idx_ == i2.idx_) {
85                         i1.cell().erase(i1.pos_, i2.pos_);
86                 } else {
87                         std::vector<int> indices = i1.par_->idxBetween(i1.idx_, i2.idx_);
88                         for (unsigned i = 0; i < indices.size(); ++i)
89                                 i1.cell(indices[i]).erase();
90                 }
91                 cursor.cursor() = i1;
92         }
93
94         void paste(MathCursor & cursor) const
95         {
96                 cursor.insert(glue());
97         }
98
99         // glues selection to one cell
100         MathArray glue() const
101         {
102                 MathArray ar;
103                 for (unsigned i = 0; i < data_.size(); ++i)
104                         ar.push_back(data_[i]);
105                 return ar;
106         }
107
108         void clear()
109         {
110                 data_.clear();
111         }
112
113         std::vector<MathArray> data_;
114 };
115
116
117 Selection theSelection;
118
119
120 std::ostream & operator<<(std::ostream & os, MathCursorPos const & p)
121 {
122         os << "(par: " << p.par_ << " idx: " << p.idx_
123            << " pos: " << p.pos_ << ")";
124         return os;
125 }
126
127 }
128
129
130 MathCursor::MathCursor(InsetFormulaBase * formula)
131         : formula_(formula), lastcode_(LM_TC_MIN), imacro_(0), selection_(false)
132 {
133         first();
134 }
135
136
137 MathCursor::~MathCursor()
138 {
139         delete imacro_;
140 }
141
142 void MathCursor::pushLeft(MathInset * par)
143 {
144         MathCursorPos p;
145         p.par_ = par;
146         par->idxFirst(p.idx_, p.pos_);
147         Cursor_.push_back(p);
148 }
149
150
151 void MathCursor::pushRight(MathInset * par)
152 {
153         posLeft();
154         MathCursorPos p;
155         p.par_ = par;
156         par->idxLast(p.idx_, p.pos_);
157         Cursor_.push_back(p);
158 }
159
160
161 bool MathCursor::popLeft()
162 {
163         if (Cursor_.size() <= 1)
164                 return false;
165         Cursor_.pop_back();
166         return true;
167 }
168
169 bool MathCursor::popRight()
170 {
171         if (Cursor_.size() <= 1)
172                 return false;
173         Cursor_.pop_back();
174         posRight();
175         return true;
176 }
177
178
179 MathInset * MathCursor::parInset(int i) const
180 {
181         return Cursor_[i].par_;
182 }
183
184
185 void MathCursor::dump(char const * what) const
186 {
187         return;
188
189         lyxerr << "MC: " << what << "\n";
190         for (unsigned i = 0; i < Cursor_.size(); ++i)
191                 lyxerr << "  i: " << i 
192                         << " pos: " << Cursor_[i].pos_
193                         << " idx: " << Cursor_[i].idx_
194                         << " par: " << Cursor_[i].par_ << "\n";
195
196         //lyxerr        << " sel: " << selection_ << " data: " << array() << "\n";
197 }
198
199
200 void MathCursor::seldump(char const * str) const
201 {
202         //lyxerr << "SEL: " << str << ": '" << theSelection << "'\n";
203         //dump("   Pos");
204         return;
205
206         lyxerr << "\n\n\n=================vvvvvvvvvvvvv=======================   "
207                 <<  str << "\ntheSelection: " << selection_
208                 << " '" << theSelection.glue() << "'\n";
209         for (unsigned int i = 0; i < Cursor_.size(); ++i) 
210                 lyxerr << Cursor_[i].par_ << "\n'" << Cursor_[i].cell() << "'\n";
211         lyxerr << "\n";
212         for (unsigned int i = 0; i < Anchor_.size(); ++i) 
213                 lyxerr << Anchor_[i].par_ << "\n'" << Anchor_[i].cell() << "'\n";
214         //lyxerr << "\ncursor.pos_: " << pos();
215         //lyxerr << "\nanchor.pos_: " << anchor().pos_;
216         lyxerr << "\n===================^^^^^^^^^^^^=====================\n\n\n";
217 }
218
219
220 bool MathCursor::isInside(MathInset const * p) const
221 {
222         for (unsigned i = 0; i < Cursor_.size(); ++i) 
223                 if (parInset(i) == p) 
224                         return true;
225         return false;
226 }
227
228
229 bool MathCursor::openable(MathInset * p, bool sel, bool useupdown) const
230 {
231         if (!p)
232                 return false;
233
234         if (!(p->isActive() || (useupdown && p->isScriptInset())))
235                 return false;
236
237         if (sel) {
238                 // we can't move into anything new during selection
239                 if (Cursor_.size() == Anchor_.size())
240                         return false;
241                 if (p != Anchor_[Cursor_.size()].par_)
242                         return false;
243         }
244         return true;
245 }
246
247
248 bool MathCursor::posLeft()
249 {
250         if (pos() == 0)
251                 return false;
252         --pos();
253         return true;
254 }
255
256
257 bool MathCursor::posRight()
258 {
259         if (pos() == size())
260                 return false;
261         ++pos();
262         return true;
263 }
264
265
266 bool MathCursor::left(bool sel)
267 {
268         dump("Left 1");
269         if (imacro_) {
270                 // was MacroModeBack()
271                 if (!imacro_->name().empty()) {
272                         imacro_->setName(imacro_->name().substr(0, imacro_->name().length()-1));
273                         imacro_->metrics(imacro_->size());
274                 } else
275                         macroModeClose();
276                 return true;
277         }
278         selHandle(sel);
279         clearLastCode();
280
281         MathInset * p = prevInset();
282         if (openable(p, sel, false)) {
283                 pushRight(p);
284                 return true;
285         } 
286         
287         return posLeft() || idxLeft() || popLeft();
288 }
289
290
291 bool MathCursor::right(bool sel)
292 {
293         dump("Right 1");
294         if (imacro_) {
295                 macroModeClose();
296                 return true;
297         }
298         selHandle(sel);
299         clearLastCode();
300
301         MathInset * p = nextInset();
302         if (openable(p, sel, false)) {
303                 pushLeft(p);
304                 return true;
305         }
306
307         return posRight() || idxRight() || popRight();
308 }
309
310
311 void MathCursor::first()
312 {
313         Cursor_.clear();
314         pushLeft(outerPar());
315 }
316
317
318 void MathCursor::last()
319 {
320         first();
321         end();
322 }
323
324
325 void MathCursor::setPos(int x, int y)
326 {
327         dump("setPos 1");
328         //lyxerr << "MathCursor::setPos x: " << x << " y: " << y << "\n";
329
330         macroModeClose();
331         lastcode_ = LM_TC_MIN;
332         first();
333
334         cursor().par_  = outerPar();
335
336         while (1) {
337                 idx() = -1;
338                 cursor().pos_ = -1;
339                 //lyxerr << "found idx: " << idx_ << " cursor: " << pos()  << "\n";
340                 int distmin = 1 << 30; // large enough
341                 for (int i = 0; i < par()->nargs(); ++i) {
342                         MathXArray const & ar = par()->xcell(i);
343                         int x1 = x - ar.xo();
344                         int y1 = y - ar.yo();
345                         int c  = ar.x2pos(x1);
346                         int xx = abs(x1 - ar.pos2x(c));
347                         int yy = abs(y1);
348                         //lyxerr << "idx: " << i << " xx: " << xx << " yy: " << yy
349                         //      << " c: " << c  << " xo: " << ar.xo() << "\n";
350                         if (yy + xx <= distmin) {
351                                 distmin        = yy + xx;
352                                 idx()  = i;
353                                 pos()  = c;
354                         }
355                 }
356                 //lyxerr << "found idx: " << idx() << " cursor: "
357                 //      << pos()  << "\n";
358                 MathInset * n = nextInset();
359                 MathInset * p = prevInset();
360                 if (openable(n, selection_, true) && n->covers(x, y))
361                         pushLeft(n);
362                 else if (openable(p, selection_, true) && p->covers(x, y))
363                         pushRight(p);
364                 else 
365                         break;
366         }
367         dump("setPos 2");
368 }
369
370
371 void MathCursor::home()
372 {
373         dump("home 1");
374         macroModeClose();
375         clearLastCode();
376         if (!par()->idxHome(idx(), pos())) 
377                 popLeft();
378         dump("home 2");
379 }
380
381
382 void MathCursor::end()
383 {
384         dump("end 1");
385         macroModeClose();
386         clearLastCode();
387         if (!par()->idxEnd(idx(), pos()))
388                 popRight();
389         dump("end 2");
390 }
391
392
393 void MathCursor::plainErase()
394 {
395         array().erase(pos());
396 }
397
398
399 void MathCursor::insert(char c, MathTextCodes t)
400 {
401         //lyxerr << "inserting '" << c << "'\n";
402         if (selection_)
403                 selDel();
404
405         if (t != LM_TC_MIN)
406                 lastcode_ = t;
407
408         if (imacro_ && !(MathIsAlphaFont(t) || t == LM_TC_MIN))
409                 macroModeClose();
410
411         if (imacro_) {
412                 if (MathIsAlphaFont(t) || t == LM_TC_MIN) {
413                         // was MacroModeinsert(c);
414                         imacro_->setName(imacro_->name() + c);
415                         return;
416                 }
417         }
418
419         array().insert(pos(), c, t);
420         posRight();
421 }
422
423
424 void MathCursor::insert(MathInset * p)
425 {
426         macroModeClose();
427
428         if (selection_) {
429                 if (p->nargs())
430                         selCut();
431                 else
432                         selDel();
433         }
434
435         array().insert(pos(), p);
436         posRight();
437 }
438
439
440 void MathCursor::insert(MathArray const & ar)
441 {
442         macroModeClose();
443         if (selection_)
444                 selCut();
445
446         array().insert(pos(), ar);
447         pos() += ar.size();
448 }
449
450
451 void MathCursor::backspace()
452 {
453         if (inMacroMode()) {
454                 left();
455                 return;
456         }
457
458         if (posLeft()) {
459                 plainErase();
460                 return;
461         }
462
463         if (size()) {
464                 pullArg(false);
465                 return;
466         }
467
468         erase();
469 }
470
471
472 void MathCursor::erase()
473 {
474         dump("erase 1");
475         if (imacro_)
476                 return;
477
478         if (selection_) {
479                 selDel();
480                 return;
481         }
482
483         // delete empty cells if necessary
484         if (pos() == 0 && array().empty()) {
485                 bool popit;
486                 bool removeit;
487                 par()->idxDelete(idx(), popit, removeit);
488                 if (popit && popLeft() && removeit)
489                         plainErase();
490                 return;
491         }
492
493         if (pos() < size())
494                 plainErase();
495
496         dump("erase 2");
497 }
498
499
500 void MathCursor::delLine()
501 {
502         macroModeClose();
503
504         if (selection_) {
505                 selDel();
506                 return;
507         }
508
509         if (par()->nrows() > 1)
510                 par()->delRow(row());
511 }
512
513
514 bool MathCursor::up(bool sel)
515 {
516         dump("up 1");
517         macroModeClose();
518         selHandle(sel);
519
520         if (selection_)
521                 return idxUp() || popLeft();
522
523         // check whether we could move into an inset on the right or on the left
524         MathInset * p = nextInset();
525         if (p) {
526                 int idxx, poss;
527                 if (p->idxFirstUp(idxx, poss)) {
528                         pushLeft(p);
529                         idx() = idxx;
530                         pos() = poss;
531                         dump("up 3");
532                         return true;
533                 }
534         }
535
536         p = prevInset();
537         if (p) {
538                 int idxx, poss;
539                 if (p->idxLastUp(idxx, poss)) {
540                         pushRight(p);
541                         idx() = idxx;
542                         pos() = poss;
543                         dump("up 4");
544                         return true;
545                 }
546         }
547
548         return idxUp() || popLeft();
549 }
550
551
552 bool MathCursor::down(bool sel)
553 {
554         dump("down 1");
555         macroModeClose();
556         selHandle(sel);
557
558         if (selection_) 
559                 return idxDown() || popLeft();
560
561         // check whether we could move into an inset on the right or on the left
562         MathInset * p = nextInset();
563         if (p) {
564                 int idxx = 0;
565                 int poss = 0;
566                 if (p->idxFirstDown(idxx, poss)) {
567                         pushLeft(p);
568                         idx() = idxx;
569                         pos() = poss;
570                         dump("Down 3");
571                         return true;
572                 }
573         }
574
575         p = prevInset();
576         if (p) {
577                 int idxx = 0;
578                 int poss = 0;
579                 if (p->idxLastDown(idxx, poss)) {
580                         pushRight(p);
581                         idx() = idxx;
582                         pos() = poss;
583                         dump("Down 4");
584                         return true;
585                 }
586         }
587
588         return idxDown() || popLeft();
589 }
590
591
592 bool MathCursor::toggleLimits()
593 {
594         MathScriptInset * p = prevScriptInset();
595         if (!p)
596                 return false;
597         int old = p->limits();
598         p->limits(old < 0 ? 1 : -1);
599         return old != p->limits();
600 }
601
602
603 void MathCursor::setSize(MathStyles size)
604 {
605         par()->userSetSize(size);
606 }
607
608
609
610 void MathCursor::interpret(string const & s)
611 {
612         //lyxerr << "interpret: '" << s << "'\n";
613         //lyxerr << "in: " << in_word_set(s) << " \n";
614
615         if (s.empty())
616                 return;
617
618         if (s[0] == '^' || s[0] == '_') {
619                 bool const up = (s[0] == '^');
620                 selCut();       
621                 MathScriptInset * p = prevScriptInset();
622                 if (!p) {
623                         MathInset * b = prevInset();
624                         if (b && b->isScriptable()) {
625                                 p = new MathScriptInset(up, !up, b->clone());
626                                 posLeft();
627                                 plainErase();
628                         } else {
629                                 p = new MathScriptInset(up, !up);
630                         }
631                         insert(p);
632                 }
633                 pushRight(p);
634                 if (up)
635                         p->up(true);
636                 else
637                         p->down(true);
638                 idx() = up ? 0 : 1;
639                 pos() = 0;
640                 selPaste();
641                 return;
642         }
643
644         if (s[0] == '!' || s[0] == ','  || s[0] == ':' || s[0] == ';') {
645                 int sp = (s[0] == ',') ? 1:((s[0] == ':') ? 2:((s[0] == ';') ? 3: 0));
646                 insert(new MathSpaceInset(sp));
647                 return;
648         }
649
650         MathInset * p = 0;
651         latexkeys const * l = in_word_set(s);
652
653         if (l == 0) {
654                 if (s == "root") 
655                         p = new MathRootInset;
656                 else if (MathMacroTable::hasTemplate(s))
657                         p = new MathMacro(MathMacroTable::provideTemplate(s));
658                 else if (s.size() > 7 && s.substr(0, 7) == "matrix ") {
659                         int m = 1;
660                         int n = 1;
661                         string v_align;
662                         string h_align;
663                         istringstream is(s.substr(7).c_str());
664                         is >> m >> n >> v_align >> h_align;
665                         m = std::max(1, m);
666                         n = std::max(1, n);
667                         v_align += 'c';
668                         MathArrayInset * pp = new MathArrayInset(m, n);
669                         pp->valign(v_align[0]);
670                         pp->halign(h_align);
671                         p = pp;
672                 }
673                 else
674                         p = new MathFuncInset(s);
675         } else {
676                 switch (l->token) {
677                         case LM_TK_BIGSYM:
678                                 p = new MathBigopInset(l);
679                                 break;
680
681                         case LM_TK_FUNCLIM:
682                                 p = new MathFuncLimInset(l);
683                                 break;
684
685                         case LM_TK_SYM: 
686                                 p = new MathSymbolInset(l);
687                                 break;
688
689                         case LM_TK_STACK:
690                                 p = new MathFracInset("stackrel");
691                                 break;
692
693                         case LM_TK_FRAC:
694                                 p = new MathFracInset("frac");
695                                 break;
696
697                         case LM_TK_SQRT:
698                                 p = new MathSqrtInset;
699                                 break;
700
701                         case LM_TK_DECORATION:
702                                 p = new MathDecorationInset(l);
703                                 break;
704
705                         case LM_TK_SPACE:
706                                 p = new MathSpaceInset(l->id);
707                                 break;
708
709                         case LM_TK_DOTS:
710                                 p = new MathDotsInset(l);
711                                 break;
712
713                         case LM_TK_MACRO:
714                                 p = new MathMacro(MathMacroTable::provideTemplate(s));
715                                 break;
716
717                         default:
718                                 p = new MathFuncInset(l->name);
719                                 break;
720                 }
721         }
722
723         if (p) {
724                 selCut();
725                 insert(p);
726                 if (p->nargs()) {
727                         posLeft();
728                         right();  // do not push for e.g. MathSymbolInset
729                         selPaste();
730                 }
731                 p->metrics(p->size());
732         }
733 }
734
735
736 void MathCursor::macroModeOpen()
737 {
738         if (!imacro_) {
739                 imacro_ = new MathFuncInset("");
740                 array().insert(pos(), imacro_);
741                 ++pos();
742                 //insert(imacro_);
743         } else
744                 lyxerr << "Math Warning: Already in macro mode" << endl;
745 }
746
747
748 void MathCursor::macroModeClose()
749 {
750         if (imacro_) {
751                 string name = imacro_->name();
752                 posLeft();
753                 plainErase();
754                 imacro_ = 0;
755                 interpret(name);
756         }
757 }
758
759
760 void MathCursor::selCopy()
761 {
762         seldump("selCopy");
763         if (selection_) {
764                 theSelection.grab(*this);
765                 selClear();
766         }
767 }
768
769
770 void MathCursor::selCut()
771 {
772         seldump("selCut");
773         if (selection_) {
774                 theSelection.grab(*this);
775                 theSelection.erase(*this);
776                 selClear();
777         } else {
778                 theSelection.clear();
779         }
780 }
781
782
783 void MathCursor::selDel()
784 {
785         seldump("selDel");
786         if (selection_) {
787                 theSelection.erase(*this);
788                 selClear();
789         }
790 }
791
792
793 void MathCursor::selPaste()
794 {
795         seldump("selPaste");
796         theSelection.paste(*this);
797         selClear();
798 }
799
800
801 void MathCursor::selHandle(bool sel)
802 {
803         if (sel == selection_)
804                 return;
805
806         theSelection.clear();
807         Anchor_    = Cursor_;
808         selection_ = sel;
809 }
810
811
812 void MathCursor::selStart()
813 {
814         seldump("selStart");
815         if (selection_)
816                 return;
817
818         theSelection.clear();
819         Anchor_ = Cursor_;
820         selection_ = true;
821 }
822
823
824 void MathCursor::selClear()
825 {
826         seldump("selClear");
827         selection_ = false;
828 }
829
830
831 void MathCursor::drawSelection(Painter & pain) const
832 {
833         if (!selection_)
834                 return;
835
836         MathCursorPos i1;
837         MathCursorPos i2;
838         getSelection(i1, i2);
839
840         //lyxerr << "selection from: " << i1 << " to " << i2 << "\n";
841
842         if (i1.idx_ == i2.idx_) {
843                 MathXArray & c = i1.xcell();
844                 int x1 = c.xo() + c.pos2x(i1.pos_);
845                 int y1 = c.yo() - c.ascent();
846                 int x2 = c.xo() + c.pos2x(i2.pos_);
847                 int y2 = c.yo() + c.descent();
848                 pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, LColor::selection);
849         } else {
850
851                 std::vector<int> indices = i1.par_->idxBetween(i1.idx_, i2.idx_);
852                 for (unsigned i = 0; i < indices.size(); ++i) {
853                         MathXArray & c = i1.xcell(indices[i]);
854                         int x1 = c.xo();
855                         int y1 = c.yo() - c.ascent();
856                         int x2 = c.xo() + c.width();
857                         int y2 = c.yo() + c.descent();
858                         pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, LColor::selection);
859                 }
860         }
861 }
862
863
864 void MathCursor::handleFont(MathTextCodes t)
865 {
866         if (selection_) {
867                 MathCursorPos i1;
868                 MathCursorPos i2;
869                 getSelection(i1, i2); 
870                 if (i1.idx_ == i2.idx_) {
871                         MathArray & ar = i1.cell();
872                         for (int pos = i1.pos_; pos != i2.pos_; ++pos)
873                                 if (isalnum(ar.getChar(pos))) { 
874                                         MathTextCodes c = ar.getCode(pos) == t ? LM_TC_VAR : t;
875                                         ar.setCode(pos, c);
876                                 }
877                 }
878         } else 
879                 lastcode_ = (lastcode_ == t) ? LM_TC_VAR : t;
880 }
881
882
883 void MathCursor::handleAccent(string const & name)
884 {
885         latexkeys const * l = in_word_set(name);
886         if (l)
887                 handleNest(new MathDecorationInset(l));
888 }
889
890
891 void MathCursor::handleDelim(int l, int r)
892 {
893         handleNest(new MathDelimInset(l, r));
894 }
895
896
897 void MathCursor::handleNest(MathInset * p)
898 {
899         if (selection_) {
900                 selCut();
901                 p->cell(0) = theSelection.glue();
902         }
903         insert(p);
904         pushRight(p);
905 }
906
907
908 void MathCursor::getPos(int & x, int & y)
909 {
910         x = xarray().xo() + xarray().pos2x(pos());
911         y = xarray().yo();
912 }
913
914
915 MathTextCodes MathCursor::nextCode() const
916 {
917         return array().getCode(pos()); 
918 }
919
920
921 MathTextCodes MathCursor::prevCode() const
922 {
923         return array().getCode(pos() - 1); 
924 }
925
926
927 MathInset * MathCursor::par() const
928 {
929         return cursor().par_;
930 }
931
932
933 InsetFormulaBase const * MathCursor::formula()
934 {
935         return formula_;
936 }
937
938
939 int MathCursor::idx() const
940 {
941         return cursor().idx_;
942 }
943
944
945 int & MathCursor::idx()
946 {
947         return cursor().idx_;
948 }
949
950
951 int MathCursor::pos() const
952 {
953         return cursor().pos_;
954 }
955
956
957 int & MathCursor::pos()
958 {
959         return cursor().pos_;
960 }
961
962
963 bool MathCursor::inMacroMode() const
964 {
965         return imacro_;
966 }
967
968
969 bool MathCursor::selection() const
970 {
971         return selection_;
972 }
973
974
975 void MathCursor::clearLastCode()
976 {
977         lastcode_ = LM_TC_MIN;
978 }
979
980
981 void MathCursor::setLastCode(MathTextCodes t)
982 {
983         lastcode_ = t;
984 }
985
986
987 MathTextCodes MathCursor::getLastCode() const
988 {
989         return lastcode_;
990 }
991
992
993 MathArrayInset * MathCursor::enclosingArray(int & idx) const
994 {
995         for (int i = Cursor_.size() - 1; i >= 0; --i) {
996                 if (Cursor_[i].par_->isArray()) {
997                         idx = Cursor_[i].idx_;
998                         return static_cast<MathArrayInset *>(Cursor_[i].par_);
999                 }
1000         }
1001         return 0;
1002 }
1003
1004
1005 void MathCursor::pullArg(bool goright)
1006 {
1007         // pullArg
1008         dump("pullarg");
1009         MathArray a = array();
1010         if (popLeft()) {
1011                 plainErase();
1012                 array().insert(pos(), a);
1013                 if (goright) 
1014                         pos() += a.size();
1015         }
1016 }
1017
1018
1019 MathStyles MathCursor::style() const
1020 {
1021         return xarray().style();
1022 }
1023
1024
1025 void MathCursor::normalize() const
1026 {
1027 #ifdef WITH_WARNINGS
1028 #warning This is evil!
1029 #endif
1030         MathCursor * it = const_cast<MathCursor *>(this);
1031
1032         if (idx() < 0)
1033                 lyxerr << "this should not really happen - 1: " << idx() << "\n";
1034         if (idx() >= par()->nargs()) {
1035                 lyxerr << "this should not really happen - 2: "
1036                        << idx() << " " << par()->nargs() << "\n";
1037                 dump("error 2");
1038         }
1039         it->idx()    = max(idx(), 0);
1040         it->idx()    = min(idx(), par()->nargs() - 1);
1041
1042         if (pos() < 0)
1043                 lyxerr << "this should not really happen - 3: " << pos() << "\n";
1044         if (pos() > size()) {
1045                 lyxerr << "this should not really happen - 4: "
1046                        << pos() << " " << size() << "\n";
1047                 dump("error 4");
1048         }
1049         it->pos() = max(pos(), 0);
1050         it->pos() = min(pos(), size());
1051 }
1052
1053
1054 int MathCursor::size() const
1055 {
1056         return array().size();
1057 }
1058
1059
1060 int MathCursor::col() const
1061 {
1062         return par()->col(idx());
1063 }
1064
1065
1066 int MathCursor::row() const
1067 {
1068         return par()->row(idx());
1069 }
1070
1071
1072 /*
1073 char MathCursorPos::getChar() const
1074 {
1075         return array().getChar(pos());
1076 }
1077
1078
1079 string MathCursorPos::readString()
1080 {
1081         string s;
1082         int code = nextCode();
1083         for ( ; OK() && nextCode() == code; Next()) 
1084                 s += getChar();
1085
1086         return s;
1087 }
1088 */
1089
1090
1091 MathInset * MathCursor::prevInset() const
1092 {
1093         normalize();
1094         if (!pos())
1095                 return 0;
1096         return array().nextInset(pos() - 1);
1097 }
1098
1099
1100 MathInset * MathCursor::nextInset() const
1101 {
1102         normalize();
1103         return array().nextInset(pos());
1104 }
1105
1106
1107 MathScriptInset * MathCursor::prevScriptInset() const
1108 {
1109         normalize();
1110         MathInset * p = prevInset();
1111         return (p && p->isScriptInset()) ? static_cast<MathScriptInset *>(p) : 0;
1112 }
1113
1114
1115 MathSpaceInset * MathCursor::prevSpaceInset() const
1116 {
1117         normalize();
1118         MathInset * p = prevInset();
1119         return (p && p->isSpaceInset()) ? static_cast<MathSpaceInset *>(p) : 0;
1120 }
1121
1122
1123 MathArray & MathCursor::array() const
1124 {
1125         static MathArray dummy;
1126         if (!par()) {
1127                 lyxerr << "############  par_ not valid\n";
1128                 return dummy;
1129         }
1130
1131         if (idx() < 0 || idx() >= par()->nargs()) {
1132                 lyxerr << "############  idx_ " << idx() << " not valid\n";
1133                 return dummy;
1134         }
1135
1136         return cursor().cell();
1137 }
1138
1139
1140 MathXArray & MathCursor::xarray() const
1141 {
1142         return cursor().xcell();
1143 }
1144
1145
1146 int MathCursor::xpos() const 
1147 {
1148         normalize();
1149         return xarray().pos2x(pos());
1150 }
1151
1152
1153 void MathCursor::gotoX(int x)
1154 {
1155         pos() = xarray().x2pos(x);      
1156 }
1157
1158
1159 void MathCursor::idxNext()
1160 {
1161         par()->idxNext(idx(), pos());
1162 }
1163
1164
1165 void MathCursor::idxPrev()
1166 {
1167         par()->idxPrev(idx(), pos());
1168 }
1169
1170
1171 void MathCursor::splitCell()
1172 {
1173         if (idx() == par()->nargs() - 1) 
1174                 return;
1175         MathArray ar = array();
1176         ar.erase(0, pos());
1177         array().erase(pos(), size());
1178         ++idx();
1179         pos() = 0;
1180         array().insert(0, ar);
1181 }
1182
1183
1184 void MathCursor::breakLine()
1185 {
1186         MathMatrixInset * p = outerPar();
1187         if (p->getType() == LM_OT_SIMPLE || p->getType() == LM_OT_EQUATION) {
1188                 p->mutate(LM_OT_EQNARRAY);
1189                 p->addRow(0);
1190                 idx() = p->nrows();
1191                 pos() = 0;
1192         } else {
1193                 p->addRow(row());
1194
1195                 // split line
1196                 const int r = row();
1197                 for (int c = col() + 1; c < p->ncols(); ++c) {
1198                         const int i1 = p->index(r, c);
1199                         const int i2 = p->index(r + 1, c);      
1200                         lyxerr << "swapping cells " << i1 << " and " << i2 << "\n";
1201                         p->cell(i1).swap(p->cell(i2));
1202                 }
1203
1204                 // split cell
1205                 splitCell();
1206                 p->cell(idx()).swap(p->cell(idx() + p->ncols() - 1));
1207         }
1208 }
1209
1210
1211 char MathCursor::valign() const
1212 {
1213         int idx;
1214         MathArrayInset * p = enclosingArray(idx);
1215         return p ? p->valign() : 0;
1216 }
1217
1218
1219 char MathCursor::halign() const
1220 {
1221         int idx;
1222         MathArrayInset * p = enclosingArray(idx);
1223         return p ? p->halign(idx % p->ncols()) : 0;
1224 }
1225
1226
1227 MathCursorPos MathCursor::firstSelectionPos() const
1228 {
1229         MathCursorPos anc = normalAnchor();
1230         return anc < cursor() ? anc : cursor(); 
1231 }
1232
1233
1234 MathCursorPos MathCursor::lastSelectionPos() const
1235 {
1236         MathCursorPos anc = normalAnchor();
1237         return anc < cursor() ? cursor() : anc; 
1238 }
1239
1240
1241 void MathCursor::getSelection(MathCursorPos & i1, MathCursorPos & i2) const
1242 {
1243         MathCursorPos anc = normalAnchor();
1244         if (anc < cursor()) {
1245                 i1 = anc;
1246                 i2 = cursor();
1247         } else {
1248                 i1 = cursor();
1249                 i2 = anc;
1250         }
1251 }
1252
1253
1254 MathCursorPos & MathCursor::cursor()
1255 {
1256         return Cursor_.back();
1257 }
1258
1259
1260 MathCursorPos const & MathCursor::cursor() const
1261 {
1262         return Cursor_.back();
1263 }
1264
1265
1266
1267 ////////////////////////////////////////////////////////////////////////
1268
1269
1270 bool operator==(MathCursorPos const & ti, MathCursorPos const & it)
1271 {
1272         return ti.par_ == it.par_ && ti.idx_ == it.idx_ && ti.pos_ == it.pos_;
1273 }
1274
1275
1276 bool operator<(MathCursorPos const & ti, MathCursorPos const & it)
1277 {
1278         if (ti.par_ != it.par_) {
1279                 lyxerr << "can't compare cursor and anchor in different insets\n";
1280                 return true;
1281         }
1282         if (ti.idx_ != it.idx_)
1283                 return ti.idx_ < it.idx_;
1284         return ti.pos_ < it.pos_;
1285 }
1286
1287
1288 MathArray & MathCursorPos::cell(int idx) const
1289 {
1290         return par_->cell(idx);
1291 }
1292
1293 MathArray & MathCursorPos::cell() const
1294 {
1295         return par_->cell(idx_);
1296 }
1297
1298
1299 MathXArray & MathCursorPos::xcell(int idx) const
1300 {
1301         return par_->xcell(idx);
1302 }
1303
1304
1305 MathXArray & MathCursorPos::xcell() const
1306 {
1307         return par_->xcell(idx_);
1308 }
1309
1310
1311 MathCursorPos MathCursor::normalAnchor() const
1312 {
1313         // use Anchor on the same level as Cursor
1314         MathCursorPos normal = Anchor_[Cursor_.size() - 1];
1315         if (Cursor_.size() < Anchor_.size() && !(normal < cursor())) {
1316                 // anchor is behind cursor -> move anchor behind the inset
1317                 ++normal.pos_;
1318         }
1319         //lyxerr << "normalizing: from " << Anchor_[Anchor_.size() - 1] << " to "
1320         //      << normal << "\n";
1321         return normal;
1322 }
1323
1324
1325 bool MathCursor::idxUp()
1326 {
1327         int x = xarray().pos2x(pos());
1328         if (!par()->idxUp(idx(), pos()))
1329                 return false;
1330         pos() = xarray().x2pos(x);
1331         return true;
1332 }
1333
1334
1335 bool MathCursor::idxDown()
1336 {
1337         int x = xarray().pos2x(pos());
1338         if (!par()->idxDown(idx(), pos()))
1339                 return false;
1340         pos() = xarray().x2pos(x);
1341         return true;
1342 }
1343
1344
1345 bool MathCursor::idxLeft()
1346 {
1347         return par()->idxLeft(idx(), pos());
1348 }
1349
1350
1351 bool MathCursor::idxRight()
1352 {
1353         return par()->idxRight(idx(), pos());
1354 }
1355
1356
1357 MathMatrixInset * MathCursor::outerPar() const
1358 {
1359         return
1360                 static_cast<MathMatrixInset *>(const_cast<MathInset *>(formula_->par()));
1361 }