]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathNest.C
49867f7fe3ba1612c39b4dfde4b3f981f5adc91d
[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         recordUndo(cur, Undo::ATOMIC);
405
406         if (cur.inset().asInsetMath()->name() == font)
407                 cur.handleFont(to_utf8(font));
408         else {
409                 cur.handleNest(createInsetMath(font));
410                 cur.insert(arg);
411         }
412 }
413
414
415 void InsetMathNest::handleFont2(LCursor & cur, docstring const & arg)
416 {
417         recordUndo(cur, Undo::ATOMIC);
418         LyXFont font;
419         bool b;
420         bv_funcs::string2font(to_utf8(arg), font, b);
421         if (font.color() != LColor::inherit) {
422                 MathAtom at = MathAtom(new InsetMathColor(true, font.color()));
423                 cur.handleNest(at, 0);
424         }
425 }
426
427
428 void InsetMathNest::doDispatch(LCursor & cur, FuncRequest & cmd)
429 {
430         //lyxerr << "InsetMathNest: request: " << cmd << std::endl;
431         //CursorSlice sl = cur.current();
432
433         switch (cmd.action) {
434
435         case LFUN_PASTE: {
436                 recordUndo(cur);
437                 cur.message(_("Paste"));
438                 replaceSelection(cur);
439                 size_t n = 0;
440                 istringstream is(to_utf8(cmd.argument()));
441                 is >> n;
442                 docstring const selection = cap::getSelection(cur.buffer(), n);
443                 cur.niceInsert(selection);
444                 cur.clearSelection(); // bug 393
445                 cur.bv().switchKeyMap();
446                 finishUndo();
447                 break;
448         }
449
450         case LFUN_CUT:
451                 recordUndo(cur);
452                 cutSelection(cur, true, true);
453                 cur.message(_("Cut"));
454                 // Prevent stale position >= size crash
455                 // Probably not necessary anymore, see eraseSelection (gb 2005-10-09)
456                 cur.normalize();
457                 break;
458
459         case LFUN_COPY:
460                 copySelection(cur);
461                 // FIXME UNICODE
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_SELECT:
496         case LFUN_CHAR_FORWARD:
497                 cur.selHandle(cmd.action == LFUN_CHAR_FORWARD_SELECT);
498                 cur.autocorrect() = false;
499                 cur.clearTargetX();
500                 cur.macroModeClose();
501                 if (cur.pos() != cur.lastpos() && cur.openable(cur.nextAtom())) {
502                         cur.pushLeft(*cur.nextAtom().nucleus());
503                         cur.inset().idxFirst(cur);
504                 } else if (cur.posRight() || idxRight(cur)
505                         || cur.popRight() || cur.selection())
506                         ;
507                 else {
508                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
509                         cur.undispatched();
510                 }
511                 break;
512
513         case LFUN_CHAR_BACKWARD_SELECT:
514         case LFUN_CHAR_BACKWARD:
515                 cur.selHandle(cmd.action == LFUN_CHAR_BACKWARD_SELECT);
516                 cur.autocorrect() = false;
517                 cur.clearTargetX();
518                 cur.macroModeClose();
519                 if (cur.pos() != 0 && cur.openable(cur.prevAtom())) {
520                         cur.posLeft();
521                         cur.push(*cur.nextAtom().nucleus());
522                         cur.inset().idxLast(cur);
523                 } else if (cur.posLeft() || idxLeft(cur)
524                         || cur.popLeft() || cur.selection())
525                         ;
526                 else {
527                         cmd = FuncRequest(LFUN_FINISHED_LEFT);
528                         cur.undispatched();
529                 }
530                 break;
531
532         case LFUN_UP_SELECT:
533         case LFUN_UP:
534                 // FIXME Tried to use clearTargetX and macroModeClose, crashed on cur.up()
535                 if (cur.inMacroMode()) {
536                         // Make Helge happy
537                         cur.macroModeClose();
538                         break;
539                 }
540                 cur.selHandle(cmd.action == LFUN_UP_SELECT);
541                 if (!cur.up()) {
542                         cmd = FuncRequest(LFUN_FINISHED_UP);
543                         cur.undispatched();
544                 }
545                 // fixes bug 1598. Please check!
546                 cur.normalize();
547                 break;
548
549         case LFUN_DOWN_SELECT:
550         case LFUN_DOWN:
551                 if (cur.inMacroMode()) {
552                         cur.macroModeClose();
553                         break;
554                 }
555                 cur.selHandle(cmd.action == LFUN_DOWN_SELECT);
556                 if (!cur.down()) {
557                         cmd = FuncRequest(LFUN_FINISHED_DOWN);
558                         cur.undispatched();
559                 }
560                 // fixes bug 1598. Please check!
561                 cur.normalize();
562                 break;
563
564         case LFUN_MOUSE_DOUBLE:
565         case LFUN_MOUSE_TRIPLE:
566         case LFUN_WORD_SELECT:
567                 cur.pos() = 0;
568                 cur.idx() = 0;
569                 cur.resetAnchor();
570                 cur.selection() = true;
571                 cur.pos() = cur.lastpos();
572                 cur.idx() = cur.lastidx();
573                 break;
574
575         case LFUN_PARAGRAPH_UP_SELECT:
576         case LFUN_PARAGRAPH_UP:
577         case LFUN_PARAGRAPH_DOWN_SELECT:
578         case LFUN_PARAGRAPH_DOWN:
579                 break;
580
581         case LFUN_LINE_BEGIN_SELECT:
582         case LFUN_LINE_BEGIN:
583         case LFUN_WORD_BACKWARD_SELECT:
584         case LFUN_WORD_BACKWARD:
585                 cur.selHandle(cmd.action == LFUN_WORD_BACKWARD_SELECT ||
586                                 cmd.action == LFUN_LINE_BEGIN_SELECT);
587                 cur.macroModeClose();
588                 if (cur.pos() != 0) {
589                         cur.pos() = 0;
590                 } else if (cur.col() != 0) {
591                         cur.idx() -= cur.col();
592                         cur.pos() = 0;
593                 } else if (cur.idx() != 0) {
594                         cur.idx() = 0;
595                         cur.pos() = 0;
596                 } else {
597                         cmd = FuncRequest(LFUN_FINISHED_LEFT);
598                         cur.undispatched();
599                 }
600                 break;
601
602         case LFUN_WORD_FORWARD_SELECT:
603         case LFUN_WORD_FORWARD:
604         case LFUN_LINE_END_SELECT:
605         case LFUN_LINE_END:
606                 cur.selHandle(cmd.action == LFUN_WORD_FORWARD_SELECT ||
607                                 cmd.action == LFUN_LINE_END_SELECT);
608                 cur.macroModeClose();
609                 cur.clearTargetX();
610                 if (cur.pos() != cur.lastpos()) {
611                         cur.pos() = cur.lastpos();
612                 } else if (ncols() && (cur.col() != cur.lastcol())) {
613                         cur.idx() = cur.idx() - cur.col() + cur.lastcol();
614                         cur.pos() = cur.lastpos();
615                 } else if (cur.idx() != cur.lastidx()) {
616                         cur.idx() = cur.lastidx();
617                         cur.pos() = cur.lastpos();
618                 } else {
619                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
620                         cur.undispatched();
621                 }
622                 break;
623
624         case LFUN_SCREEN_UP_SELECT:
625         case LFUN_SCREEN_UP:
626                 cmd = FuncRequest(LFUN_FINISHED_LEFT);
627                 cur.undispatched();
628                 break;
629
630         case LFUN_SCREEN_DOWN_SELECT:
631         case LFUN_SCREEN_DOWN:
632                 cmd = FuncRequest(LFUN_FINISHED_RIGHT);
633                 cur.undispatched();
634                 break;
635
636         case LFUN_CELL_FORWARD:
637                 cur.inset().idxNext(cur);
638                 break;
639
640         case LFUN_CELL_BACKWARD:
641                 cur.inset().idxPrev(cur);
642                 break;
643
644         case LFUN_WORD_DELETE_BACKWARD:
645         case LFUN_CHAR_DELETE_BACKWARD:
646                 if (cur.pos() == 0)
647                         // May affect external cell:
648                         recordUndoInset(cur, Undo::ATOMIC);
649                 else
650                         recordUndo(cur, Undo::ATOMIC);
651                 // if the inset can not be removed from within, delete it
652                 if (!cur.backspace()) {
653                         FuncRequest cmd = FuncRequest(LFUN_CHAR_DELETE_FORWARD);
654                         cur.bv().getLyXText()->dispatch(cur, cmd);
655                 }
656                 break;
657
658         case LFUN_WORD_DELETE_FORWARD:
659         case LFUN_CHAR_DELETE_FORWARD:
660                 if (cur.pos() == cur.lastpos())
661                         // May affect external cell:
662                         recordUndoInset(cur, Undo::ATOMIC);
663                 else
664                         recordUndo(cur, Undo::ATOMIC);
665                 // if the inset can not be removed from within, delete it
666                 if (!cur.erase()) {
667                         FuncRequest cmd = FuncRequest(LFUN_CHAR_DELETE_FORWARD);
668                         cur.bv().getLyXText()->dispatch(cur, cmd);
669                 }
670                 break;
671
672         case LFUN_ESCAPE:
673                 if (cur.selection())
674                         cur.clearSelection();
675                 else  {
676                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
677                         cur.undispatched();
678                 }
679                 break;
680
681         case LFUN_INSET_TOGGLE:
682                 recordUndo(cur);
683                 lock(!lock());
684                 cur.popRight();
685                 break;
686
687         case LFUN_SELF_INSERT:
688                 if (cmd.argument().size() != 1) {
689                         recordUndo(cur);
690                         docstring const arg = cmd.argument();
691                         if (!interpretString(cur, arg))
692                                 cur.insert(arg);
693                         break;
694                 }
695                 // Don't record undo steps if we are in macro mode and
696                 // cmd.argument is the next character of the macro name.
697                 // Otherwise we'll get an invalid cursor if we undo after
698                 // the macro was finished and the macro is a known command,
699                 // e.g. sqrt. LCursor::macroModeClose replaces in this case
700                 // the InsetMathUnknown with name "frac" by an empty
701                 // InsetMathFrac -> a pos value > 0 is invalid.
702                 // A side effect is that an undo before the macro is finished
703                 // undoes the complete macro, not only the last character.
704                 if (!cur.inMacroMode())
705                         recordUndo(cur);
706
707                 // spacial handling of space. If we insert an inset
708                 // via macro mode, we want to put the cursor inside it
709                 // if relevant. Think typing "\frac<space>".
710                 if (cmd.argument()[0] == ' '
711                     && cur.inMacroMode() && cur.macroName() != "\\"
712                     && cur.macroModeClose()) {
713                         MathAtom const atom = cur.prevAtom();
714                         if (atom->asNestInset() && atom->nargs() > 0) {
715                                 cur.posLeft();
716                                 cur.pushLeft(*cur.nextInset());
717                         }
718                 } else if (!interpretChar(cur, cmd.argument()[0])) {
719                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
720                         cur.undispatched();
721                 }
722                 break;
723
724         //case LFUN_SERVER_GET_XY:
725         //      sprintf(dispatch_buffer, "%d %d",);
726         //      break;
727
728         case LFUN_SERVER_SET_XY: {
729                 lyxerr << "LFUN_SERVER_SET_XY broken!" << endl;
730                 int x = 0;
731                 int y = 0;
732                 istringstream is(to_utf8(cmd.argument()));
733                 is >> x >> y;
734                 cur.setScreenPos(x, y);
735                 break;
736         }
737
738         // Special casing for superscript in case of LyX handling
739         // dead-keys:
740         case LFUN_ACCENT_CIRCUMFLEX:
741                 if (cmd.argument().empty()) {
742                         // do superscript if LyX handles
743                         // deadkeys
744                         recordUndo(cur, Undo::ATOMIC);
745                         script(cur, true, grabAndEraseSelection(cur));
746                 }
747                 break;
748
749         case LFUN_ACCENT_UMLAUT:
750         case LFUN_ACCENT_ACUTE:
751         case LFUN_ACCENT_GRAVE:
752         case LFUN_ACCENT_BREVE:
753         case LFUN_ACCENT_DOT:
754         case LFUN_ACCENT_MACRON:
755         case LFUN_ACCENT_CARON:
756         case LFUN_ACCENT_TILDE:
757         case LFUN_ACCENT_CEDILLA:
758         case LFUN_ACCENT_CIRCLE:
759         case LFUN_ACCENT_UNDERDOT:
760         case LFUN_ACCENT_TIE:
761         case LFUN_ACCENT_OGONEK:
762         case LFUN_ACCENT_HUNGARIAN_UMLAUT:
763                 break;
764
765         //  Math fonts
766         case LFUN_FONT_FREE_APPLY:
767         case LFUN_FONT_FREE_UPDATE:
768                 handleFont2(cur, cmd.argument());
769                 break;
770
771         case LFUN_FONT_BOLD:
772                 if (currentMode() == TEXT_MODE)
773                         handleFont(cur, cmd.argument(), "textbf");
774                 else
775                         handleFont(cur, cmd.argument(), "mathbf");
776                 break;
777         case LFUN_FONT_SANS:
778                 if (currentMode() == TEXT_MODE)
779                         handleFont(cur, cmd.argument(), "textsf");
780                 else
781                         handleFont(cur, cmd.argument(), "mathsf");
782                 break;
783         case LFUN_FONT_EMPH:
784                 if (currentMode() == TEXT_MODE)
785                         handleFont(cur, cmd.argument(), "emph");
786                 else
787                         handleFont(cur, cmd.argument(), "mathcal");
788                 break;
789         case LFUN_FONT_ROMAN:
790                 if (currentMode() == TEXT_MODE)
791                         handleFont(cur, cmd.argument(), "textrm");
792                 else
793                         handleFont(cur, cmd.argument(), "mathrm");
794                 break;
795         case LFUN_FONT_CODE:
796                 if (currentMode() == TEXT_MODE)
797                         handleFont(cur, cmd.argument(), "texttt");
798                 else
799                         handleFont(cur, cmd.argument(), "mathtt");
800                 break;
801         case LFUN_FONT_FRAK:
802                 handleFont(cur, cmd.argument(), "mathfrak");
803                 break;
804         case LFUN_FONT_ITAL:
805                 if (currentMode() == TEXT_MODE)
806                         handleFont(cur, cmd.argument(), "textit");
807                 else
808                         handleFont(cur, cmd.argument(), "mathit");
809                 break;
810         case LFUN_FONT_NOUN:
811                 if (currentMode() == TEXT_MODE)
812                         // FIXME: should be "noun"
813                         handleFont(cur, cmd.argument(), "textsc");
814                 else
815                         handleFont(cur, cmd.argument(), "mathbb");
816                 break;
817         //case LFUN_FONT_FREE_APPLY:
818                 handleFont(cur, cmd.argument(), "textrm");
819                 break;
820         case LFUN_FONT_DEFAULT:
821                 handleFont(cur, cmd.argument(), "textnormal");
822                 break;
823
824         case LFUN_MATH_MODE: {
825 #if 1
826                 // ignore math-mode on when already in math mode
827                 if (currentMode() == InsetBase::MATH_MODE && cmd.argument() == "on")
828                         break;
829                 cur.macroModeClose();
830                 docstring const save_selection = grabAndEraseSelection(cur);
831                 selClearOrDel(cur);
832                 //cur.plainInsert(MathAtom(new InsetMathMBox(cur.bv())));
833                 cur.plainInsert(MathAtom(new InsetMathBox(from_ascii("mbox"))));
834                 cur.posLeft();
835                 cur.pushLeft(*cur.nextInset());
836                 cur.niceInsert(save_selection);
837 #else
838                 if (currentMode() == InsetBase::TEXT_MODE) {
839                         cur.niceInsert(MathAtom(new InsetMathHull("simple")));
840                         cur.message(_("create new math text environment ($...$)"));
841                 } else {
842                         handleFont(cur, cmd.argument(), "textrm");
843                         cur.message(_("entered math text mode (textrm)"));
844                 }
845 #endif
846                 break;
847         }
848
849         case LFUN_MATH_SIZE:
850 #if 0
851                 recordUndo(cur);
852                 cur.setSize(arg);
853 #endif
854                 break;
855
856         case LFUN_MATH_MATRIX: {
857                 recordUndo(cur, Undo::ATOMIC);
858                 unsigned int m = 1;
859                 unsigned int n = 1;
860                 docstring v_align;
861                 docstring h_align;
862                 idocstringstream is(cmd.argument());
863                 is >> m >> n >> v_align >> h_align;
864                 if (m < 1)
865                         m = 1;
866                 if (n < 1)
867                         n = 1;
868                 v_align += 'c';
869                 cur.niceInsert(
870                         MathAtom(new InsetMathArray(from_ascii("array"), m, n, (char)v_align[0], h_align)));
871                 break;
872         }
873
874         case LFUN_MATH_DELIM: {
875                 docstring ls;
876                 docstring rs = support::split(cmd.argument(), ls, ' ');
877                 // Reasonable default values
878                 if (ls.empty())
879                         ls = '(';
880                 if (rs.empty())
881                         rs = ')';
882                 recordUndo(cur, Undo::ATOMIC);
883                 cur.handleNest(MathAtom(new InsetMathDelim(ls, rs)));
884                 break;
885         }
886
887         case LFUN_MATH_BIGDELIM: {
888                 docstring const lname  = from_utf8(cmd.getArg(0));
889                 docstring const ldelim = from_utf8(cmd.getArg(1));
890                 docstring const rname  = from_utf8(cmd.getArg(2));
891                 docstring const rdelim = from_utf8(cmd.getArg(3));
892                 latexkeys const * l = in_word_set(lname);
893                 bool const have_l = l && l->inset == "big" &&
894                                     InsetMathBig::isBigInsetDelim(ldelim);
895                 l = in_word_set(rname);
896                 bool const have_r = l && l->inset == "big" &&
897                                     InsetMathBig::isBigInsetDelim(rdelim);
898                 // We mimic LFUN_MATH_DELIM in case we have an empty left
899                 // or right delimiter.
900                 if (have_l || have_r) {
901                         recordUndo(cur, Undo::ATOMIC);
902                         docstring const selection = grabAndEraseSelection(cur);
903                         selClearOrDel(cur);
904                         if (have_l)
905                                 cur.insert(MathAtom(new InsetMathBig(lname,
906                                                                 ldelim)));
907                         cur.niceInsert(selection);
908                         if (have_r)
909                                 cur.insert(MathAtom(new InsetMathBig(rname,
910                                                                 rdelim)));
911                 }
912                 // Don't call cur.undispatched() if we did nothing, this would
913                 // lead to infinite recursion via LyXText::dispatch().
914                 break;
915         }
916
917         case LFUN_SPACE_INSERT:
918         case LFUN_MATH_SPACE:
919                 recordUndo(cur, Undo::ATOMIC);
920                 cur.insert(MathAtom(new InsetMathSpace(from_ascii(","))));
921                 break;
922
923         case LFUN_ERT_INSERT:
924                 // interpret this as if a backslash was typed
925                 recordUndo(cur, Undo::ATOMIC);
926                 interpretChar(cur, '\\');
927                 break;
928
929         case LFUN_MATH_SUBSCRIPT:
930                 // interpret this as if a _ was typed
931                 recordUndo(cur, Undo::ATOMIC);
932                 interpretChar(cur, '_');
933                 break;
934
935         case LFUN_MATH_SUPERSCRIPT:
936                 // interpret this as if a ^ was typed
937                 recordUndo(cur, Undo::ATOMIC);
938                 interpretChar(cur, '^');
939                 break;
940
941 // FIXME: We probably should swap parts of "math-insert" and "self-insert"
942 // handling such that "self-insert" works on "arbitrary stuff" too, and
943 // math-insert only handles special math things like "matrix".
944         case LFUN_MATH_INSERT: {
945                 recordUndo(cur, Undo::ATOMIC);
946                 if (cmd.argument() == "^" || cmd.argument() == "_") {
947                         interpretChar(cur, cmd.argument()[0]);
948                 } else
949                         cur.niceInsert(cmd.argument());
950                 break;
951                 }
952
953         case LFUN_DIALOG_SHOW_NEW_INSET: {
954                 docstring const & name = cmd.argument();
955                 string data;
956                 if (name == "ref") {
957                         RefInset tmp(name);
958                         data = tmp.createDialogStr(to_utf8(name));
959                 }
960                 cur.bv().showInsetDialog(to_utf8(name), data, 0);
961                 break;
962         }
963
964         case LFUN_INSET_INSERT: {
965                 MathArray ar;
966                 if (createInsetMath_fromDialogStr(cmd.argument(), ar)) {
967                         recordUndo(cur);
968                         cur.insert(ar);
969                 } else
970                         cur.undispatched();
971                 break;
972         }
973
974         default:
975                 InsetMathDim::doDispatch(cur, cmd);
976                 break;
977         }
978 }
979
980
981 bool InsetMathNest::getStatus(LCursor & cur, FuncRequest const & cmd,
982                 FuncStatus & flag) const
983 {
984         // the font related toggles
985         //string tc = "mathnormal";
986         bool ret = true;
987         string const arg = to_utf8(cmd.argument());
988         switch (cmd.action) {
989         case LFUN_TABULAR_FEATURE:
990                 flag.enabled(false);
991                 break;
992 #if 0
993         case LFUN_TABULAR_FEATURE:
994                 // FIXME: check temporarily disabled
995                 // valign code
996                 char align = mathcursor::valign();
997                 if (align == '\0') {
998                         enable = false;
999                         break;
1000                 }
1001                 if (cmd.argument().empty()) {
1002                         flag.clear();
1003                         break;
1004                 }
1005                 if (!contains("tcb", cmd.argument()[0])) {
1006                         enable = false;
1007                         break;
1008                 }
1009                 flag.setOnOff(cmd.argument()[0] == align);
1010                 break;
1011 #endif
1012         /// We have to handle them since 1.4 blocks all unhandled actions
1013         case LFUN_FONT_ITAL:
1014         case LFUN_FONT_BOLD:
1015         case LFUN_FONT_SANS:
1016         case LFUN_FONT_EMPH:
1017         case LFUN_FONT_CODE:
1018         case LFUN_FONT_NOUN:
1019         case LFUN_FONT_ROMAN:
1020         case LFUN_FONT_DEFAULT:
1021                 flag.enabled(true);
1022                 break;
1023         case LFUN_MATH_MUTATE:
1024                 //flag.setOnOff(mathcursor::formula()->hullType() == to_utf8(cmd.argument()));
1025                 flag.setOnOff(false);
1026                 break;
1027
1028         // we just need to be in math mode to enable that
1029         case LFUN_MATH_SIZE:
1030         case LFUN_MATH_SPACE:
1031         case LFUN_MATH_LIMITS:
1032         case LFUN_MATH_NONUMBER:
1033         case LFUN_MATH_NUMBER:
1034         case LFUN_MATH_EXTERN:
1035                 flag.enabled(true);
1036                 break;
1037
1038         case LFUN_FONT_FRAK:
1039                 flag.enabled(currentMode() != TEXT_MODE);
1040                 break;
1041
1042         case LFUN_MATH_INSERT: {
1043                 bool const textarg =
1044                         arg == "\\textbf"   || arg == "\\textsf" ||
1045                         arg == "\\textrm"   || arg == "\\textmd" ||
1046                         arg == "\\textit"   || arg == "\\textsc" ||
1047                         arg == "\\textsl"   || arg == "\\textup" ||
1048                         arg == "\\texttt"   || arg == "\\textbb" ||
1049                         arg == "\\textnormal";
1050                 flag.enabled(currentMode() != TEXT_MODE || textarg);
1051                 break;
1052         }
1053
1054         case LFUN_MATH_MATRIX:
1055                 flag.enabled(currentMode() == MATH_MODE);
1056                 break;
1057
1058         case LFUN_INSET_INSERT: {
1059                 // Don't test createMathInset_fromDialogStr(), since
1060                 // getStatus is not called with a valid reference and the
1061                 // dialog would not be applyable.
1062                 string const name = cmd.getArg(0);
1063                 flag.enabled(name == "ref");
1064                 break;
1065         }
1066
1067         case LFUN_MATH_DELIM:
1068         case LFUN_MATH_BIGDELIM:
1069                 // Don't do this with multi-cell selections
1070                 flag.enabled(cur.selBegin().idx() == cur.selEnd().idx());
1071                 break;
1072
1073         default:
1074                 ret = false;
1075                 break;
1076         }
1077         return ret;
1078 }
1079
1080
1081 void InsetMathNest::edit(LCursor & cur, bool left)
1082 {
1083         cur.push(*this);
1084         cur.idx() = left ? 0 : cur.lastidx();
1085         cur.pos() = left ? 0 : cur.lastpos();
1086         cur.resetAnchor();
1087         //lyxerr << "InsetMathNest::edit, cur:\n" << cur << endl;
1088 }
1089
1090
1091 InsetBase * InsetMathNest::editXY(LCursor & cur, int x, int y)
1092 {
1093         int idx_min = 0;
1094         int dist_min = 1000000;
1095         for (idx_type i = 0, n = nargs(); i != n; ++i) {
1096                 int const d = cell(i).dist(cur.bv(), x, y);
1097                 if (d < dist_min) {
1098                         dist_min = d;
1099                         idx_min = i;
1100                 }
1101         }
1102         MathArray & ar = cell(idx_min);
1103         cur.push(*this);
1104         cur.idx() = idx_min;
1105         cur.pos() = ar.x2pos(x - ar.xo(cur.bv()));
1106
1107         //lyxerr << "found cell : " << idx_min << " pos: " << cur.pos() << endl;
1108         if (dist_min == 0) {
1109                 // hit inside cell
1110                 for (pos_type i = 0, n = ar.size(); i < n; ++i)
1111                         if (ar[i]->covers(cur.bv(), x, y))
1112                                 return ar[i].nucleus()->editXY(cur, x, y);
1113         }
1114         return this;
1115 }
1116
1117
1118 void InsetMathNest::lfunMousePress(LCursor & cur, FuncRequest & cmd)
1119 {
1120         //lyxerr << "## lfunMousePress: buttons: " << cmd.button() << endl;
1121         BufferView & bv = cur.bv();
1122         if (cmd.button() == mouse_button::button1) {
1123                 //lyxerr << "## lfunMousePress: setting cursor to: " << cur << endl;
1124                 bv.mouseSetCursor(cur);
1125         } else if (cmd.button() == mouse_button::button2) {
1126                 MathArray ar;
1127                 if (cur.selection())
1128                         asArray(bv.cursor().selectionAsString(false), ar);
1129                 else
1130                         asArray(theSelection().get(), ar);
1131
1132                 cur.insert(ar);
1133                 bv.mouseSetCursor(cur);
1134         }
1135 }
1136
1137
1138 void InsetMathNest::lfunMouseMotion(LCursor & cur, FuncRequest & cmd)
1139 {
1140         // only select with button 1
1141         if (cmd.button() == mouse_button::button1) {
1142                 LCursor & bvcur = cur.bv().cursor();
1143                 if (bvcur.anchor_.hasPart(cur)) {
1144                         //lyxerr << "## lfunMouseMotion: cursor: " << cur << endl;
1145                         bvcur.setCursor(cur);
1146                         bvcur.selection() = true;
1147                         //lyxerr << "MOTION " << bvcur << endl;
1148                 }
1149                 else {
1150                         cur.undispatched();
1151                 }
1152         }
1153 }
1154
1155
1156 void InsetMathNest::lfunMouseRelease(LCursor & cur, FuncRequest & cmd)
1157 {
1158         //lyxerr << "## lfunMouseRelease: buttons: " << cmd.button() << endl;
1159
1160         if (cmd.button() == mouse_button::button1) {
1161                 //theSelection().put(cur.grabSelection());
1162                 return;
1163         }
1164
1165         if (cmd.button() == mouse_button::button3) {
1166                 // try to dispatch to enclosed insets first
1167                 cur.bv().showDialog("mathpanel");
1168                 return;
1169         }
1170
1171         cur.undispatched();
1172 }
1173
1174
1175 bool InsetMathNest::interpretChar(LCursor & cur, char_type c)
1176 {
1177         //lyxerr << "interpret 2: '" << c << "'" << endl;
1178         docstring save_selection;
1179         if (c == '^' || c == '_')
1180                 save_selection = grabAndEraseSelection(cur);
1181
1182         cur.clearTargetX();
1183
1184         // handle macroMode
1185         if (cur.inMacroMode()) {
1186                 docstring name = cur.macroName();
1187
1188                 /// are we currently typing '#1' or '#2' or...?
1189                 if (name == "\\#") {
1190                         cur.backspace();
1191                         int n = c - '0';
1192                         if (n >= 1 && n <= 9)
1193                                 cur.insert(new MathMacroArgument(n));
1194                         return true;
1195                 }
1196
1197                 if (isalpha(c)) {
1198                         cur.activeMacro()->setName(name + docstring(1, c));
1199                         return true;
1200                 }
1201
1202                 // handle 'special char' macros
1203                 if (name == "\\") {
1204                         // remove the '\\'
1205                         if (c == '\\') {
1206                                 cur.backspace();
1207                                 if (currentMode() == InsetMath::TEXT_MODE)
1208                                         cur.niceInsert(createInsetMath("textbackslash"));
1209                                 else
1210                                         cur.niceInsert(createInsetMath("backslash"));
1211                         } else if (c == '{') {
1212                                 cur.backspace();
1213                                 cur.niceInsert(MathAtom(new InsetMathBrace));
1214                         } else if (c == '%') {
1215                                 cur.backspace();
1216                                 cur.niceInsert(MathAtom(new InsetMathComment));
1217                         } else if (c == '#') {
1218                                 BOOST_ASSERT(cur.activeMacro());
1219                                 cur.activeMacro()->setName(name + docstring(1, c));
1220                         } else {
1221                                 cur.backspace();
1222                                 cur.niceInsert(createInsetMath(docstring(1, c)));
1223                         }
1224                         return true;
1225                 }
1226
1227                 // One character big delimiters. The others are handled in
1228                 // interpretString().
1229                 latexkeys const * l = in_word_set(name.substr(1));
1230                 if (name[0] == '\\' && l && l->inset == "big") {
1231                         docstring delim;
1232                         switch (c) {
1233                         case '{':
1234                                 delim = from_ascii("\\{");
1235                                 break;
1236                         case '}':
1237                                 delim = from_ascii("\\}");
1238                                 break;
1239                         default:
1240                                 delim = docstring(1, c);
1241                                 break;
1242                         }
1243                         if (InsetMathBig::isBigInsetDelim(delim)) {
1244                                 // name + delim ared a valid InsetMathBig.
1245                                 // We can't use cur.macroModeClose() because
1246                                 // it does not handle delim.
1247                                 InsetMathUnknown * p = cur.activeMacro();
1248                                 p->finalize();
1249                                 --cur.pos();
1250                                 cur.cell().erase(cur.pos());
1251                                 cur.plainInsert(MathAtom(
1252                                         new InsetMathBig(name.substr(1), delim)));
1253                                 return true;
1254                         }
1255                 }
1256
1257                 // leave macro mode and try again if necessary
1258                 cur.macroModeClose();
1259                 if (c == '{')
1260                         cur.niceInsert(MathAtom(new InsetMathBrace));
1261                 else if (c != ' ')
1262                         interpretChar(cur, c);
1263                 return true;
1264         }
1265
1266         // This is annoying as one has to press <space> far too often.
1267         // Disable it.
1268
1269 #if 0
1270                 // leave autocorrect mode if necessary
1271                 if (autocorrect() && c == ' ') {
1272                         autocorrect() = false;
1273                         return true;
1274                 }
1275 #endif
1276
1277         // just clear selection on pressing the space bar
1278         if (cur.selection() && c == ' ') {
1279                 cur.selection() = false;
1280                 return true;
1281         }
1282
1283         selClearOrDel(cur);
1284
1285         if (c == '\\') {
1286                 //lyxerr << "starting with macro" << endl;
1287                 cur.insert(MathAtom(new InsetMathUnknown(from_ascii("\\"), false)));
1288                 return true;
1289         }
1290
1291         if (c == '\n') {
1292                 if (currentMode() == InsetMath::TEXT_MODE)
1293                         cur.insert(c);
1294                 return true;
1295         }
1296
1297         if (c == ' ') {
1298                 if (currentMode() == InsetMath::TEXT_MODE) {
1299                         // insert spaces in text mode,
1300                         // but suppress direct insertion of two spaces in a row
1301                         // the still allows typing  '<space>a<space>' and deleting the 'a', but
1302                         // it is better than nothing...
1303                         if (!cur.pos() != 0 || cur.prevAtom()->getChar() != ' ')
1304                                 cur.insert(c);
1305                         return true;
1306                 }
1307                 if (cur.pos() != 0 && cur.prevAtom()->asSpaceInset()) {
1308                         cur.prevAtom().nucleus()->asSpaceInset()->incSpace();
1309                         return true;
1310                 }
1311                 if (cur.popRight())
1312                         return true;
1313                 // if are at the very end, leave the formula
1314                 return cur.pos() != cur.lastpos();
1315         }
1316
1317         // These shouldn't work in text mode:
1318         if (currentMode() != InsetMath::TEXT_MODE) {
1319                 if (c == '_') {
1320                         script(cur, false, save_selection);
1321                         return true;
1322                 }
1323                 if (c == '^') {
1324                         script(cur, true, save_selection);
1325                         return true;
1326                 }
1327                 if (c == '~') {
1328                         cur.niceInsert(createInsetMath("sim"));
1329                         return true;
1330                 }
1331         }
1332
1333         if (c == '{' || c == '}' || c == '&' || c == '$' || c == '#' ||
1334             c == '%' || c == '_' || c == '^') {
1335                 cur.niceInsert(createInsetMath(docstring(1, c)));
1336                 return true;
1337         }
1338
1339
1340         // try auto-correction
1341         //if (autocorrect() && hasPrevAtom() && math_autocorrect(prevAtom(), c))
1342         //      return true;
1343
1344         // no special circumstances, so insert the character without any fuss
1345         cur.insert(c);
1346         cur.autocorrect() = true;
1347         return true;
1348 }
1349
1350
1351 bool InsetMathNest::interpretString(LCursor & cur, docstring const & str)
1352 {
1353         // Create a InsetMathBig from cur.cell()[cur.pos() - 1] and t if
1354         // possible
1355         if (!cur.empty() && cur.pos() > 0 &&
1356             cur.cell()[cur.pos() - 1]->asUnknownInset()) {
1357                 if (InsetMathBig::isBigInsetDelim(str)) {
1358                         docstring prev = asString(cur.cell()[cur.pos() - 1]);
1359                         if (prev[0] == '\\') {
1360                                 prev = prev.substr(1);
1361                                 latexkeys const * l = in_word_set(prev);
1362                                 if (l && l->inset == "big") {
1363                                         cur.cell()[cur.pos() - 1] =
1364                                                 MathAtom(new InsetMathBig(prev, str));
1365                                         return true;
1366                                 }
1367                         }
1368                 }
1369         }
1370         return false;
1371 }
1372
1373
1374 bool InsetMathNest::script(LCursor & cur, bool up, 
1375                 docstring const & save_selection)
1376 {
1377         // Hack to get \^ and \_ working
1378         //lyxerr << "handling script: up: " << up << endl;
1379         if (cur.inMacroMode() && cur.macroName() == "\\") {
1380                 if (up)
1381                         cur.niceInsert(createInsetMath("mathcircumflex"));
1382                 else
1383                         interpretChar(cur, '_');
1384                 return true;
1385         }
1386
1387         cur.macroModeClose();
1388         if (asScriptInset() && cur.idx() == 0) {
1389                 // we are in a nucleus of a script inset, move to _our_ script
1390                 InsetMathScript * inset = asScriptInset();
1391                 //lyxerr << " going to cell " << inset->idxOfScript(up) << endl;
1392                 inset->ensure(up);
1393                 cur.idx() = inset->idxOfScript(up);
1394                 cur.pos() = 0;
1395         } else if (cur.pos() != 0 && cur.prevAtom()->asScriptInset()) {
1396                 --cur.pos();
1397                 InsetMathScript * inset = cur.nextAtom().nucleus()->asScriptInset();
1398                 cur.push(*inset);
1399                 inset->ensure(up);
1400                 cur.idx() = inset->idxOfScript(up);
1401                 cur.pos() = cur.lastpos();
1402         } else {
1403                 // convert the thing to our left to a scriptinset or create a new
1404                 // one if in the very first position of the array
1405                 if (cur.pos() == 0) {
1406                         //lyxerr << "new scriptinset" << endl;
1407                         cur.insert(new InsetMathScript(up));
1408                 } else {
1409                         //lyxerr << "converting prev atom " << endl;
1410                         cur.prevAtom() = MathAtom(new InsetMathScript(cur.prevAtom(), up));
1411                 }
1412                 --cur.pos();
1413                 InsetMathScript * inset = cur.nextAtom().nucleus()->asScriptInset();
1414                 // See comment in MathParser.C for special handling of {}-bases
1415
1416                 cur.push(*inset);
1417                 cur.idx() = 1;
1418                 cur.pos() = 0;
1419         }
1420         //lyxerr << "inserting selection 1:\n" << save_selection << endl;
1421         cur.niceInsert(save_selection);
1422         cur.resetAnchor();
1423         //lyxerr << "inserting selection 2:\n" << save_selection << endl;
1424         return true;
1425 }
1426
1427
1428 } // namespace lyx