]> git.lyx.org Git - lyx.git/blob - src/mathed/math_nestinset.C
* depend.py: set PYTHONPATH so that python files
[lyx.git] / src / mathed / math_nestinset.C
1 /**
2  * \file math_nestinset.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "math_nestinset.h"
14
15 #include "math_arrayinset.h"
16 #include "math_biginset.h"
17 #include "math_boxinset.h"
18 #include "math_braceinset.h"
19 #include "math_colorinset.h"
20 #include "math_commentinset.h"
21 #include "math_data.h"
22 #include "math_deliminset.h"
23 #include "math_factory.h"
24 #include "math_hullinset.h"
25 #include "math_mathmlstream.h"
26 #include "math_macroarg.h"
27 //#include "math_mboxinset.h"
28 #include "math_parser.h"
29 #include "math_scriptinset.h"
30 #include "math_spaceinset.h"
31 #include "math_symbolinset.h"
32 #include "math_support.h"
33 #include "math_unknowninset.h"
34 #include "ref_inset.h"
35
36 #include "BufferView.h"
37 #include "CutAndPaste.h"
38 #include "FuncStatus.h"
39 #include "LColor.h"
40 #include "bufferview_funcs.h"
41 #include "coordcache.h"
42 #include "cursor.h"
43 #include "debug.h"
44 #include "dispatchresult.h"
45 #include "funcrequest.h"
46 #include "gettext.h"
47 #include "outputparams.h"
48 #include "undo.h"
49
50 #include "support/lstrings.h"
51
52 #include "frontends/Dialogs.h"
53 #include "frontends/LyXView.h"
54 #include "frontends/Painter.h"
55 #include "frontends/nullpainter.h"
56
57 #include <sstream>
58
59 using lyx::cap::copySelection;
60 using lyx::cap::grabAndEraseSelection;
61 using lyx::cap::cutSelection;
62 using lyx::cap::replaceSelection;
63 using lyx::cap::selClearOrDel;
64
65 using std::endl;
66 using std::string;
67 using std::istringstream;
68
69
70 MathNestInset::MathNestInset(idx_type nargs)
71         : cells_(nargs), lock_(false)
72 {}
73
74
75 MathInset::idx_type MathNestInset::nargs() const
76 {
77         return cells_.size();
78 }
79
80
81 MathArray & MathNestInset::cell(idx_type i)
82 {
83         return cells_[i];
84 }
85
86
87 MathArray const & MathNestInset::cell(idx_type i) const
88 {
89         return cells_[i];
90 }
91
92
93 void MathNestInset::cursorPos(CursorSlice const & sl, bool /*boundary*/,
94         int & x, int & y) const
95 {
96 // FIXME: This is a hack. Ideally, the coord cache should not store
97 // absolute positions, but relative ones. This would mean to call
98 // setXY() not in MathArray::draw(), but in the parent insets' draw()
99 // with the correctly adjusted x,y values. But this means that we'd have
100 // to touch all (math)inset's draw() methods. Right now, we'll store
101 // absolute value, and make them here relative, only to make them
102 // absolute again when actually drawing the cursor. What a mess.
103         BOOST_ASSERT(ptr_cmp(&sl.inset(), this));
104         MathArray const & ar = sl.cell();
105         if (!theCoords.getArrays().has(&ar)) {
106                 // this can (semi-)legally happen if we just created this cell
107                 // and it never has been drawn before. So don't ASSERT.
108                 //lyxerr << "no cached data for array " << &ar << endl;
109                 x = 0;
110                 y = 0;
111                 return;
112         }
113         Point const pt = theCoords.getArrays().xy(&ar);
114         if (!theCoords.getInsets().has(this)) {
115                 // same as above
116                 //lyxerr << "no cached data for inset " << this << endl;
117                 x = 0;
118                 y = 0;
119                 return;
120         }
121         Point const pt2 = theCoords.getInsets().xy(this);
122         //lyxerr << "retrieving position cache for MathArray "
123         //      << pt.x_ << ' ' << pt.y_ << std::endl;
124         x = pt.x_ - pt2.x_ + ar.pos2x(sl.pos());
125         y = pt.y_ - pt2.y_;
126 //      lyxerr << "pt.y_ : " << pt.y_ << " pt2_.y_ : " << pt2.y_
127 //              << " asc: " << ascent() << "  des: " << descent()
128 //              << " ar.asc: " << ar.ascent() << " ar.des: " << ar.descent() << endl;
129         // move cursor visually into empty cells ("blue rectangles");
130         if (ar.empty())
131                 x += 2;
132 }
133
134
135 void MathNestInset::metrics(MetricsInfo const & mi) const
136 {
137         MetricsInfo m = mi;
138         for (idx_type i = 0, n = nargs(); i != n; ++i)
139                 cell(i).metrics(m);
140 }
141
142
143 bool MathNestInset::idxNext(LCursor & cur) const
144 {
145         BOOST_ASSERT(ptr_cmp(&cur.inset(), this));
146         if (cur.idx() == cur.lastidx())
147                 return false;
148         ++cur.idx();
149         cur.pos() = 0;
150         return true;
151 }
152
153
154 bool MathNestInset::idxRight(LCursor & cur) const
155 {
156         return idxNext(cur);
157 }
158
159
160 bool MathNestInset::idxPrev(LCursor & cur) const
161 {
162         BOOST_ASSERT(ptr_cmp(&cur.inset(), this));
163         if (cur.idx() == 0)
164                 return false;
165         --cur.idx();
166         cur.pos() = cur.lastpos();
167         return true;
168 }
169
170
171 bool MathNestInset::idxLeft(LCursor & cur) const
172 {
173         return idxPrev(cur);
174 }
175
176
177 bool MathNestInset::idxFirst(LCursor & cur) const
178 {
179         BOOST_ASSERT(ptr_cmp(&cur.inset(), this));
180         if (nargs() == 0)
181                 return false;
182         cur.idx() = 0;
183         cur.pos() = 0;
184         return true;
185 }
186
187
188 bool MathNestInset::idxLast(LCursor & cur) const
189 {
190         BOOST_ASSERT(ptr_cmp(&cur.inset(), this));
191         if (nargs() == 0)
192                 return false;
193         cur.idx() = cur.lastidx();
194         cur.pos() = cur.lastpos();
195         return true;
196 }
197
198
199 void MathNestInset::dump() const
200 {
201         WriteStream os(lyxerr);
202         os << "---------------------------------------------\n";
203         write(os);
204         os << "\n";
205         for (idx_type i = 0, n = nargs(); i != n; ++i)
206                 os << cell(i) << "\n";
207         os << "---------------------------------------------\n";
208 }
209
210
211 void MathNestInset::draw(PainterInfo & pi, int x, int y) const
212 {
213 #if 0
214         if (lock_)
215                 pi.pain.fillRectangle(x, y - ascent(), width(), height(),
216                                         LColor::mathlockbg);
217 #endif
218         setPosCache(pi, x, y);
219 }
220
221
222 void MathNestInset::drawSelection(PainterInfo & pi, int x, int y) const
223 {
224         // this should use the x/y values given, not the cached values
225         LCursor & cur = pi.base.bv->cursor();
226         if (!cur.selection())
227                 return;
228         if (!ptr_cmp(&cur.inset(), this))
229                 return;
230
231         // FIXME: hack to get position cache warm
232         static NullPainter nop;
233         PainterInfo pinop(pi);
234         pinop.pain = nop;
235         draw(pinop, x, y);
236
237         CursorSlice s1 = cur.selBegin();
238         CursorSlice s2 = cur.selEnd();
239         //lyxerr << "MathNestInset::drawing selection: "
240         //      << " s1: " << s1 << " s2: " << s2 << endl;
241         if (s1.idx() == s2.idx()) {
242                 MathArray const & c = cell(s1.idx());
243                 int x1 = c.xo() + c.pos2x(s1.pos());
244                 int y1 = c.yo() - c.ascent();
245                 int x2 = c.xo() + c.pos2x(s2.pos());
246                 int y2 = c.yo() + c.descent();
247                 pi.pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, LColor::selection);
248         //lyxerr << "MathNestInset::drawing selection 3: "
249         //      << " x1: " << x1 << " x2: " << x2
250         //      << " y1: " << y1 << " y2: " << y2 << endl;
251         } else {
252                 for (idx_type i = 0; i < nargs(); ++i) {
253                         if (idxBetween(i, s1.idx(), s2.idx())) {
254                                 MathArray const & c = cell(i);
255                                 int x1 = c.xo();
256                                 int y1 = c.yo() - c.ascent();
257                                 int x2 = c.xo() + c.width();
258                                 int y2 = c.yo() + c.descent();
259                                 pi.pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, LColor::selection);
260                         }
261                 }
262         }
263 }
264
265
266 void MathNestInset::validate(LaTeXFeatures & features) const
267 {
268         for (idx_type i = 0; i < nargs(); ++i)
269                 cell(i).validate(features);
270 }
271
272
273 void MathNestInset::replace(ReplaceData & rep)
274 {
275         for (idx_type i = 0; i < nargs(); ++i)
276                 cell(i).replace(rep);
277 }
278
279
280 bool MathNestInset::contains(MathArray const & ar) const
281 {
282         for (idx_type i = 0; i < nargs(); ++i)
283                 if (cell(i).contains(ar))
284                         return true;
285         return false;
286 }
287
288
289 bool MathNestInset::lock() const
290 {
291         return lock_;
292 }
293
294
295 void MathNestInset::lock(bool l)
296 {
297         lock_ = l;
298 }
299
300
301 bool MathNestInset::isActive() const
302 {
303         return nargs() > 0;
304 }
305
306
307 MathArray MathNestInset::glue() const
308 {
309         MathArray ar;
310         for (size_t i = 0; i < nargs(); ++i)
311                 ar.append(cell(i));
312         return ar;
313 }
314
315
316 void MathNestInset::write(WriteStream & os) const
317 {
318         os << '\\' << name().c_str();
319         for (size_t i = 0; i < nargs(); ++i)
320                 os << '{' << cell(i) << '}';
321         if (nargs() == 0)
322                 os.pendingSpace(true);
323         if (lock_ && !os.latex()) {
324                 os << "\\lyxlock";
325                 os.pendingSpace(true);
326         }
327 }
328
329
330 void MathNestInset::normalize(NormalStream & os) const
331 {
332         os << '[' << name().c_str();
333         for (size_t i = 0; i < nargs(); ++i)
334                 os << ' ' << cell(i);
335         os << ']';
336 }
337
338
339 int MathNestInset::latex(Buffer const &, std::ostream & os,
340                         OutputParams const & runparams) const
341 {
342         WriteStream wi(os, runparams.moving_arg, true);
343         write(wi);
344         return wi.line();
345 }
346
347
348 void MathNestInset::notifyCursorLeaves(LCursor & cur)
349 {
350 #ifdef WITH_WARNINGS
351 #warning look here
352 #endif
353 #if 0
354         MathArray & ar = cur.cell();
355         // remove base-only "scripts"
356         for (pos_type i = 0; i + 1 < ar.size(); ++i) {
357                 MathScriptInset * p = operator[](i).nucleus()->asScriptInset();
358                 if (p && p->nargs() == 1) {
359                         MathArray ar = p->nuc();
360                         erase(i);
361                         insert(i, ar);
362                         cur.adjust(i, ar.size() - 1);
363                 }
364         }
365
366         // glue adjacent font insets of the same kind
367         for (pos_type i = 0; i + 1 < size(); ++i) {
368                 MathFontInset * p = operator[](i).nucleus()->asFontInset();
369                 MathFontInset const * q = operator[](i + 1)->asFontInset();
370                 if (p && q && p->name() == q->name()) {
371                         p->cell(0).append(q->cell(0));
372                         erase(i + 1);
373                         cur.adjust(i, -1);
374                 }
375         }
376 #endif
377 }
378
379
380 void MathNestInset::handleFont
381         (LCursor & cur, string const & arg, string const & font)
382 {
383         // this whole function is a hack and won't work for incremental font
384         // changes...
385         recordUndo(cur, Undo::ATOMIC);
386
387         if (cur.inset().asMathInset()->name() == font)
388                 cur.handleFont(font);
389         else {
390                 cur.handleNest(createMathInset(font));
391                 cur.insert(arg);
392         }
393 }
394
395
396 void MathNestInset::handleFont2(LCursor & cur, string const & arg)
397 {
398         recordUndo(cur, Undo::ATOMIC);
399         LyXFont font;
400         bool b;
401         bv_funcs::string2font(arg, font, b);
402         if (font.color() != LColor::inherit) {
403                 MathAtom at = MathAtom(new MathColorInset(true, font.color()));
404                 cur.handleNest(at, 0);
405         }
406 }
407
408
409 void MathNestInset::doDispatch(LCursor & cur, FuncRequest & cmd)
410 {
411         //lyxerr << "MathNestInset: request: " << cmd << std::endl;
412         //CursorSlice sl = cur.current();
413
414         switch (cmd.action) {
415
416         case LFUN_PASTE: {
417                 recordUndo(cur);
418                 cur.message(_("Paste"));
419                 replaceSelection(cur);
420                 size_t n = 0;
421                 istringstream is(cmd.argument);
422                 is >> n;
423                 string const selection = lyx::cap::getSelection(cur.buffer(), n);
424                 cur.niceInsert(selection);
425                 cur.clearSelection(); // bug 393
426                 cur.bv().switchKeyMap();
427                 finishUndo();
428                 break;
429         }
430
431         case LFUN_CUT:
432                 recordUndo(cur);
433                 cutSelection(cur, true, true);
434                 cur.message(_("Cut"));
435                 // Prevent stale position >= size crash
436                 // Probably not necessary anymore, see eraseSelection (gb 2005-10-09)
437                 cur.normalize();
438                 break;
439
440         case LFUN_COPY:
441                 copySelection(cur);
442                 cur.message(_("Copy"));
443                 break;
444
445         case LFUN_MOUSE_PRESS:
446                 lfunMousePress(cur, cmd);
447                 break;
448
449         case LFUN_MOUSE_MOTION:
450                 lfunMouseMotion(cur, cmd);
451                 break;
452
453         case LFUN_MOUSE_RELEASE:
454                 lfunMouseRelease(cur, cmd);
455                 break;
456
457         case LFUN_FINISHED_LEFT:
458                 cur.bv().cursor() = cur;
459                 break;
460
461         case LFUN_FINISHED_RIGHT:
462                 ++cur.pos();
463                 cur.bv().cursor() = cur;
464                 break;
465
466         case LFUN_FINISHED_UP:
467                 cur.bv().cursor() = cur;
468                 break;
469
470         case LFUN_FINISHED_DOWN:
471                 ++cur.pos();
472                 cur.bv().cursor() = cur;
473                 break;
474
475         case LFUN_RIGHTSEL:
476         case LFUN_RIGHT:
477                 cur.selHandle(cmd.action == LFUN_RIGHTSEL);
478                 cur.autocorrect() = false;
479                 cur.clearTargetX();
480                 cur.macroModeClose();
481                 if (cur.pos() != cur.lastpos() && cur.openable(cur.nextAtom())) {
482                         cur.pushLeft(*cur.nextAtom().nucleus());
483                         cur.inset().idxFirst(cur);
484                 } else if (cur.posRight() || idxRight(cur)
485                         || cur.popRight() || cur.selection())
486                         ;
487                 else {
488                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
489                         cur.undispatched();
490                 }
491                 break;
492
493         case LFUN_LEFTSEL:
494         case LFUN_LEFT:
495                 cur.selHandle(cmd.action == LFUN_LEFTSEL);
496                 cur.autocorrect() = false;
497                 cur.clearTargetX();
498                 cur.macroModeClose();
499                 if (cur.pos() != 0 && cur.openable(cur.prevAtom())) {
500                         cur.posLeft();
501                         cur.push(*cur.nextAtom().nucleus());
502                         cur.inset().idxLast(cur);
503                 } else if (cur.posLeft() || idxLeft(cur)
504                         || cur.popLeft() || cur.selection())
505                         ;
506                 else {
507                         cmd = FuncRequest(LFUN_FINISHED_LEFT);
508                         cur.undispatched();
509                 }
510                 break;
511
512         case LFUN_UPSEL:
513         case LFUN_UP:
514                 // FIXME Tried to use clearTargetX and macroModeClose, crashed on cur.up()
515                 if (cur.inMacroMode()) {
516                         // Make Helge happy
517                         cur.macroModeClose();
518                         break;
519                 }
520                 cur.selHandle(cmd.action == LFUN_UPSEL);
521                 if (!cur.up()) {
522                         cmd = FuncRequest(LFUN_FINISHED_UP);
523                         cur.undispatched();
524                 }
525                 // fixes bug 1598. Please check!
526                 cur.normalize();
527                 break;
528
529         case LFUN_DOWNSEL:
530         case LFUN_DOWN:
531                 if (cur.inMacroMode()) {
532                         cur.macroModeClose();
533                         break;
534                 }
535                 cur.selHandle(cmd.action == LFUN_DOWNSEL);
536                 if (!cur.down()) {
537                         cmd = FuncRequest(LFUN_FINISHED_DOWN);
538                         cur.undispatched();
539                 }
540                 // fixes bug 1598. Please check!
541                 cur.normalize();
542                 break;
543
544         case LFUN_MOUSE_DOUBLE:
545         case LFUN_MOUSE_TRIPLE:
546         case LFUN_WORDSEL:
547                 cur.pos() = 0;
548                 cur.idx() = 0;
549                 cur.resetAnchor();
550                 cur.selection() = true;
551                 cur.pos() = cur.lastpos();
552                 cur.idx() = cur.lastidx();
553                 break;
554
555         case LFUN_UP_PARAGRAPHSEL:
556         case LFUN_UP_PARAGRAPH:
557         case LFUN_DOWN_PARAGRAPHSEL:
558         case LFUN_DOWN_PARAGRAPH:
559                 break;
560
561         case LFUN_HOMESEL:
562         case LFUN_HOME:
563         case LFUN_WORDLEFTSEL:
564         case LFUN_WORDLEFT:
565                 cur.selHandle(cmd.action == LFUN_WORDLEFTSEL || cmd.action == LFUN_HOMESEL);
566                 cur.macroModeClose();
567                 if (cur.pos() != 0) {
568                         cur.pos() = 0;
569                 } else if (cur.col() != 0) {
570                         cur.idx() -= cur.col();
571                         cur.pos() = 0;
572                 } else if (cur.idx() != 0) {
573                         cur.idx() = 0;
574                         cur.pos() = 0;
575                 } else {
576                         cmd = FuncRequest(LFUN_FINISHED_LEFT);
577                         cur.undispatched();
578                 }
579                 break;
580
581         case LFUN_WORDRIGHTSEL:
582         case LFUN_WORDRIGHT:
583         case LFUN_ENDSEL:
584         case LFUN_END:
585                 cur.selHandle(cmd.action == LFUN_WORDRIGHTSEL || cmd.action == LFUN_ENDSEL);
586                 cur.macroModeClose();
587                 cur.clearTargetX();
588                 if (cur.pos() != cur.lastpos()) {
589                         cur.pos() = cur.lastpos();
590                 } else if (ncols() && (cur.col() != cur.lastcol())) {
591                         cur.idx() = cur.idx() - cur.col() + cur.lastcol();
592                         cur.pos() = cur.lastpos();
593                 } else if (cur.idx() != cur.lastidx()) {
594                         cur.idx() = cur.lastidx();
595                         cur.pos() = cur.lastpos();
596                 } else {
597                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
598                         cur.undispatched();
599                 }
600                 break;
601
602         case LFUN_PRIORSEL:
603         case LFUN_PRIOR:
604                 cmd = FuncRequest(LFUN_FINISHED_LEFT);
605                 cur.undispatched();
606                 break;
607
608         case LFUN_NEXTSEL:
609         case LFUN_NEXT:
610                 cmd = FuncRequest(LFUN_FINISHED_RIGHT);
611                 cur.undispatched();
612                 break;
613
614         case LFUN_CELL_FORWARD:
615                 cur.inset().idxNext(cur);
616                 break;
617
618         case LFUN_CELL_BACKWARD:
619                 cur.inset().idxPrev(cur);
620                 break;
621
622         case LFUN_DELETE_WORD_BACKWARD:
623         case LFUN_BACKSPACE:
624                 if (cur.pos() == 0)
625                         // May affect external cell:
626                         recordUndoInset(cur, Undo::ATOMIC);
627                 else
628                         recordUndo(cur, Undo::ATOMIC);
629                 cur.backspace();
630                 break;
631
632         case LFUN_DELETE_WORD_FORWARD:
633         case LFUN_DELETE:
634                 if (cur.pos() == cur.lastpos())
635                         // May affect external cell:
636                         recordUndoInset(cur, Undo::ATOMIC);
637                 else
638                         recordUndo(cur, Undo::ATOMIC);
639                 cur.erase();
640                 break;
641
642         case LFUN_ESCAPE:
643                 if (cur.selection())
644                         cur.clearSelection();
645                 else  {
646                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
647                         cur.undispatched();
648                 }
649                 break;
650
651         case LFUN_INSET_TOGGLE:
652                 recordUndo(cur);
653                 //lockToggle();
654                 if (cur.pos() != cur.lastpos()) {
655                         // toggle previous inset ...
656                         cur.nextAtom().nucleus()->lock(!cur.nextAtom()->lock());
657                 } else if (cur.popLeft() && cur.pos() != cur.lastpos()) {
658                         // ... or enclosing inset if we are in the last inset position
659                         cur.nextAtom().nucleus()->lock(!cur.nextAtom()->lock());
660                         ++cur.pos();
661                 }
662                 break;
663
664         case LFUN_SELFINSERT:
665                 if (cmd.argument.size() != 1) {
666                         recordUndo(cur);
667                         cur.insert(cmd.argument);
668                         break;
669                 }
670                 // Don't record undo steps if we are in macro mode and
671                 // cmd.argument is the next character of the macro name.
672                 // Otherwise we'll get an invalid cursor if we undo after
673                 // the macro was finished and the macro is a known command,
674                 // e.g. sqrt. LCursor::macroModeClose replaces in this case
675                 // the MathUnknownInset with name "frac" by an empty
676                 // MathFracInset -> a pos value > 0 is invalid.
677                 // A side effect is that an undo before the macro is finished
678                 // undoes the complete macro, not only the last character.
679                 if (!cur.inMacroMode())
680                         recordUndo(cur);
681
682                 // spacial handling of space. If we insert an inset
683                 // via macro mode, we want to put the cursor inside it
684                 // if relevant. Think typing "\frac<space>".
685                 if (cmd.argument[0] == ' '
686                     && cur.inMacroMode() && cur.macroName() != "\\"
687                     && cur.macroModeClose()) {
688                         MathAtom const atom = cur.prevAtom();
689                         if (atom->asNestInset() && atom->nargs() > 0) {
690                                 cur.posLeft();
691                                 cur.pushLeft(*cur.nextInset());
692                         }
693                 } else if (!interpret(cur, cmd.argument[0])) {
694                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
695                         cur.undispatched();
696                 }
697                 break;
698
699         //case LFUN_GETXY:
700         //      sprintf(dispatch_buffer, "%d %d",);
701         //      break;
702
703         case LFUN_SETXY: {
704                 lyxerr << "LFUN_SETXY broken!" << endl;
705                 int x = 0;
706                 int y = 0;
707                 istringstream is(cmd.argument);
708                 is >> x >> y;
709                 cur.setScreenPos(x, y);
710                 break;
711         }
712
713         // Special casing for superscript in case of LyX handling
714         // dead-keys:
715         case LFUN_CIRCUMFLEX:
716                 if (cmd.argument.empty()) {
717                         // do superscript if LyX handles
718                         // deadkeys
719                         recordUndo(cur, Undo::ATOMIC);
720                         script(cur, true, grabAndEraseSelection(cur));
721                 }
722                 break;
723
724         case LFUN_UMLAUT:
725         case LFUN_ACUTE:
726         case LFUN_GRAVE:
727         case LFUN_BREVE:
728         case LFUN_DOT:
729         case LFUN_MACRON:
730         case LFUN_CARON:
731         case LFUN_TILDE:
732         case LFUN_CEDILLA:
733         case LFUN_CIRCLE:
734         case LFUN_UNDERDOT:
735         case LFUN_TIE:
736         case LFUN_OGONEK:
737         case LFUN_HUNG_UMLAUT:
738                 break;
739
740         //  Math fonts
741         case LFUN_FREEFONT_APPLY:
742         case LFUN_FREEFONT_UPDATE:
743                 handleFont2(cur, cmd.argument);
744                 break;
745
746         case LFUN_BOLD:
747                 if (currentMode() == TEXT_MODE)
748                         handleFont(cur, cmd.argument, "textbf");
749                 else
750                         handleFont(cur, cmd.argument, "mathbf");
751                 break;
752         case LFUN_SANS:
753                 if (currentMode() == TEXT_MODE)
754                         handleFont(cur, cmd.argument, "textsf");
755                 else
756                         handleFont(cur, cmd.argument, "mathsf");
757                 break;
758         case LFUN_EMPH:
759                 if (currentMode() == TEXT_MODE)
760                         handleFont(cur, cmd.argument, "emph");
761                 else
762                         handleFont(cur, cmd.argument, "mathcal");
763                 break;
764         case LFUN_ROMAN:
765                 if (currentMode() == TEXT_MODE)
766                         handleFont(cur, cmd.argument, "textrm");
767                 else
768                         handleFont(cur, cmd.argument, "mathrm");
769                 break;
770         case LFUN_CODE:
771                 if (currentMode() == TEXT_MODE)
772                         handleFont(cur, cmd.argument, "texttt");
773                 else
774                         handleFont(cur, cmd.argument, "mathtt");
775                 break;
776         case LFUN_FRAK:
777                 handleFont(cur, cmd.argument, "mathfrak");
778                 break;
779         case LFUN_ITAL:
780                 if (currentMode() == TEXT_MODE)
781                         handleFont(cur, cmd.argument, "textit");
782                 else
783                         handleFont(cur, cmd.argument, "mathit");
784                 break;
785         case LFUN_NOUN:
786                 if (currentMode() == TEXT_MODE)
787                         // FIXME: should be "noun"
788                         handleFont(cur, cmd.argument, "textsc");
789                 else
790                         handleFont(cur, cmd.argument, "mathbb");
791                 break;
792         //case LFUN_FREEFONT_APPLY:
793                 handleFont(cur, cmd.argument, "textrm");
794                 break;
795         case LFUN_DEFAULT:
796                 handleFont(cur, cmd.argument, "textnormal");
797                 break;
798
799         case LFUN_MATH_MODE: {
800 #if 1
801                 // ignore math-mode on when already in math mode
802                 if (currentMode() == InsetBase::MATH_MODE && cmd.argument == "on")
803                         break;
804                 cur.macroModeClose();
805                 string const save_selection = grabAndEraseSelection(cur);
806                 selClearOrDel(cur);
807                 //cur.plainInsert(MathAtom(new MathMBoxInset(cur.bv())));
808                 cur.plainInsert(MathAtom(new MathBoxInset("mbox")));
809                 cur.posLeft();
810                 cur.pushLeft(*cur.nextInset());
811                 cur.niceInsert(save_selection);
812 #else
813                 if (currentMode() == InsetBase::TEXT_MODE) {
814                         cur.niceInsert(MathAtom(new MathHullInset("simple")));
815                         cur.message(_("create new math text environment ($...$)"));
816                 } else {
817                         handleFont(cur, cmd.argument, "textrm");
818                         cur.message(_("entered math text mode (textrm)"));
819                 }
820 #endif
821                 break;
822         }
823
824         case LFUN_MATH_SIZE:
825 #if 0
826                 recordUndo(cur);
827                 cur.setSize(arg);
828 #endif
829                 break;
830
831         case LFUN_INSERT_MATRIX: {
832                 recordUndo(cur, Undo::ATOMIC);
833                 unsigned int m = 1;
834                 unsigned int n = 1;
835                 string v_align;
836                 string h_align;
837                 istringstream is(cmd.argument);
838                 is >> m >> n >> v_align >> h_align;
839                 if (m < 1)
840                         m = 1;
841                 if (n < 1)
842                         n = 1;
843                 v_align += 'c';
844                 cur.niceInsert(
845                         MathAtom(new MathArrayInset("array", m, n, v_align[0], h_align)));
846                 break;
847         }
848
849         case LFUN_MATH_DELIM: {
850                 lyxerr << "MathNestInset::LFUN_MATH_DELIM" << endl;
851                 string ls;
852                 string rs = lyx::support::split(cmd.argument, ls, ' ');
853                 // Reasonable default values
854                 if (ls.empty())
855                         ls = '(';
856                 if (rs.empty())
857                         rs = ')';
858                 recordUndo(cur, Undo::ATOMIC);
859                 // Don't do this with multi-cell selections
860                 if (cur.selBegin().idx() == cur.selEnd().idx())
861                         cur.handleNest(MathAtom(new MathDelimInset(ls, rs)));
862                 break;
863         }
864
865         case LFUN_SPACE_INSERT:
866         case LFUN_MATH_SPACE:
867                 recordUndo(cur, Undo::ATOMIC);
868                 cur.insert(MathAtom(new MathSpaceInset(",")));
869                 break;
870
871         case LFUN_INSET_ERT:
872                 // interpret this as if a backslash was typed
873                 recordUndo(cur, Undo::ATOMIC);
874                 interpret(cur, '\\');
875                 break;
876
877         case LFUN_SUBSCRIPT:
878                 // interpret this as if a _ was typed
879                 recordUndo(cur, Undo::ATOMIC);
880                 interpret(cur, '_');
881                 break;
882
883         case LFUN_SUPERSCRIPT:
884                 // interpret this as if a ^ was typed
885                 recordUndo(cur, Undo::ATOMIC);
886                 interpret(cur, '^');
887                 break;
888
889 // FIXME: We probably should swap parts of "math-insert" and "self-insert"
890 // handling such that "self-insert" works on "arbitrary stuff" too, and
891 // math-insert only handles special math things like "matrix".
892         case LFUN_INSERT_MATH: {
893                 recordUndo(cur, Undo::ATOMIC);
894                 if (cmd.argument == "^" || cmd.argument == "_") {
895                         interpret(cur, cmd.argument[0]);
896                 } else
897                         cur.niceInsert(cmd.argument);
898                 break;
899                 }
900
901         case LFUN_DIALOG_SHOW_NEW_INSET: {
902                 string const & name = cmd.argument;
903                 string data;
904                 if (name == "ref") {
905                         RefInset tmp(name);
906                         data = tmp.createDialogStr(name);
907                 }
908                 cur.bv().owner()->getDialogs().show(name, data, 0);
909                 break;
910         }
911
912         default:
913                 MathDimInset::doDispatch(cur, cmd);
914                 break;
915         }
916 }
917
918
919 bool MathNestInset::getStatus(LCursor & /*cur*/, FuncRequest const & cmd,
920                 FuncStatus & flag) const
921 {
922         // the font related toggles
923         //string tc = "mathnormal";
924         bool ret = true;
925         string const arg = cmd.argument;
926         switch (cmd.action) {
927         case LFUN_TABULAR_FEATURE:
928                 flag.enabled(false);
929                 break;
930 #if 0
931         case LFUN_TABULAR_FEATURE:
932                 // FIXME: check temporarily disabled
933                 // valign code
934                 char align = mathcursor::valign();
935                 if (align == '\0') {
936                         enable = false;
937                         break;
938                 }
939                 if (cmd.argument.empty()) {
940                         flag.clear();
941                         break;
942                 }
943                 if (!contains("tcb", cmd.argument[0])) {
944                         enable = false;
945                         break;
946                 }
947                 flag.setOnOff(cmd.argument[0] == align);
948                 break;
949 #endif
950         /// We have to handle them since 1.4 blocks all unhandled actions
951         case LFUN_ITAL:
952         case LFUN_BOLD:
953         case LFUN_SANS:
954         case LFUN_EMPH:
955         case LFUN_CODE:
956         case LFUN_NOUN:
957         case LFUN_ROMAN:
958         case LFUN_DEFAULT:
959                 flag.enabled(true);
960                 break;
961         case LFUN_MATH_MUTATE:
962                 //flag.setOnOff(mathcursor::formula()->hullType() == cmd.argument);
963                 flag.setOnOff(false);
964                 break;
965
966         // we just need to be in math mode to enable that
967         case LFUN_MATH_SIZE:
968         case LFUN_MATH_SPACE:
969         case LFUN_MATH_LIMITS:
970         case LFUN_MATH_NONUMBER:
971         case LFUN_MATH_NUMBER:
972         case LFUN_MATH_EXTERN:
973                 flag.enabled(true);
974                 break;
975
976         case LFUN_FRAK:
977                 flag.enabled(currentMode() != TEXT_MODE);
978                 break;
979
980         case LFUN_INSERT_MATH: {
981                 bool const textarg =
982                         arg == "\\textbf"   || arg == "\\textsf" ||
983                         arg == "\\textrm"   || arg == "\\textmd" ||
984                         arg == "\\textit"   || arg == "\\textsc" ||
985                         arg == "\\textsl"   || arg == "\\textup" ||
986                         arg == "\\texttt"   || arg == "\\textbb" ||
987                         arg == "\\textnormal";
988                 flag.enabled(currentMode() != TEXT_MODE || textarg);
989                 break;
990         }
991
992         case LFUN_INSERT_MATRIX:
993                 flag.enabled(currentMode() == MATH_MODE);
994                 break;
995         default:
996                 ret = false;
997                 break;
998         }
999         return ret;
1000 }
1001
1002
1003 void MathNestInset::edit(LCursor & cur, bool left)
1004 {
1005         cur.push(*this);
1006         cur.idx() = left ? 0 : cur.lastidx();
1007         cur.pos() = left ? 0 : cur.lastpos();
1008         cur.resetAnchor();
1009         //lyxerr << "MathNestInset::edit, cur:\n" << cur << endl;
1010 }
1011
1012
1013 InsetBase * MathNestInset::editXY(LCursor & cur, int x, int y)
1014 {
1015         int idx_min = 0;
1016         int dist_min = 1000000;
1017         for (idx_type i = 0, n = nargs(); i != n; ++i) {
1018                 int const d = cell(i).dist(x, y);
1019                 if (d < dist_min) {
1020                         dist_min = d;
1021                         idx_min = i;
1022                 }
1023         }
1024         MathArray & ar = cell(idx_min);
1025         cur.push(*this);
1026         cur.idx() = idx_min;
1027         cur.pos() = ar.x2pos(x - ar.xo());
1028         //lyxerr << "found cell : " << idx_min << " pos: " << cur.pos() << endl;
1029         if (dist_min == 0) {
1030                 // hit inside cell
1031                 for (pos_type i = 0, n = ar.size(); i < n; ++i)
1032                         if (ar[i]->covers(x, y))
1033                                 return ar[i].nucleus()->editXY(cur, x, y);
1034         }
1035         return this;
1036 }
1037
1038
1039 void MathNestInset::lfunMousePress(LCursor & cur, FuncRequest & cmd)
1040 {
1041         //lyxerr << "## lfunMousePress: buttons: " << cmd.button() << endl;
1042         if (cmd.button() == mouse_button::button1) {
1043                 //lyxerr << "## lfunMousePress: setting cursor to: " << cur << endl;
1044                 cur.bv().mouseSetCursor(cur);
1045         }
1046
1047         if (cmd.button() == mouse_button::button2) {
1048                 MathArray ar;
1049                 asArray(cur.bv().getClipboard(), ar);
1050                 cur.clearSelection();
1051                 editXY(cur, cmd.x, cmd.y);
1052                 cur.insert(ar);
1053                 cur.bv().update();
1054                 return;
1055         }
1056 }
1057
1058
1059 void MathNestInset::lfunMouseMotion(LCursor & cur, FuncRequest & cmd)
1060 {
1061         // only select with button 1
1062         if (cmd.button() == mouse_button::button1) {
1063                 LCursor & bvcur = cur.bv().cursor();
1064                 if (bvcur.anchor_.hasPart(cur)) {
1065                         //lyxerr << "## lfunMouseMotion: cursor: " << cur << endl;
1066                         bvcur.setCursor(cur);
1067                         bvcur.selection() = true;
1068                         //lyxerr << "MOTION " << bvcur << endl;
1069                 }
1070                 else {
1071                         cur.undispatched();
1072                 }
1073         }
1074 }
1075
1076
1077 void MathNestInset::lfunMouseRelease(LCursor & cur, FuncRequest & cmd)
1078 {
1079         //lyxerr << "## lfunMouseRelease: buttons: " << cmd.button() << endl;
1080
1081         if (cmd.button() == mouse_button::button1) {
1082                 //cur.bv().stuffClipboard(cur.grabSelection());
1083                 return;
1084         }
1085
1086         if (cmd.button() == mouse_button::button3) {
1087                 // try to dispatch to enclosed insets first
1088                 cur.bv().owner()->getDialogs().show("mathpanel");
1089                 return;
1090         }
1091
1092         cur.undispatched();
1093 }
1094
1095
1096 bool MathNestInset::interpret(LCursor & cur, char c)
1097 {
1098         //lyxerr << "interpret 2: '" << c << "'" << endl;
1099         string save_selection;
1100         if (c == '^' || c == '_')
1101                 save_selection = grabAndEraseSelection(cur);
1102
1103         cur.clearTargetX();
1104
1105         // handle macroMode
1106         if (cur.inMacroMode()) {
1107                 string name = cur.macroName();
1108
1109                 /// are we currently typing '#1' or '#2' or...?
1110                 if (name == "\\#") {
1111                         cur.backspace();
1112                         int n = c - '0';
1113                         if (n >= 1 && n <= 9)
1114                                 cur.insert(new MathMacroArgument(n));
1115                         return true;
1116                 }
1117
1118                 if (isalpha(c)) {
1119                         cur.activeMacro()->setName(name + c);
1120                         return true;
1121                 }
1122
1123                 // handle 'special char' macros
1124                 if (name == "\\") {
1125                         // remove the '\\'
1126                         if (c == '\\') {
1127                                 cur.backspace();
1128                                 if (currentMode() == MathInset::TEXT_MODE)
1129                                         cur.niceInsert(createMathInset("textbackslash"));
1130                                 else
1131                                         cur.niceInsert(createMathInset("backslash"));
1132                         } else if (c == '{') {
1133                                 cur.backspace();
1134                                 cur.niceInsert(MathAtom(new MathBraceInset));
1135                         } else if (c == '%') {
1136                                 cur.backspace();
1137                                 cur.niceInsert(MathAtom(new MathCommentInset));
1138                         } else if (c == '#') {
1139                                 BOOST_ASSERT(cur.activeMacro());
1140                                 cur.activeMacro()->setName(name + c);
1141                         } else {
1142                                 cur.backspace();
1143                                 cur.niceInsert(createMathInset(string(1, c)));
1144                         }
1145                         return true;
1146                 }
1147
1148                 // One character big delimiters. The others are handled in
1149                 // LCursor::plainInsert.
1150                 latexkeys const * l = in_word_set(name.substr(1));
1151                 if (name[0] == '\\' && l && l->inset == "big") {
1152                         string delim;
1153                         switch (c) {
1154                         case '{':
1155                                 delim = "\\{";
1156                                 break;
1157                         case '}':
1158                                 delim = "\\}";
1159                                 break;
1160                         default:
1161                                 delim = string(1, c);
1162                                 break;
1163                         }
1164                         if (MathBigInset::isBigInsetDelim(delim)) {
1165                                 // name + delim ared a valid MathBigInset.
1166                                 // We can't use cur.macroModeClose() because
1167                                 // it does not handle delim.
1168                                 MathUnknownInset * p = cur.activeMacro();
1169                                 p->finalize();
1170                                 --cur.pos();
1171                                 cur.cell().erase(cur.pos());
1172                                 cur.plainInsert(MathAtom(
1173                                         new MathBigInset(name.substr(1), delim)));
1174                                 return true;
1175                         }
1176                 }
1177
1178                 // leave macro mode and try again if necessary
1179                 cur.macroModeClose();
1180                 if (c == '{')
1181                         cur.niceInsert(MathAtom(new MathBraceInset));
1182                 else if (c != ' ')
1183                         interpret(cur, c);
1184                 return true;
1185         }
1186
1187         // This is annoying as one has to press <space> far too often.
1188         // Disable it.
1189
1190 #if 0
1191                 // leave autocorrect mode if necessary
1192                 if (autocorrect() && c == ' ') {
1193                         autocorrect() = false;
1194                         return true;
1195                 }
1196 #endif
1197
1198         // just clear selection on pressing the space bar
1199         if (cur.selection() && c == ' ') {
1200                 cur.selection() = false;
1201                 return true;
1202         }
1203
1204         selClearOrDel(cur);
1205
1206         if (c == '\\') {
1207                 //lyxerr << "starting with macro" << endl;
1208                 cur.insert(MathAtom(new MathUnknownInset("\\", false)));
1209                 return true;
1210         }
1211
1212         if (c == '\n') {
1213                 if (currentMode() == MathInset::TEXT_MODE)
1214                         cur.insert(c);
1215                 return true;
1216         }
1217
1218         if (c == ' ') {
1219                 if (currentMode() == MathInset::TEXT_MODE) {
1220                         // insert spaces in text mode,
1221                         // but suppress direct insertion of two spaces in a row
1222                         // the still allows typing  '<space>a<space>' and deleting the 'a', but
1223                         // it is better than nothing...
1224                         if (!cur.pos() != 0 || cur.prevAtom()->getChar() != ' ')
1225                                 cur.insert(c);
1226                         return true;
1227                 }
1228                 if (cur.pos() != 0 && cur.prevAtom()->asSpaceInset()) {
1229                         cur.prevAtom().nucleus()->asSpaceInset()->incSpace();
1230                         return true;
1231                 }
1232                 if (cur.popRight())
1233                         return true;
1234                 // if are at the very end, leave the formula
1235                 return cur.pos() != cur.lastpos();
1236         }
1237
1238         // These shouldn't work in text mode:
1239         if (currentMode() != MathInset::TEXT_MODE) {
1240                 if (c == '_') {
1241                         script(cur, false, save_selection);
1242                         return true;
1243                 }
1244                 if (c == '^') {
1245                         script(cur, true, save_selection);
1246                         return true;
1247                 }
1248                 if (c == '~') {
1249                         cur.niceInsert(createMathInset("sim"));
1250                         return true;
1251                 }
1252         }
1253
1254         if (c == '{' || c == '}' || c == '&' || c == '$' || c == '#' || c == '%'
1255       || c == '_' || c == '^') {
1256                 cur.niceInsert(createMathInset(string(1, c)));
1257                 return true;
1258         }
1259
1260
1261         // try auto-correction
1262         //if (autocorrect() && hasPrevAtom() && math_autocorrect(prevAtom(), c))
1263         //      return true;
1264
1265         // no special circumstances, so insert the character without any fuss
1266         cur.insert(c);
1267         cur.autocorrect() = true;
1268         return true;
1269 }
1270
1271
1272 bool MathNestInset::script(LCursor & cur, bool up, string const &
1273                 save_selection)
1274 {
1275         // Hack to get \^ and \_ working
1276         lyxerr << "handling script: up: " << up << endl;
1277         if (cur.inMacroMode() && cur.macroName() == "\\") {
1278                 if (up)
1279                         cur.niceInsert(createMathInset("mathcircumflex"));
1280                 else
1281                         interpret(cur, '_');
1282                 return true;
1283         }
1284
1285         cur.macroModeClose();
1286         if (asScriptInset() && cur.idx() == 0) {
1287                 // we are in a nucleus of a script inset, move to _our_ script
1288                 MathScriptInset * inset = asScriptInset();
1289                 lyxerr << " going to cell " << inset->idxOfScript(up) << endl;
1290                 inset->ensure(up);
1291                 cur.idx() = inset->idxOfScript(up);
1292                 cur.pos() = 0;
1293         } else if (cur.pos() != 0 && cur.prevAtom()->asScriptInset()) {
1294                 --cur.pos();
1295                 MathScriptInset * inset = cur.nextAtom().nucleus()->asScriptInset();
1296                 cur.push(*inset);
1297                 inset->ensure(up);
1298                 cur.idx() = inset->idxOfScript(up);
1299                 cur.pos() = cur.lastpos();
1300         } else {
1301                 // convert the thing to our left to a scriptinset or create a new
1302                 // one if in the very first position of the array
1303                 if (cur.pos() == 0) {
1304                         //lyxerr << "new scriptinset" << endl;
1305                         cur.insert(new MathScriptInset(up));
1306                 } else {
1307                         //lyxerr << "converting prev atom " << endl;
1308                         cur.prevAtom() = MathAtom(new MathScriptInset(cur.prevAtom(), up));
1309                 }
1310                 --cur.pos();
1311                 MathScriptInset * inset = cur.nextAtom().nucleus()->asScriptInset();
1312                 cur.push(*inset);
1313                 cur.idx() = 1;
1314                 cur.pos() = 0;
1315         }
1316         //lyxerr << "inserting selection 1:\n" << save_selection << endl;
1317         cur.niceInsert(save_selection);
1318         cur.resetAnchor();
1319         //lyxerr << "inserting selection 2:\n" << save_selection << endl;
1320         return true;
1321 }