]> git.lyx.org Git - lyx.git/blob - src/mathed/math_cursor.C
b78c6a74058c871846d676a896db639eb4a09a78
[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 void MathCursor::interpret(string const & s)
610 {
611         //lyxerr << "interpret: '" << s << "'\n";
612         //lyxerr << "in: " << in_word_set(s) << " \n";
613
614         if (s.empty())
615                 return;
616
617         if (s[0] == '^' || s[0] == '_') {
618                 bool const up = (s[0] == '^');
619                 selCut();       
620                 MathScriptInset * p = prevScriptInset();
621                 if (!p) {
622                         MathInset * b = prevInset();
623                         if (b && b->isScriptable()) {
624                                 p = new MathScriptInset(up, !up, b->clone());
625                                 posLeft();
626                                 plainErase();
627                         } else {
628                                 p = new MathScriptInset(up, !up);
629                         }
630                         insert(p);
631                 }
632                 pushRight(p);
633                 if (up)
634                         p->up(true);
635                 else
636                         p->down(true);
637                 idx() = up ? 0 : 1;
638                 pos() = 0;
639                 selPaste();
640                 return;
641         }
642
643         if (s[0] == '!' || s[0] == ','  || s[0] == ':' || s[0] == ';') {
644                 int sp = (s[0] == ',') ? 1:((s[0] == ':') ? 2:((s[0] == ';') ? 3: 0));
645                 insert(new MathSpaceInset(sp));
646                 return;
647         }
648
649         MathInset * p = 0;
650         latexkeys const * l = in_word_set(s);
651
652         if (l == 0) {
653                 if (s == "root") 
654                         p = new MathRootInset;
655                 else if (MathMacroTable::hasTemplate(s))
656                         p = new MathMacro(MathMacroTable::provideTemplate(s));
657                 else if (s.size() > 7 && s.substr(0, 7) == "matrix ") {
658                         int m = 1;
659                         int n = 1;
660                         string v_align;
661                         string h_align;
662                         istringstream is(s.substr(7).c_str());
663                         is >> m >> n >> v_align >> h_align;
664                         m = std::max(1, m);
665                         n = std::max(1, n);
666                         v_align += 'c';
667                         MathArrayInset * pp = new MathArrayInset(m, n);
668                         pp->valign(v_align[0]);
669                         pp->halign(h_align);
670                         p = pp;
671                 }
672                 else
673                         p = new MathFuncInset(s);
674         } else {
675                 switch (l->token) {
676                         case LM_TK_BIGSYM:
677                                 p = new MathBigopInset(l);
678                                 break;
679
680                         case LM_TK_FUNCLIM:
681                                 p = new MathFuncLimInset(l);
682                                 break;
683
684                         case LM_TK_SYM: 
685                                 p = new MathSymbolInset(l);
686                                 break;
687
688                         case LM_TK_STACK:
689                                 p = new MathFracInset("stackrel");
690                                 break;
691
692                         case LM_TK_FRAC:
693                                 p = new MathFracInset("frac");
694                                 break;
695
696                         case LM_TK_SQRT:
697                                 p = new MathSqrtInset;
698                                 break;
699
700                         case LM_TK_DECORATION:
701                                 p = new MathDecorationInset(l);
702                                 break;
703
704                         case LM_TK_SPACE:
705                                 p = new MathSpaceInset(l->id);
706                                 break;
707
708                         case LM_TK_DOTS:
709                                 p = new MathDotsInset(l);
710                                 break;
711
712                         case LM_TK_MACRO:
713                                 p = new MathMacro(MathMacroTable::provideTemplate(s));
714                                 break;
715
716                         default:
717                                 p = new MathFuncInset(l->name);
718                                 break;
719                 }
720         }
721
722         if (p) {
723                 selCut();
724                 insert(p);
725                 if (p->nargs()) {
726                         posLeft();
727                         right();  // do not push for e.g. MathSymbolInset
728                         selPaste();
729                 }
730                 p->metrics(p->size());
731         }
732 }
733
734
735 void MathCursor::macroModeOpen()
736 {
737         if (!imacro_) {
738                 imacro_ = new MathFuncInset("");
739                 array().insert(pos(), imacro_);
740                 ++pos();
741                 //insert(imacro_);
742         } else
743                 lyxerr << "Math Warning: Already in macro mode" << endl;
744 }
745
746
747 void MathCursor::macroModeClose()
748 {
749         if (imacro_) {
750                 string name = imacro_->name();
751                 posLeft();
752                 plainErase();
753                 imacro_ = 0;
754                 interpret(name);
755         }
756 }
757
758
759 void MathCursor::selCopy()
760 {
761         seldump("selCopy");
762         if (selection_) {
763                 theSelection.grab(*this);
764                 selClear();
765         }
766 }
767
768
769 void MathCursor::selCut()
770 {
771         seldump("selCut");
772         if (selection_) {
773                 theSelection.grab(*this);
774                 theSelection.erase(*this);
775                 selClear();
776         } else {
777                 theSelection.clear();
778         }
779 }
780
781
782 void MathCursor::selDel()
783 {
784         seldump("selDel");
785         if (selection_) {
786                 theSelection.erase(*this);
787                 selClear();
788         }
789 }
790
791
792 void MathCursor::selPaste()
793 {
794         seldump("selPaste");
795         theSelection.paste(*this);
796         selClear();
797 }
798
799
800 void MathCursor::selHandle(bool sel)
801 {
802         if (sel == selection_)
803                 return;
804
805         theSelection.clear();
806         Anchor_    = Cursor_;
807         selection_ = sel;
808 }
809
810
811 void MathCursor::selStart()
812 {
813         seldump("selStart");
814         if (selection_)
815                 return;
816
817         theSelection.clear();
818         Anchor_ = Cursor_;
819         selection_ = true;
820 }
821
822
823 void MathCursor::selClear()
824 {
825         seldump("selClear");
826         selection_ = false;
827 }
828
829
830 void MathCursor::drawSelection(Painter & pain) const
831 {
832         if (!selection_)
833                 return;
834
835         MathCursorPos i1;
836         MathCursorPos i2;
837         getSelection(i1, i2);
838
839         //lyxerr << "selection from: " << i1 << " to " << i2 << "\n";
840
841         if (i1.idx_ == i2.idx_) {
842                 MathXArray & c = i1.xcell();
843                 int x1 = c.xo() + c.pos2x(i1.pos_);
844                 int y1 = c.yo() - c.ascent();
845                 int x2 = c.xo() + c.pos2x(i2.pos_);
846                 int y2 = c.yo() + c.descent();
847                 pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, LColor::selection);
848         } else {
849
850                 std::vector<int> indices = i1.par_->idxBetween(i1.idx_, i2.idx_);
851                 for (unsigned i = 0; i < indices.size(); ++i) {
852                         MathXArray & c = i1.xcell(indices[i]);
853                         int x1 = c.xo();
854                         int y1 = c.yo() - c.ascent();
855                         int x2 = c.xo() + c.width();
856                         int y2 = c.yo() + c.descent();
857                         pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, LColor::selection);
858                 }
859         }
860 }
861
862
863 void MathCursor::handleFont(MathTextCodes t)
864 {
865         if (selection_) {
866                 MathCursorPos i1;
867                 MathCursorPos i2;
868                 getSelection(i1, i2); 
869                 if (i1.idx_ == i2.idx_) {
870                         MathArray & ar = i1.cell();
871                         for (int pos = i1.pos_; pos != i2.pos_; ++pos)
872                                 if (isalnum(ar.getChar(pos))) { 
873                                         MathTextCodes c = ar.getCode(pos) == t ? LM_TC_VAR : t;
874                                         ar.setCode(pos, c);
875                                 }
876                 }
877         } else 
878                 lastcode_ = (lastcode_ == t) ? LM_TC_VAR : t;
879 }
880
881
882 void MathCursor::handleAccent(string const & name)
883 {
884         latexkeys const * l = in_word_set(name);
885         if (l)
886                 handleNest(new MathDecorationInset(l));
887 }
888
889
890 void MathCursor::handleDelim(int l, int r)
891 {
892         handleNest(new MathDelimInset(l, r));
893 }
894
895
896 void MathCursor::handleNest(MathInset * p)
897 {
898         if (selection_) {
899                 selCut();
900                 p->cell(0) = theSelection.glue();
901         }
902         insert(p);
903         pushRight(p);
904 }
905
906
907 void MathCursor::getPos(int & x, int & y)
908 {
909         x = xarray().xo() + xarray().pos2x(pos());
910         y = xarray().yo();
911 }
912
913
914 MathTextCodes MathCursor::nextCode() const
915 {
916         return array().getCode(pos()); 
917 }
918
919
920 MathTextCodes MathCursor::prevCode() const
921 {
922         return array().getCode(pos() - 1); 
923 }
924
925
926 MathInset * MathCursor::par() const
927 {
928         return cursor().par_;
929 }
930
931
932 InsetFormulaBase const * MathCursor::formula()
933 {
934         return formula_;
935 }
936
937
938 int MathCursor::idx() const
939 {
940         return cursor().idx_;
941 }
942
943
944 int & MathCursor::idx()
945 {
946         return cursor().idx_;
947 }
948
949
950 int MathCursor::pos() const
951 {
952         return cursor().pos_;
953 }
954
955
956 int & MathCursor::pos()
957 {
958         return cursor().pos_;
959 }
960
961
962 bool MathCursor::inMacroMode() const
963 {
964         return imacro_;
965 }
966
967
968 bool MathCursor::selection() const
969 {
970         return selection_;
971 }
972
973
974 void MathCursor::clearLastCode()
975 {
976         lastcode_ = LM_TC_MIN;
977 }
978
979
980 void MathCursor::setLastCode(MathTextCodes t)
981 {
982         lastcode_ = t;
983 }
984
985
986 MathTextCodes MathCursor::getLastCode() const
987 {
988         return lastcode_;
989 }
990
991
992 MathArrayInset * MathCursor::enclosingArray(int & idx) const
993 {
994         for (int i = Cursor_.size() - 1; i >= 0; --i) {
995                 if (Cursor_[i].par_->isArray()) {
996                         idx = Cursor_[i].idx_;
997                         return static_cast<MathArrayInset *>(Cursor_[i].par_);
998                 }
999         }
1000         return 0;
1001 }
1002
1003
1004 void MathCursor::pullArg(bool goright)
1005 {
1006         // pullArg
1007         dump("pullarg");
1008         MathArray a = array();
1009         if (popLeft()) {
1010                 plainErase();
1011                 array().insert(pos(), a);
1012                 if (goright) 
1013                         pos() += a.size();
1014         }
1015 }
1016
1017
1018 MathStyles MathCursor::style() const
1019 {
1020         return xarray().style();
1021 }
1022
1023
1024 void MathCursor::normalize() const
1025 {
1026 #ifdef WITH_WARNINGS
1027 #warning This is evil!
1028 #endif
1029         MathCursor * it = const_cast<MathCursor *>(this);
1030
1031         if (idx() < 0)
1032                 lyxerr << "this should not really happen - 1: " << idx() << "\n";
1033         if (idx() >= par()->nargs()) {
1034                 lyxerr << "this should not really happen - 2: "
1035                        << idx() << " " << par()->nargs() << "\n";
1036                 dump("error 2");
1037         }
1038         it->idx()    = max(idx(), 0);
1039         it->idx()    = min(idx(), par()->nargs() - 1);
1040
1041         if (pos() < 0)
1042                 lyxerr << "this should not really happen - 3: " << pos() << "\n";
1043         if (pos() > size()) {
1044                 lyxerr << "this should not really happen - 4: "
1045                        << pos() << " " << size() << "\n";
1046                 dump("error 4");
1047         }
1048         it->pos() = max(pos(), 0);
1049         it->pos() = min(pos(), size());
1050 }
1051
1052
1053 int MathCursor::size() const
1054 {
1055         return array().size();
1056 }
1057
1058
1059 int MathCursor::col() const
1060 {
1061         return par()->col(idx());
1062 }
1063
1064
1065 int MathCursor::row() const
1066 {
1067         return par()->row(idx());
1068 }
1069
1070
1071 /*
1072 char MathCursorPos::getChar() const
1073 {
1074         return array().getChar(pos());
1075 }
1076
1077
1078 string MathCursorPos::readString()
1079 {
1080         string s;
1081         int code = nextCode();
1082         for ( ; OK() && nextCode() == code; Next()) 
1083                 s += getChar();
1084
1085         return s;
1086 }
1087 */
1088
1089
1090 MathInset * MathCursor::prevInset() const
1091 {
1092         normalize();
1093         if (!pos())
1094                 return 0;
1095         return array().nextInset(pos() - 1);
1096 }
1097
1098
1099 MathInset * MathCursor::nextInset() const
1100 {
1101         normalize();
1102         return array().nextInset(pos());
1103 }
1104
1105
1106 MathScriptInset * MathCursor::prevScriptInset() const
1107 {
1108         normalize();
1109         MathInset * p = prevInset();
1110         return (p && p->isScriptInset()) ? static_cast<MathScriptInset *>(p) : 0;
1111 }
1112
1113
1114 MathSpaceInset * MathCursor::prevSpaceInset() const
1115 {
1116         normalize();
1117         MathInset * p = prevInset();
1118         return (p && p->isSpaceInset()) ? static_cast<MathSpaceInset *>(p) : 0;
1119 }
1120
1121
1122 MathArray & MathCursor::array() const
1123 {
1124         static MathArray dummy;
1125         if (!par()) {
1126                 lyxerr << "############  par_ not valid\n";
1127                 return dummy;
1128         }
1129
1130         if (idx() < 0 || idx() >= par()->nargs()) {
1131                 lyxerr << "############  idx_ " << idx() << " not valid\n";
1132                 return dummy;
1133         }
1134
1135         return cursor().cell();
1136 }
1137
1138
1139 MathXArray & MathCursor::xarray() const
1140 {
1141         return cursor().xcell();
1142 }
1143
1144
1145 int MathCursor::xpos() const 
1146 {
1147         normalize();
1148         return xarray().pos2x(pos());
1149 }
1150
1151
1152 void MathCursor::gotoX(int x)
1153 {
1154         pos() = xarray().x2pos(x);      
1155 }
1156
1157
1158 void MathCursor::idxNext()
1159 {
1160         par()->idxNext(idx(), pos());
1161 }
1162
1163
1164 void MathCursor::idxPrev()
1165 {
1166         par()->idxPrev(idx(), pos());
1167 }
1168
1169
1170 void MathCursor::splitCell()
1171 {
1172         if (idx() == par()->nargs() - 1) 
1173                 return;
1174         MathArray ar = array();
1175         ar.erase(0, pos());
1176         array().erase(pos(), size());
1177         ++idx();
1178         pos() = 0;
1179         array().insert(0, ar);
1180 }
1181
1182
1183 void MathCursor::breakLine()
1184 {
1185         MathMatrixInset * p = outerPar();
1186         if (p->getType() == LM_OT_SIMPLE || p->getType() == LM_OT_EQUATION) {
1187                 p->mutate(LM_OT_EQNARRAY);
1188                 p->addRow(0);
1189                 idx() = p->nrows();
1190                 pos() = 0;
1191         } else {
1192                 p->addRow(row());
1193
1194                 // split line
1195                 const int r = row();
1196                 for (int c = col() + 1; c < p->ncols(); ++c) {
1197                         const int i1 = p->index(r, c);
1198                         const int i2 = p->index(r + 1, c);      
1199                         lyxerr << "swapping cells " << i1 << " and " << i2 << "\n";
1200                         p->cell(i1).swap(p->cell(i2));
1201                 }
1202
1203                 // split cell
1204                 splitCell();
1205                 p->cell(idx()).swap(p->cell(idx() + p->ncols() - 1));
1206         }
1207 }
1208
1209
1210 char MathCursor::valign() const
1211 {
1212         int idx;
1213         MathArrayInset * p = enclosingArray(idx);
1214         return p ? p->valign() : 0;
1215 }
1216
1217
1218 char MathCursor::halign() const
1219 {
1220         int idx;
1221         MathArrayInset * p = enclosingArray(idx);
1222         return p ? p->halign(idx % p->ncols()) : 0;
1223 }
1224
1225
1226 void MathCursor::getSelection(MathCursorPos & i1, MathCursorPos & i2) const
1227 {
1228         MathCursorPos anc = normalAnchor();
1229         if (anc < cursor()) {
1230                 i1 = anc;
1231                 i2 = cursor();
1232         } else {
1233                 i1 = cursor();
1234                 i2 = anc;
1235         }
1236 }
1237
1238
1239 MathCursorPos & MathCursor::cursor()
1240 {
1241         return Cursor_.back();
1242 }
1243
1244
1245 MathCursorPos const & MathCursor::cursor() const
1246 {
1247         return Cursor_.back();
1248 }
1249
1250
1251
1252 ////////////////////////////////////////////////////////////////////////
1253
1254
1255 bool operator==(MathCursorPos const & ti, MathCursorPos const & it)
1256 {
1257         return ti.par_ == it.par_ && ti.idx_ == it.idx_ && ti.pos_ == it.pos_;
1258 }
1259
1260
1261 bool operator<(MathCursorPos const & ti, MathCursorPos const & it)
1262 {
1263         if (ti.par_ != it.par_) {
1264                 lyxerr << "can't compare cursor and anchor in different insets\n";
1265                 return true;
1266         }
1267         if (ti.idx_ != it.idx_)
1268                 return ti.idx_ < it.idx_;
1269         return ti.pos_ < it.pos_;
1270 }
1271
1272
1273 MathArray & MathCursorPos::cell(int idx) const
1274 {
1275         return par_->cell(idx);
1276 }
1277
1278 MathArray & MathCursorPos::cell() const
1279 {
1280         return par_->cell(idx_);
1281 }
1282
1283
1284 MathXArray & MathCursorPos::xcell(int idx) const
1285 {
1286         return par_->xcell(idx);
1287 }
1288
1289
1290 MathXArray & MathCursorPos::xcell() const
1291 {
1292         return par_->xcell(idx_);
1293 }
1294
1295
1296 MathCursorPos MathCursor::normalAnchor() const
1297 {
1298         // use Anchor on the same level as Cursor
1299         MathCursorPos normal = Anchor_[Cursor_.size() - 1];
1300         if (Cursor_.size() < Anchor_.size() && !(normal < cursor())) {
1301                 // anchor is behind cursor -> move anchor behind the inset
1302                 ++normal.pos_;
1303         }
1304         return normal;
1305 }
1306
1307
1308 bool MathCursor::idxUp()
1309 {
1310         int x = xarray().pos2x(pos());
1311         if (!par()->idxUp(idx(), pos()))
1312                 return false;
1313         pos() = xarray().x2pos(x);
1314         return true;
1315 }
1316
1317
1318 bool MathCursor::idxDown()
1319 {
1320         int x = xarray().pos2x(pos());
1321         if (!par()->idxDown(idx(), pos()))
1322                 return false;
1323         pos() = xarray().x2pos(x);
1324         return true;
1325 }
1326
1327
1328 bool MathCursor::idxLeft()
1329 {
1330         return par()->idxLeft(idx(), pos());
1331 }
1332
1333
1334 bool MathCursor::idxRight()
1335 {
1336         return par()->idxRight(idx(), pos());
1337 }
1338
1339
1340 MathMatrixInset * MathCursor::outerPar() const
1341 {
1342         return
1343                 static_cast<MathMatrixInset *>(const_cast<MathInset *>(formula_->par()));
1344 }