]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathNest.C
* src/mathed/InsetMathNest.C
[lyx.git] / src / mathed / InsetMathNest.C
1 /**
2  * \file InsetMathNest.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 "InsetMathNest.h"
14
15 #include "InsetMathArray.h"
16 #include "InsetMathBig.h"
17 #include "InsetMathBox.h"
18 #include "InsetMathBrace.h"
19 #include "InsetMathColor.h"
20 #include "InsetMathComment.h"
21 #include "MathData.h"
22 #include "InsetMathDelim.h"
23 #include "MathFactory.h"
24 #include "InsetMathHull.h"
25 #include "MathStream.h"
26 #include "MathMacroArgument.h"
27 //#include "InsetMathMBox.h"
28 #include "MathParser.h"
29 #include "InsetMathScript.h"
30 #include "InsetMathSpace.h"
31 #include "InsetMathSymbol.h"
32 #include "MathSupport.h"
33 #include "InsetMathUnknown.h"
34 #include "InsetMathRef.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 "lyxtext.h"
48 #include "outputparams.h"
49 #include "undo.h"
50
51 #include "support/lstrings.h"
52
53 #include "frontends/Painter.h"
54 #include "frontends/Selection.h"
55
56 #include "funcrequest.h"
57 #include "lyxserver.h"
58 #include "lyxsocket.h"
59
60 #include <sstream>
61
62
63 namespace lyx {
64
65 using cap::copySelection;
66 using cap::grabAndEraseSelection;
67 using cap::cutSelection;
68 using cap::replaceSelection;
69 using cap::selClearOrDel;
70
71 using std::endl;
72 using std::string;
73 using std::istringstream;
74
75
76 InsetMathNest::InsetMathNest(idx_type nargs)
77         : cells_(nargs), lock_(false)
78 {}
79
80
81 InsetMath::idx_type InsetMathNest::nargs() const
82 {
83         return cells_.size();
84 }
85
86
87 MathArray & InsetMathNest::cell(idx_type i)
88 {
89         return cells_[i];
90 }
91
92
93 MathArray const & InsetMathNest::cell(idx_type i) const
94 {
95         return cells_[i];
96 }
97
98
99 void InsetMathNest::cursorPos(BufferView const & bv,
100                 CursorSlice const & sl, bool /*boundary*/,
101                 int & x, int & y) const
102 {
103 // FIXME: This is a hack. Ideally, the coord cache should not store
104 // absolute positions, but relative ones. This would mean to call
105 // setXY() not in MathArray::draw(), but in the parent insets' draw()
106 // with the correctly adjusted x,y values. But this means that we'd have
107 // to touch all (math)inset's draw() methods. Right now, we'll store
108 // absolute value, and make them here relative, only to make them
109 // absolute again when actually drawing the cursor. What a mess.
110         BOOST_ASSERT(ptr_cmp(&sl.inset(), this));
111         MathArray const & ar = sl.cell();
112         CoordCache const & coord_cache = bv.coordCache();
113         if (!coord_cache.getArrays().has(&ar)) {
114                 // this can (semi-)legally happen if we just created this cell
115                 // and it never has been drawn before. So don't ASSERT.
116                 //lyxerr << "no cached data for array " << &ar << endl;
117                 x = 0;
118                 y = 0;
119                 return;
120         }
121         Point const pt = coord_cache.getArrays().xy(&ar);
122         if (!coord_cache.getInsets().has(this)) {
123                 // same as above
124                 //lyxerr << "no cached data for inset " << this << endl;
125                 x = 0;
126                 y = 0;
127                 return;
128         }
129         Point const pt2 = coord_cache.getInsets().xy(this);
130         //lyxerr << "retrieving position cache for MathArray "
131         //      << pt.x_ << ' ' << pt.y_ << std::endl;
132         x = pt.x_ - pt2.x_ + ar.pos2x(sl.pos());
133         y = pt.y_ - pt2.y_;
134 //      lyxerr << "pt.y_ : " << pt.y_ << " pt2_.y_ : " << pt2.y_
135 //              << " asc: " << ascent() << "  des: " << descent()
136 //              << " ar.asc: " << ar.ascent() << " ar.des: " << ar.descent() << endl;
137         // move cursor visually into empty cells ("blue rectangles");
138         if (ar.empty())
139                 x += 2;
140 }
141
142
143 void InsetMathNest::metrics(MetricsInfo const & mi) const
144 {
145         MetricsInfo m = mi;
146         for (idx_type i = 0, n = nargs(); i != n; ++i)
147                 cell(i).metrics(m);
148 }
149
150
151 bool InsetMathNest::idxNext(LCursor & cur) const
152 {
153         BOOST_ASSERT(ptr_cmp(&cur.inset(), this));
154         if (cur.idx() == cur.lastidx())
155                 return false;
156         ++cur.idx();
157         cur.pos() = 0;
158         return true;
159 }
160
161
162 bool InsetMathNest::idxRight(LCursor & cur) const
163 {
164         return idxNext(cur);
165 }
166
167
168 bool InsetMathNest::idxPrev(LCursor & cur) const
169 {
170         BOOST_ASSERT(ptr_cmp(&cur.inset(), this));
171         if (cur.idx() == 0)
172                 return false;
173         --cur.idx();
174         cur.pos() = cur.lastpos();
175         return true;
176 }
177
178
179 bool InsetMathNest::idxLeft(LCursor & cur) const
180 {
181         return idxPrev(cur);
182 }
183
184
185 bool InsetMathNest::idxFirst(LCursor & cur) const
186 {
187         BOOST_ASSERT(ptr_cmp(&cur.inset(), this));
188         if (nargs() == 0)
189                 return false;
190         cur.idx() = 0;
191         cur.pos() = 0;
192         return true;
193 }
194
195
196 bool InsetMathNest::idxLast(LCursor & cur) const
197 {
198         BOOST_ASSERT(ptr_cmp(&cur.inset(), this));
199         if (nargs() == 0)
200                 return false;
201         cur.idx() = cur.lastidx();
202         cur.pos() = cur.lastpos();
203         return true;
204 }
205
206
207 void InsetMathNest::dump() const
208 {
209         odocstringstream oss;
210         WriteStream os(oss);
211         os << "---------------------------------------------\n";
212         write(os);
213         os << "\n";
214         for (idx_type i = 0, n = nargs(); i != n; ++i)
215                 os << cell(i) << "\n";
216         os << "---------------------------------------------\n";
217         lyxerr << to_utf8(oss.str());
218 }
219
220
221 void InsetMathNest::draw(PainterInfo & pi, int x, int y) const
222 {
223 #if 0
224         if (lock_)
225                 pi.pain.fillRectangle(x, y - ascent(), width(), height(),
226                                         LColor::mathlockbg);
227 #endif
228         setPosCache(pi, x, y);
229 }
230
231
232 void InsetMathNest::drawSelection(PainterInfo & pi, int x, int y) const
233 {
234         BufferView & bv = *pi.base.bv;
235         // this should use the x/y values given, not the cached values
236         LCursor & cur = bv.cursor();
237         if (!cur.selection())
238                 return;
239         if (!ptr_cmp(&cur.inset(), this))
240                 return;
241
242         // FIXME: hack to get position cache warm
243         pi.pain.setDrawingEnabled(false);
244         draw(pi, x, y);
245         pi.pain.setDrawingEnabled(true);
246
247         CursorSlice s1 = cur.selBegin();
248         CursorSlice s2 = cur.selEnd();
249
250         //lyxerr << "InsetMathNest::drawing selection: "
251         //      << " s1: " << s1 << " s2: " << s2 << endl;
252         if (s1.idx() == s2.idx()) {
253                 MathArray const & c = cell(s1.idx());
254                 int x1 = c.xo(bv) + c.pos2x(s1.pos());
255                 int y1 = c.yo(bv) - c.ascent();
256                 int x2 = c.xo(bv) + c.pos2x(s2.pos());
257                 int y2 = c.yo(bv) + c.descent();
258                 pi.pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, LColor::selection);
259         //lyxerr << "InsetMathNest::drawing selection 3: "
260         //      << " x1: " << x1 << " x2: " << x2
261         //      << " y1: " << y1 << " y2: " << y2 << endl;
262         } else {
263                 for (idx_type i = 0; i < nargs(); ++i) {
264                         if (idxBetween(i, s1.idx(), s2.idx())) {
265                                 MathArray const & c = cell(i);
266                                 int x1 = c.xo(bv);
267                                 int y1 = c.yo(bv) - c.ascent();
268                                 int x2 = c.xo(bv) + c.width();
269                                 int y2 = c.yo(bv) + c.descent();
270                                 pi.pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, LColor::selection);
271                         }
272                 }
273         }
274 }
275
276
277 void InsetMathNest::validate(LaTeXFeatures & features) const
278 {
279         for (idx_type i = 0; i < nargs(); ++i)
280                 cell(i).validate(features);
281 }
282
283
284 void InsetMathNest::replace(ReplaceData & rep)
285 {
286         for (idx_type i = 0; i < nargs(); ++i)
287                 cell(i).replace(rep);
288 }
289
290
291 bool InsetMathNest::contains(MathArray const & ar) const
292 {
293         for (idx_type i = 0; i < nargs(); ++i)
294                 if (cell(i).contains(ar))
295                         return true;
296         return false;
297 }
298
299
300 bool InsetMathNest::lock() const
301 {
302         return lock_;
303 }
304
305
306 void InsetMathNest::lock(bool l)
307 {
308         lock_ = l;
309 }
310
311
312 bool InsetMathNest::isActive() const
313 {
314         return nargs() > 0;
315 }
316
317
318 MathArray InsetMathNest::glue() const
319 {
320         MathArray ar;
321         for (size_t i = 0; i < nargs(); ++i)
322                 ar.append(cell(i));
323         return ar;
324 }
325
326
327 void InsetMathNest::write(WriteStream & os) const
328 {
329         os << '\\' << name().c_str();
330         for (size_t i = 0; i < nargs(); ++i)
331                 os << '{' << cell(i) << '}';
332         if (nargs() == 0)
333                 os.pendingSpace(true);
334         if (lock_ && !os.latex()) {
335                 os << "\\lyxlock";
336                 os.pendingSpace(true);
337         }
338 }
339
340
341 void InsetMathNest::normalize(NormalStream & os) const
342 {
343         os << '[' << name().c_str();
344         for (size_t i = 0; i < nargs(); ++i)
345                 os << ' ' << cell(i);
346         os << ']';
347 }
348
349
350 int InsetMathNest::latex(Buffer const &, odocstream & os,
351                         OutputParams const & runparams) const
352 {
353         WriteStream wi(os, runparams.moving_arg, true);
354         write(wi);
355         return wi.line();
356 }
357
358
359 bool InsetMathNest::notifyCursorLeaves(LCursor & /*cur*/)
360 {
361 #ifdef WITH_WARNINGS
362 #warning look here
363 #endif
364 #if 0
365         MathArray & ar = cur.cell();
366         // remove base-only "scripts"
367         for (pos_type i = 0; i + 1 < ar.size(); ++i) {
368                 InsetMathScript * p = operator[](i).nucleus()->asScriptInset();
369                 if (p && p->nargs() == 1) {
370                         MathArray ar = p->nuc();
371                         erase(i);
372                         insert(i, ar);
373                         cur.adjust(i, ar.size() - 1);
374                 }
375         }
376
377         // glue adjacent font insets of the same kind
378         for (pos_type i = 0; i + 1 < size(); ++i) {
379                 InsetMathFont * p = operator[](i).nucleus()->asFontInset();
380                 InsetMathFont const * q = operator[](i + 1)->asFontInset();
381                 if (p && q && p->name() == q->name()) {
382                         p->cell(0).append(q->cell(0));
383                         erase(i + 1);
384                         cur.adjust(i, -1);
385                 }
386         }
387 #endif
388         return false;
389 }
390
391
392 void InsetMathNest::handleFont
393         (LCursor & cur, docstring const & arg, char const * const font)
394 {
395         handleFont(cur, arg, from_ascii(font));
396 }
397
398
399 void InsetMathNest::handleFont
400         (LCursor & cur, docstring const & arg, docstring const & font)
401 {
402         // this whole function is a hack and won't work for incremental font
403         // changes...
404
405         if (cur.inset().asInsetMath()->name() == font) {
406                 recordUndoInset(cur, Undo::ATOMIC);
407                 cur.handleFont(to_utf8(font));
408         } else {
409                 recordUndo(cur, Undo::ATOMIC);
410                 cur.handleNest(createInsetMath(font));
411                 cur.insert(arg);
412         }
413 }
414
415
416 void InsetMathNest::handleFont2(LCursor & cur, docstring const & arg)
417 {
418         recordUndo(cur, Undo::ATOMIC);
419         LyXFont font;
420         bool b;
421         bv_funcs::string2font(to_utf8(arg), font, b);
422         if (font.color() != LColor::inherit) {
423                 MathAtom at = MathAtom(new InsetMathColor(true, font.color()));
424                 cur.handleNest(at, 0);
425         }
426 }
427
428
429 void InsetMathNest::doDispatch(LCursor & cur, FuncRequest & cmd)
430 {
431         //lyxerr << "InsetMathNest: request: " << cmd << std::endl;
432         //CursorSlice sl = cur.current();
433
434         switch (cmd.action) {
435
436         case LFUN_PASTE: {
437                 recordUndo(cur);
438                 cur.message(_("Paste"));
439                 replaceSelection(cur);
440                 size_t n = 0;
441                 istringstream is(to_utf8(cmd.argument()));
442                 is >> n;
443                 docstring const selection = cap::getSelection(cur.buffer(), n);
444                 cur.niceInsert(selection);
445                 cur.clearSelection(); // bug 393
446                 cur.bv().switchKeyMap();
447                 finishUndo();
448                 break;
449         }
450
451         case LFUN_CUT:
452                 recordUndo(cur);
453                 cutSelection(cur, true, true);
454                 cur.message(_("Cut"));
455                 // Prevent stale position >= size crash
456                 // Probably not necessary anymore, see eraseSelection (gb 2005-10-09)
457                 cur.normalize();
458                 break;
459
460         case LFUN_COPY:
461                 copySelection(cur);
462                 cur.message(_("Copy"));
463                 break;
464
465         case LFUN_MOUSE_PRESS:
466                 lfunMousePress(cur, cmd);
467                 break;
468
469         case LFUN_MOUSE_MOTION:
470                 lfunMouseMotion(cur, cmd);
471                 break;
472
473         case LFUN_MOUSE_RELEASE:
474                 lfunMouseRelease(cur, cmd);
475                 break;
476
477         case LFUN_FINISHED_LEFT:
478                 cur.bv().cursor() = cur;
479                 break;
480
481         case LFUN_FINISHED_RIGHT:
482                 ++cur.pos();
483                 cur.bv().cursor() = cur;
484                 break;
485
486         case LFUN_FINISHED_UP:
487                 cur.bv().cursor() = cur;
488                 break;
489
490         case LFUN_FINISHED_DOWN:
491                 ++cur.pos();
492                 cur.bv().cursor() = cur;
493                 break;
494
495         case LFUN_CHAR_FORWARD:
496                 // FIXME: we have to enable full redraw here because of the
497                 // visual box corners that define the inset. If we know for
498                 // sure that we stay within the same cell we can optimize for
499                 // that using:
500                 //cur.updateFlags(Update::FitCursor);
501         case LFUN_CHAR_FORWARD_SELECT:
502                 cur.selHandle(cmd.action == LFUN_CHAR_FORWARD_SELECT);
503                 cur.autocorrect() = false;
504                 cur.clearTargetX();
505                 cur.macroModeClose();
506                 if (cur.pos() != cur.lastpos() && cur.openable(cur.nextAtom())) {
507                         cur.pushLeft(*cur.nextAtom().nucleus());
508                         cur.inset().idxFirst(cur);
509                 } else if (cur.posRight() || idxRight(cur)
510                         || cur.popRight() || cur.selection())
511                         ;
512                 else {
513                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
514                         cur.undispatched();
515                 }
516                 break;
517
518         case LFUN_CHAR_BACKWARD:
519                 // FIXME: we have to enable full redraw here because of the
520                 // visual box corners that define the inset. If we know for
521                 // sure that we stay within the same cell we can optimize for
522                 // that using:
523                 //cur.updateFlags(Update::FitCursor);
524         case LFUN_CHAR_BACKWARD_SELECT:
525                 cur.selHandle(cmd.action == LFUN_CHAR_BACKWARD_SELECT);
526                 cur.autocorrect() = false;
527                 cur.clearTargetX();
528                 cur.macroModeClose();
529                 if (cur.pos() != 0 && cur.openable(cur.prevAtom())) {
530                         cur.posLeft();
531                         cur.push(*cur.nextAtom().nucleus());
532                         cur.inset().idxLast(cur);
533                 } else if (cur.posLeft() || idxLeft(cur)
534                         || cur.popLeft() || cur.selection())
535                         ;
536                 else {
537                         cmd = FuncRequest(LFUN_FINISHED_LEFT);
538                         cur.undispatched();
539                 }
540                 break;
541
542         case LFUN_UP:
543                 // FIXME: we have to enable full redraw here because of the
544                 // visual box corners that define the inset. If we know for
545                 // sure that we stay within the same cell we can optimize for
546                 // that using:
547                 //cur.updateFlags(Update::FitCursor);
548         case LFUN_UP_SELECT:
549                 // FIXME Tried to use clearTargetX and macroModeClose, crashed on cur.up()
550                 if (cur.inMacroMode()) {
551                         // Make Helge happy
552                         cur.macroModeClose();
553                         break;
554                 }
555                 cur.selHandle(cmd.action == LFUN_UP_SELECT);
556                 if (!cur.up()) {
557                         cmd = FuncRequest(LFUN_FINISHED_UP);
558                         cur.undispatched();
559                 }
560                 // fixes bug 1598. Please check!
561                 cur.normalize();
562                 break;
563
564         case LFUN_DOWN:
565                 // FIXME: we have to enable full redraw here because of the
566                 // visual box corners that define the inset. If we know for
567                 // sure that we stay within the same cell we can optimize for
568                 // that using:
569                 //cur.updateFlags(Update::FitCursor);
570         case LFUN_DOWN_SELECT:
571                 if (cur.inMacroMode()) {
572                         cur.macroModeClose();
573                         break;
574                 }
575                 cur.selHandle(cmd.action == LFUN_DOWN_SELECT);
576                 if (!cur.down()) {
577                         cmd = FuncRequest(LFUN_FINISHED_DOWN);
578                         cur.undispatched();
579                 }
580                 // fixes bug 1598. Please check!
581                 cur.normalize();
582                 break;
583
584         case LFUN_MOUSE_DOUBLE:
585         case LFUN_MOUSE_TRIPLE:
586         case LFUN_WORD_SELECT:
587                 cur.pos() = 0;
588                 cur.idx() = 0;
589                 cur.resetAnchor();
590                 cur.selection() = true;
591                 cur.pos() = cur.lastpos();
592                 cur.idx() = cur.lastidx();
593                 break;
594
595         case LFUN_PARAGRAPH_UP:
596         case LFUN_PARAGRAPH_DOWN:
597                 // FIXME: we have to enable full redraw here because of the
598                 // visual box corners that define the inset. If we know for
599                 // sure that we stay within the same cell we can optimize for
600                 // that using:
601                 //cur.updateFlags(Update::FitCursor);
602         case LFUN_PARAGRAPH_UP_SELECT:
603         case LFUN_PARAGRAPH_DOWN_SELECT:
604                 break;
605
606         case LFUN_LINE_BEGIN:
607         case LFUN_WORD_BACKWARD:
608                 // FIXME: we have to enable full redraw here because of the
609                 // visual box corners that define the inset. If we know for
610                 // sure that we stay within the same cell we can optimize for
611                 // that using:
612                 //cur.updateFlags(Update::FitCursor);
613         case LFUN_LINE_BEGIN_SELECT:
614         case LFUN_WORD_BACKWARD_SELECT:
615                 cur.selHandle(cmd.action == LFUN_WORD_BACKWARD_SELECT ||
616                                 cmd.action == LFUN_LINE_BEGIN_SELECT);
617                 cur.macroModeClose();
618                 if (cur.pos() != 0) {
619                         cur.pos() = 0;
620                 } else if (cur.col() != 0) {
621                         cur.idx() -= cur.col();
622                         cur.pos() = 0;
623                 } else if (cur.idx() != 0) {
624                         cur.idx() = 0;
625                         cur.pos() = 0;
626                 } else {
627                         cmd = FuncRequest(LFUN_FINISHED_LEFT);
628                         cur.undispatched();
629                 }
630                 break;
631
632         case LFUN_WORD_FORWARD:
633         case LFUN_LINE_END:
634                 // FIXME: we have to enable full redraw here because of the
635                 // visual box corners that define the inset. If we know for
636                 // sure that we stay within the same cell we can optimize for
637                 // that using:
638                 //cur.updateFlags(Update::FitCursor);
639         case LFUN_WORD_FORWARD_SELECT:
640         case LFUN_LINE_END_SELECT:
641                 cur.selHandle(cmd.action == LFUN_WORD_FORWARD_SELECT ||
642                                 cmd.action == LFUN_LINE_END_SELECT);
643                 cur.macroModeClose();
644                 cur.clearTargetX();
645                 if (cur.pos() != cur.lastpos()) {
646                         cur.pos() = cur.lastpos();
647                 } else if (ncols() && (cur.col() != cur.lastcol())) {
648                         cur.idx() = cur.idx() - cur.col() + cur.lastcol();
649                         cur.pos() = cur.lastpos();
650                 } else if (cur.idx() != cur.lastidx()) {
651                         cur.idx() = cur.lastidx();
652                         cur.pos() = cur.lastpos();
653                 } else {
654                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
655                         cur.undispatched();
656                 }
657                 break;
658
659         case LFUN_SCREEN_UP_SELECT:
660         case LFUN_SCREEN_UP:
661                 cmd = FuncRequest(LFUN_FINISHED_LEFT);
662                 cur.undispatched();
663                 break;
664
665         case LFUN_SCREEN_DOWN_SELECT:
666         case LFUN_SCREEN_DOWN:
667                 cmd = FuncRequest(LFUN_FINISHED_RIGHT);
668                 cur.undispatched();
669                 break;
670
671         case LFUN_CELL_FORWARD:
672                 // FIXME: we have to enable full redraw here because of the
673                 // visual box corners that define the inset. If we know for
674                 // sure that we stay within the same cell we can optimize for
675                 // that using:
676                 //cur.updateFlags(Update::FitCursor);
677                 cur.inset().idxNext(cur);
678                 break;
679
680         case LFUN_CELL_BACKWARD:
681                 // FIXME: we have to enable full redraw here because of the
682                 // visual box corners that define the inset. If we know for
683                 // sure that we stay within the same cell we can optimize for
684                 // that using:
685                 //cur.updateFlags(Update::FitCursor);
686                 cur.inset().idxPrev(cur);
687                 break;
688
689         case LFUN_WORD_DELETE_BACKWARD:
690         case LFUN_CHAR_DELETE_BACKWARD:
691                 if (cur.pos() == 0)
692                         // May affect external cell:
693                         recordUndoInset(cur, Undo::ATOMIC);
694                 else
695                         recordUndo(cur, Undo::ATOMIC);
696                 // if the inset can not be removed from within, delete it
697                 if (!cur.backspace()) {
698                         FuncRequest cmd = FuncRequest(LFUN_CHAR_DELETE_FORWARD);
699                         cur.bv().getLyXText()->dispatch(cur, cmd);
700                 }
701                 break;
702
703         case LFUN_WORD_DELETE_FORWARD:
704         case LFUN_CHAR_DELETE_FORWARD:
705                 if (cur.pos() == cur.lastpos())
706                         // May affect external cell:
707                         recordUndoInset(cur, Undo::ATOMIC);
708                 else
709                         recordUndo(cur, Undo::ATOMIC);
710                 // if the inset can not be removed from within, delete it
711                 if (!cur.erase()) {
712                         FuncRequest cmd = FuncRequest(LFUN_CHAR_DELETE_FORWARD);
713                         cur.bv().getLyXText()->dispatch(cur, cmd);
714                 }
715                 break;
716
717         case LFUN_ESCAPE:
718                 if (cur.selection())
719                         cur.clearSelection();
720                 else  {
721                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
722                         cur.undispatched();
723                 }
724                 break;
725
726         case LFUN_INSET_TOGGLE:
727                 recordUndo(cur);
728                 lock(!lock());
729                 cur.popRight();
730                 break;
731
732         case LFUN_SELF_INSERT:
733                 if (cmd.argument().size() != 1) {
734                         recordUndo(cur);
735                         docstring const arg = cmd.argument();
736                         if (!interpretString(cur, arg))
737                                 cur.insert(arg);
738                         break;
739                 }
740                 // Don't record undo steps if we are in macro mode and
741                 // cmd.argument is the next character of the macro name.
742                 // Otherwise we'll get an invalid cursor if we undo after
743                 // the macro was finished and the macro is a known command,
744                 // e.g. sqrt. LCursor::macroModeClose replaces in this case
745                 // the InsetMathUnknown with name "frac" by an empty
746                 // InsetMathFrac -> a pos value > 0 is invalid.
747                 // A side effect is that an undo before the macro is finished
748                 // undoes the complete macro, not only the last character.
749                 if (!cur.inMacroMode())
750                         recordUndo(cur);
751
752                 // spacial handling of space. If we insert an inset
753                 // via macro mode, we want to put the cursor inside it
754                 // if relevant. Think typing "\frac<space>".
755                 if (cmd.argument()[0] == ' '
756                     && cur.inMacroMode() && cur.macroName() != "\\"
757                     && cur.macroModeClose()) {
758                         MathAtom const atom = cur.prevAtom();
759                         if (atom->asNestInset() && atom->nargs() > 0) {
760                                 cur.posLeft();
761                                 cur.pushLeft(*cur.nextInset());
762                         }
763                 } else if (!interpretChar(cur, cmd.argument()[0])) {
764                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
765                         cur.undispatched();
766                 }
767                 break;
768
769         //case LFUN_SERVER_GET_XY:
770         //      sprintf(dispatch_buffer, "%d %d",);
771         //      break;
772
773         case LFUN_SERVER_SET_XY: {
774                 lyxerr << "LFUN_SERVER_SET_XY broken!" << endl;
775                 int x = 0;
776                 int y = 0;
777                 istringstream is(to_utf8(cmd.argument()));
778                 is >> x >> y;
779                 cur.setScreenPos(x, y);
780                 break;
781         }
782
783         // Special casing for superscript in case of LyX handling
784         // dead-keys:
785         case LFUN_ACCENT_CIRCUMFLEX:
786                 if (cmd.argument().empty()) {
787                         // do superscript if LyX handles
788                         // deadkeys
789                         recordUndo(cur, Undo::ATOMIC);
790                         script(cur, true, grabAndEraseSelection(cur));
791                 }
792                 break;
793
794         case LFUN_ACCENT_UMLAUT:
795         case LFUN_ACCENT_ACUTE:
796         case LFUN_ACCENT_GRAVE:
797         case LFUN_ACCENT_BREVE:
798         case LFUN_ACCENT_DOT:
799         case LFUN_ACCENT_MACRON:
800         case LFUN_ACCENT_CARON:
801         case LFUN_ACCENT_TILDE:
802         case LFUN_ACCENT_CEDILLA:
803         case LFUN_ACCENT_CIRCLE:
804         case LFUN_ACCENT_UNDERDOT:
805         case LFUN_ACCENT_TIE:
806         case LFUN_ACCENT_OGONEK:
807         case LFUN_ACCENT_HUNGARIAN_UMLAUT:
808                 break;
809
810         //  Math fonts
811         case LFUN_FONT_FREE_APPLY:
812         case LFUN_FONT_FREE_UPDATE:
813                 handleFont2(cur, cmd.argument());
814                 break;
815
816         case LFUN_FONT_BOLD:
817                 if (currentMode() == TEXT_MODE)
818                         handleFont(cur, cmd.argument(), "textbf");
819                 else
820                         handleFont(cur, cmd.argument(), "mathbf");
821                 break;
822         case LFUN_FONT_SANS:
823                 if (currentMode() == TEXT_MODE)
824                         handleFont(cur, cmd.argument(), "textsf");
825                 else
826                         handleFont(cur, cmd.argument(), "mathsf");
827                 break;
828         case LFUN_FONT_EMPH:
829                 if (currentMode() == TEXT_MODE)
830                         handleFont(cur, cmd.argument(), "emph");
831                 else
832                         handleFont(cur, cmd.argument(), "mathcal");
833                 break;
834         case LFUN_FONT_ROMAN:
835                 if (currentMode() == TEXT_MODE)
836                         handleFont(cur, cmd.argument(), "textrm");
837                 else
838                         handleFont(cur, cmd.argument(), "mathrm");
839                 break;
840         case LFUN_FONT_CODE:
841                 if (currentMode() == TEXT_MODE)
842                         handleFont(cur, cmd.argument(), "texttt");
843                 else
844                         handleFont(cur, cmd.argument(), "mathtt");
845                 break;
846         case LFUN_FONT_FRAK:
847                 handleFont(cur, cmd.argument(), "mathfrak");
848                 break;
849         case LFUN_FONT_ITAL:
850                 if (currentMode() == TEXT_MODE)
851                         handleFont(cur, cmd.argument(), "textit");
852                 else
853                         handleFont(cur, cmd.argument(), "mathit");
854                 break;
855         case LFUN_FONT_NOUN:
856                 if (currentMode() == TEXT_MODE)
857                         // FIXME: should be "noun"
858                         handleFont(cur, cmd.argument(), "textsc");
859                 else
860                         handleFont(cur, cmd.argument(), "mathbb");
861                 break;
862         /*
863         case LFUN_FONT_FREE_APPLY:
864                 handleFont(cur, cmd.argument(), "textrm");
865                 break;
866         */
867         case LFUN_FONT_DEFAULT:
868                 handleFont(cur, cmd.argument(), "textnormal");
869                 break;
870
871         case LFUN_MATH_MODE: {
872 #if 1
873                 // ignore math-mode on when already in math mode
874                 if (currentMode() == InsetBase::MATH_MODE && cmd.argument() == "on")
875                         break;
876                 cur.macroModeClose();
877                 docstring const save_selection = grabAndEraseSelection(cur);
878                 selClearOrDel(cur);
879                 //cur.plainInsert(MathAtom(new InsetMathMBox(cur.bv())));
880                 cur.plainInsert(MathAtom(new InsetMathBox(from_ascii("mbox"))));
881                 cur.posLeft();
882                 cur.pushLeft(*cur.nextInset());
883                 cur.niceInsert(save_selection);
884 #else
885                 if (currentMode() == InsetBase::TEXT_MODE) {
886                         cur.niceInsert(MathAtom(new InsetMathHull("simple")));
887                         cur.message(_("create new math text environment ($...$)"));
888                 } else {
889                         handleFont(cur, cmd.argument(), "textrm");
890                         cur.message(_("entered math text mode (textrm)"));
891                 }
892 #endif
893                 break;
894         }
895
896         case LFUN_MATH_SIZE:
897 #if 0
898                 recordUndo(cur);
899                 cur.setSize(arg);
900 #endif
901                 break;
902
903         case LFUN_MATH_MATRIX: {
904                 recordUndo(cur, Undo::ATOMIC);
905                 unsigned int m = 1;
906                 unsigned int n = 1;
907                 docstring v_align;
908                 docstring h_align;
909                 idocstringstream is(cmd.argument());
910                 is >> m >> n >> v_align >> h_align;
911                 if (m < 1)
912                         m = 1;
913                 if (n < 1)
914                         n = 1;
915                 v_align += 'c';
916                 cur.niceInsert(
917                         MathAtom(new InsetMathArray(from_ascii("array"), m, n, (char)v_align[0], h_align)));
918                 break;
919         }
920
921         case LFUN_MATH_DELIM: {
922                 docstring ls;
923                 docstring rs = support::split(cmd.argument(), ls, ' ');
924                 // Reasonable default values
925                 if (ls.empty())
926                         ls = '(';
927                 if (rs.empty())
928                         rs = ')';
929                 recordUndo(cur, Undo::ATOMIC);
930                 cur.handleNest(MathAtom(new InsetMathDelim(ls, rs)));
931                 break;
932         }
933
934         case LFUN_MATH_BIGDELIM: {
935                 docstring const lname  = from_utf8(cmd.getArg(0));
936                 docstring const ldelim = from_utf8(cmd.getArg(1));
937                 docstring const rname  = from_utf8(cmd.getArg(2));
938                 docstring const rdelim = from_utf8(cmd.getArg(3));
939                 latexkeys const * l = in_word_set(lname);
940                 bool const have_l = l && l->inset == "big" &&
941                                     InsetMathBig::isBigInsetDelim(ldelim);
942                 l = in_word_set(rname);
943                 bool const have_r = l && l->inset == "big" &&
944                                     InsetMathBig::isBigInsetDelim(rdelim);
945                 // We mimic LFUN_MATH_DELIM in case we have an empty left
946                 // or right delimiter.
947                 if (have_l || have_r) {
948                         recordUndo(cur, Undo::ATOMIC);
949                         docstring const selection = grabAndEraseSelection(cur);
950                         selClearOrDel(cur);
951                         if (have_l)
952                                 cur.insert(MathAtom(new InsetMathBig(lname,
953                                                                 ldelim)));
954                         cur.niceInsert(selection);
955                         if (have_r)
956                                 cur.insert(MathAtom(new InsetMathBig(rname,
957                                                                 rdelim)));
958                 }
959                 // Don't call cur.undispatched() if we did nothing, this would
960                 // lead to infinite recursion via LyXText::dispatch().
961                 break;
962         }
963
964         case LFUN_SPACE_INSERT:
965         case LFUN_MATH_SPACE:
966                 recordUndo(cur, Undo::ATOMIC);
967                 cur.insert(MathAtom(new InsetMathSpace(from_ascii(","))));
968                 break;
969
970         case LFUN_ERT_INSERT:
971                 // interpret this as if a backslash was typed
972                 recordUndo(cur, Undo::ATOMIC);
973                 interpretChar(cur, '\\');
974                 break;
975
976         case LFUN_MATH_SUBSCRIPT:
977                 // interpret this as if a _ was typed
978                 recordUndo(cur, Undo::ATOMIC);
979                 interpretChar(cur, '_');
980                 break;
981
982         case LFUN_MATH_SUPERSCRIPT:
983                 // interpret this as if a ^ was typed
984                 recordUndo(cur, Undo::ATOMIC);
985                 interpretChar(cur, '^');
986                 break;
987
988         case LFUN_QUOTE_INSERT:
989                 // interpret this as if a straight " was typed
990                 recordUndo(cur, Undo::ATOMIC);
991                 interpretChar(cur, '\"');
992                 break;
993
994 // FIXME: We probably should swap parts of "math-insert" and "self-insert"
995 // handling such that "self-insert" works on "arbitrary stuff" too, and
996 // math-insert only handles special math things like "matrix".
997         case LFUN_MATH_INSERT: {
998                 recordUndo(cur, Undo::ATOMIC);
999                 if (cmd.argument() == "^" || cmd.argument() == "_") {
1000                         interpretChar(cur, cmd.argument()[0]);
1001                 } else
1002                         cur.niceInsert(cmd.argument());
1003                 break;
1004                 }
1005
1006         case LFUN_DIALOG_SHOW_NEW_INSET: {
1007                 docstring const & name = cmd.argument();
1008                 string data;
1009                 if (name == "ref") {
1010                         RefInset tmp(name);
1011                         data = tmp.createDialogStr(to_utf8(name));
1012                 }
1013                 cur.bv().showInsetDialog(to_utf8(name), data, 0);
1014                 break;
1015         }
1016
1017         case LFUN_INSET_INSERT: {
1018                 MathArray ar;
1019                 if (createInsetMath_fromDialogStr(cmd.argument(), ar)) {
1020                         recordUndo(cur);
1021                         cur.insert(ar);
1022                 } else
1023                         cur.undispatched();
1024                 break;
1025         }
1026
1027         default:
1028                 InsetMathDim::doDispatch(cur, cmd);
1029                 break;
1030         }
1031 }
1032
1033
1034 bool InsetMathNest::getStatus(LCursor & cur, FuncRequest const & cmd,
1035                 FuncStatus & flag) const
1036 {
1037         // the font related toggles
1038         //string tc = "mathnormal";
1039         bool ret = true;
1040         string const arg = to_utf8(cmd.argument());
1041         switch (cmd.action) {
1042         case LFUN_TABULAR_FEATURE:
1043                 flag.enabled(false);
1044                 break;
1045 #if 0
1046         case LFUN_TABULAR_FEATURE:
1047                 // FIXME: check temporarily disabled
1048                 // valign code
1049                 char align = mathcursor::valign();
1050                 if (align == '\0') {
1051                         enable = false;
1052                         break;
1053                 }
1054                 if (cmd.argument().empty()) {
1055                         flag.clear();
1056                         break;
1057                 }
1058                 if (!contains("tcb", cmd.argument()[0])) {
1059                         enable = false;
1060                         break;
1061                 }
1062                 flag.setOnOff(cmd.argument()[0] == align);
1063                 break;
1064 #endif
1065         /// We have to handle them since 1.4 blocks all unhandled actions
1066         case LFUN_FONT_ITAL:
1067         case LFUN_FONT_BOLD:
1068         case LFUN_FONT_SANS:
1069         case LFUN_FONT_EMPH:
1070         case LFUN_FONT_CODE:
1071         case LFUN_FONT_NOUN:
1072         case LFUN_FONT_ROMAN:
1073         case LFUN_FONT_DEFAULT:
1074                 flag.enabled(true);
1075                 break;
1076         case LFUN_MATH_MUTATE:
1077                 //flag.setOnOff(mathcursor::formula()->hullType() == to_utf8(cmd.argument()));
1078                 flag.setOnOff(false);
1079                 break;
1080
1081         // we just need to be in math mode to enable that
1082         case LFUN_MATH_SIZE:
1083         case LFUN_MATH_SPACE:
1084         case LFUN_MATH_LIMITS:
1085         case LFUN_MATH_NONUMBER:
1086         case LFUN_MATH_NUMBER:
1087         case LFUN_MATH_EXTERN:
1088                 flag.enabled(true);
1089                 break;
1090
1091         case LFUN_FONT_FRAK:
1092                 flag.enabled(currentMode() != TEXT_MODE);
1093                 break;
1094
1095         case LFUN_MATH_INSERT: {
1096                 bool const textarg =
1097                         arg == "\\textbf"   || arg == "\\textsf" ||
1098                         arg == "\\textrm"   || arg == "\\textmd" ||
1099                         arg == "\\textit"   || arg == "\\textsc" ||
1100                         arg == "\\textsl"   || arg == "\\textup" ||
1101                         arg == "\\texttt"   || arg == "\\textbb" ||
1102                         arg == "\\textnormal";
1103                 flag.enabled(currentMode() != TEXT_MODE || textarg);
1104                 break;
1105         }
1106
1107         case LFUN_MATH_MATRIX:
1108                 flag.enabled(currentMode() == MATH_MODE);
1109                 break;
1110
1111         case LFUN_INSET_INSERT: {
1112                 // Don't test createMathInset_fromDialogStr(), since
1113                 // getStatus is not called with a valid reference and the
1114                 // dialog would not be applyable.
1115                 string const name = cmd.getArg(0);
1116                 flag.enabled(name == "ref");
1117                 break;
1118         }
1119
1120         case LFUN_MATH_DELIM:
1121         case LFUN_MATH_BIGDELIM:
1122                 // Don't do this with multi-cell selections
1123                 flag.enabled(cur.selBegin().idx() == cur.selEnd().idx());
1124                 break;
1125
1126         default:
1127                 ret = false;
1128                 break;
1129         }
1130         return ret;
1131 }
1132
1133
1134 void InsetMathNest::edit(LCursor & cur, bool left)
1135 {
1136         cur.push(*this);
1137         cur.idx() = left ? 0 : cur.lastidx();
1138         cur.pos() = left ? 0 : cur.lastpos();
1139         cur.resetAnchor();
1140         //lyxerr << "InsetMathNest::edit, cur:\n" << cur << endl;
1141 }
1142
1143
1144 InsetBase * InsetMathNest::editXY(LCursor & cur, int x, int y)
1145 {
1146         int idx_min = 0;
1147         int dist_min = 1000000;
1148         for (idx_type i = 0, n = nargs(); i != n; ++i) {
1149                 int const d = cell(i).dist(cur.bv(), x, y);
1150                 if (d < dist_min) {
1151                         dist_min = d;
1152                         idx_min = i;
1153                 }
1154         }
1155         MathArray & ar = cell(idx_min);
1156         cur.push(*this);
1157         cur.idx() = idx_min;
1158         cur.pos() = ar.x2pos(x - ar.xo(cur.bv()));
1159
1160         //lyxerr << "found cell : " << idx_min << " pos: " << cur.pos() << endl;
1161         if (dist_min == 0) {
1162                 // hit inside cell
1163                 for (pos_type i = 0, n = ar.size(); i < n; ++i)
1164                         if (ar[i]->covers(cur.bv(), x, y))
1165                                 return ar[i].nucleus()->editXY(cur, x, y);
1166         }
1167         return this;
1168 }
1169
1170
1171 void InsetMathNest::lfunMousePress(LCursor & cur, FuncRequest & cmd)
1172 {
1173         //lyxerr << "## lfunMousePress: buttons: " << cmd.button() << endl;
1174         BufferView & bv = cur.bv();
1175         if (cmd.button() == mouse_button::button1) {
1176                 //lyxerr << "## lfunMousePress: setting cursor to: " << cur << endl;
1177                 bv.mouseSetCursor(cur);
1178                 // FIXME: we have to enable full redraw here because of the
1179                 // visual box corners that define the inset.
1180                 //cur.noUpdate();
1181         } else if (cmd.button() == mouse_button::button2) {
1182                 MathArray ar;
1183                 if (cur.selection())
1184                         asArray(bv.cursor().selectionAsString(false), ar);
1185                 else
1186                         asArray(theSelection().get(), ar);
1187
1188                 cur.insert(ar);
1189                 bv.mouseSetCursor(cur);
1190         }
1191 }
1192
1193
1194 void InsetMathNest::lfunMouseMotion(LCursor & cur, FuncRequest & cmd)
1195 {
1196         // only select with button 1
1197         if (cmd.button() == mouse_button::button1) {
1198                 LCursor & bvcur = cur.bv().cursor();
1199                 if (bvcur.anchor_.hasPart(cur)) {
1200                         //lyxerr << "## lfunMouseMotion: cursor: " << cur << endl;
1201                         bvcur.setCursor(cur);
1202                         bvcur.selection() = true;
1203                         //lyxerr << "MOTION " << bvcur << endl;
1204                 } else
1205                         cur.undispatched();
1206         }
1207 }
1208
1209
1210 void InsetMathNest::lfunMouseRelease(LCursor & cur, FuncRequest & cmd)
1211 {
1212         //lyxerr << "## lfunMouseRelease: buttons: " << cmd.button() << endl;
1213
1214         if (cmd.button() == mouse_button::button1) {
1215                 if (!cur.selection())
1216                         cur.noUpdate();
1217                 return;
1218         }
1219
1220         if (cmd.button() == mouse_button::button3) {
1221                 // try to dispatch to enclosed insets first
1222                 cur.bv().showDialog("mathpanel");
1223                 return;
1224         }
1225
1226         cur.undispatched();
1227 }
1228
1229
1230 bool InsetMathNest::interpretChar(LCursor & cur, char_type c)
1231 {
1232         //lyxerr << "interpret 2: '" << c << "'" << endl;
1233         docstring save_selection;
1234         if (c == '^' || c == '_')
1235                 save_selection = grabAndEraseSelection(cur);
1236
1237         cur.clearTargetX();
1238
1239         // handle macroMode
1240         if (cur.inMacroMode()) {
1241                 docstring name = cur.macroName();
1242
1243                 /// are we currently typing '#1' or '#2' or...?
1244                 if (name == "\\#") {
1245                         cur.backspace();
1246                         int n = c - '0';
1247                         if (n >= 1 && n <= 9)
1248                                 cur.insert(new MathMacroArgument(n));
1249                         return true;
1250                 }
1251
1252                 if (isalpha(c)) {
1253                         cur.activeMacro()->setName(name + docstring(1, c));
1254                         return true;
1255                 }
1256
1257                 // handle 'special char' macros
1258                 if (name == "\\") {
1259                         // remove the '\\'
1260                         if (c == '\\') {
1261                                 cur.backspace();
1262                                 if (currentMode() == InsetMath::TEXT_MODE)
1263                                         cur.niceInsert(createInsetMath("textbackslash"));
1264                                 else
1265                                         cur.niceInsert(createInsetMath("backslash"));
1266                         } else if (c == '{') {
1267                                 cur.backspace();
1268                                 cur.niceInsert(MathAtom(new InsetMathBrace));
1269                         } else if (c == '%') {
1270                                 cur.backspace();
1271                                 cur.niceInsert(MathAtom(new InsetMathComment));
1272                         } else if (c == '#') {
1273                                 BOOST_ASSERT(cur.activeMacro());
1274                                 cur.activeMacro()->setName(name + docstring(1, c));
1275                         } else {
1276                                 cur.backspace();
1277                                 cur.niceInsert(createInsetMath(docstring(1, c)));
1278                         }
1279                         return true;
1280                 }
1281
1282                 // One character big delimiters. The others are handled in
1283                 // interpretString().
1284                 latexkeys const * l = in_word_set(name.substr(1));
1285                 if (name[0] == '\\' && l && l->inset == "big") {
1286                         docstring delim;
1287                         switch (c) {
1288                         case '{':
1289                                 delim = from_ascii("\\{");
1290                                 break;
1291                         case '}':
1292                                 delim = from_ascii("\\}");
1293                                 break;
1294                         default:
1295                                 delim = docstring(1, c);
1296                                 break;
1297                         }
1298                         if (InsetMathBig::isBigInsetDelim(delim)) {
1299                                 // name + delim ared a valid InsetMathBig.
1300                                 // We can't use cur.macroModeClose() because
1301                                 // it does not handle delim.
1302                                 InsetMathUnknown * p = cur.activeMacro();
1303                                 p->finalize();
1304                                 --cur.pos();
1305                                 cur.cell().erase(cur.pos());
1306                                 cur.plainInsert(MathAtom(
1307                                         new InsetMathBig(name.substr(1), delim)));
1308                                 return true;
1309                         }
1310                 }
1311
1312                 // leave macro mode and try again if necessary
1313                 cur.macroModeClose();
1314                 if (c == '{')
1315                         cur.niceInsert(MathAtom(new InsetMathBrace));
1316                 else if (c != ' ')
1317                         interpretChar(cur, c);
1318                 return true;
1319         }
1320
1321         // This is annoying as one has to press <space> far too often.
1322         // Disable it.
1323
1324 #if 0
1325                 // leave autocorrect mode if necessary
1326                 if (autocorrect() && c == ' ') {
1327                         autocorrect() = false;
1328                         return true;
1329                 }
1330 #endif
1331
1332         // just clear selection on pressing the space bar
1333         if (cur.selection() && c == ' ') {
1334                 cur.selection() = false;
1335                 return true;
1336         }
1337
1338         selClearOrDel(cur);
1339
1340         if (c == '\\') {
1341                 //lyxerr << "starting with macro" << endl;
1342                 cur.insert(MathAtom(new InsetMathUnknown(from_ascii("\\"), false)));
1343                 return true;
1344         }
1345
1346         if (c == '\n') {
1347                 if (currentMode() == InsetMath::TEXT_MODE)
1348                         cur.insert(c);
1349                 return true;
1350         }
1351
1352         if (c == ' ') {
1353                 if (currentMode() == InsetMath::TEXT_MODE) {
1354                         // insert spaces in text mode,
1355                         // but suppress direct insertion of two spaces in a row
1356                         // the still allows typing  '<space>a<space>' and deleting the 'a', but
1357                         // it is better than nothing...
1358                         if (!cur.pos() != 0 || cur.prevAtom()->getChar() != ' ') {
1359                                 cur.insert(c);
1360                                 // FIXME: we have to enable full redraw here because of the
1361                                 // visual box corners that define the inset. If we know for
1362                                 // sure that we stay within the same cell we can optimize for
1363                                 // that using:
1364                                 //cur.updateFlags(Update::SinglePar | Update::FitCursor);
1365                         }
1366                         return true;
1367                 }
1368                 if (cur.pos() != 0 && cur.prevAtom()->asSpaceInset()) {
1369                         cur.prevAtom().nucleus()->asSpaceInset()->incSpace();
1370                         // FIXME: we have to enable full redraw here because of the
1371                         // visual box corners that define the inset. If we know for
1372                         // sure that we stay within the same cell we can optimize for
1373                         // that using:
1374                         //cur.updateFlags(Update::SinglePar | Update::FitCursor);
1375                         return true;
1376                 }
1377
1378                 if (cur.popRight()) {
1379                         // FIXME: we have to enable full redraw here because of the
1380                         // visual box corners that define the inset. If we know for
1381                         // sure that we stay within the same cell we can optimize for
1382                         // that using:
1383                         //cur.updateFlags(Update::FitCursor);
1384                         return true;
1385                 }
1386
1387                 // if we are at the very end, leave the formula
1388                 return cur.pos() != cur.lastpos();
1389         }
1390
1391         // These shouldn't work in text mode:
1392         if (currentMode() != InsetMath::TEXT_MODE) {
1393                 if (c == '_') {
1394                         script(cur, false, save_selection);
1395                         return true;
1396                 }
1397                 if (c == '^') {
1398                         script(cur, true, save_selection);
1399                         return true;
1400                 }
1401                 if (c == '~') {
1402                         cur.niceInsert(createInsetMath("sim"));
1403                         return true;
1404                 }
1405         }
1406
1407         if (c == '{' || c == '}' || c == '&' || c == '$' || c == '#' ||
1408             c == '%' || c == '_' || c == '^') {
1409                 cur.niceInsert(createInsetMath(docstring(1, c)));
1410                 return true;
1411         }
1412
1413
1414         // try auto-correction
1415         //if (autocorrect() && hasPrevAtom() && math_autocorrect(prevAtom(), c))
1416         //      return true;
1417
1418         // no special circumstances, so insert the character without any fuss
1419         cur.insert(c);
1420         cur.autocorrect() = true;
1421         return true;
1422 }
1423
1424
1425 bool InsetMathNest::interpretString(LCursor & cur, docstring const & str)
1426 {
1427         // Create a InsetMathBig from cur.cell()[cur.pos() - 1] and t if
1428         // possible
1429         if (!cur.empty() && cur.pos() > 0 &&
1430             cur.cell()[cur.pos() - 1]->asUnknownInset()) {
1431                 if (InsetMathBig::isBigInsetDelim(str)) {
1432                         docstring prev = asString(cur.cell()[cur.pos() - 1]);
1433                         if (prev[0] == '\\') {
1434                                 prev = prev.substr(1);
1435                                 latexkeys const * l = in_word_set(prev);
1436                                 if (l && l->inset == "big") {
1437                                         cur.cell()[cur.pos() - 1] =
1438                                                 MathAtom(new InsetMathBig(prev, str));
1439                                         return true;
1440                                 }
1441                         }
1442                 }
1443         }
1444         return false;
1445 }
1446
1447
1448 bool InsetMathNest::script(LCursor & cur, bool up, 
1449                 docstring const & save_selection)
1450 {
1451         // Hack to get \^ and \_ working
1452         //lyxerr << "handling script: up: " << up << endl;
1453         if (cur.inMacroMode() && cur.macroName() == "\\") {
1454                 if (up)
1455                         cur.niceInsert(createInsetMath("mathcircumflex"));
1456                 else
1457                         interpretChar(cur, '_');
1458                 return true;
1459         }
1460
1461         cur.macroModeClose();
1462         if (asScriptInset() && cur.idx() == 0) {
1463                 // we are in a nucleus of a script inset, move to _our_ script
1464                 InsetMathScript * inset = asScriptInset();
1465                 //lyxerr << " going to cell " << inset->idxOfScript(up) << endl;
1466                 inset->ensure(up);
1467                 cur.idx() = inset->idxOfScript(up);
1468                 cur.pos() = 0;
1469         } else if (cur.pos() != 0 && cur.prevAtom()->asScriptInset()) {
1470                 --cur.pos();
1471                 InsetMathScript * inset = cur.nextAtom().nucleus()->asScriptInset();
1472                 cur.push(*inset);
1473                 inset->ensure(up);
1474                 cur.idx() = inset->idxOfScript(up);
1475                 cur.pos() = cur.lastpos();
1476         } else {
1477                 // convert the thing to our left to a scriptinset or create a new
1478                 // one if in the very first position of the array
1479                 if (cur.pos() == 0) {
1480                         //lyxerr << "new scriptinset" << endl;
1481                         cur.insert(new InsetMathScript(up));
1482                 } else {
1483                         //lyxerr << "converting prev atom " << endl;
1484                         cur.prevAtom() = MathAtom(new InsetMathScript(cur.prevAtom(), up));
1485                 }
1486                 --cur.pos();
1487                 InsetMathScript * inset = cur.nextAtom().nucleus()->asScriptInset();
1488                 // See comment in MathParser.C for special handling of {}-bases
1489
1490                 cur.push(*inset);
1491                 cur.idx() = 1;
1492                 cur.pos() = 0;
1493         }
1494         //lyxerr << "inserting selection 1:\n" << save_selection << endl;
1495         cur.niceInsert(save_selection);
1496         cur.resetAnchor();
1497         //lyxerr << "inserting selection 2:\n" << save_selection << endl;
1498         return true;
1499 }
1500
1501
1502 } // namespace lyx