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